Some time when you format some row as table header it didn’t work correctly, the solution is very easy,
1. select all your table , and right click, it will show table properties, click it !
2. then it will show table properties, click “table” tab on top of it.
3. change “text wrapping” in to “none”
4. that’s it, you can select some row as your table header
Hello there Envio, you posted a link for the EX-S gundam assembly instructions long time ago and now it’s expired. could you please re-upload that same file again or send it to me by mail? thx
In exporting MS word documents using codeigniter I am applying the following code and working fine, But I need to format the MS word document for page setup, such as height width and landscape or portrait etc.
Any idea or tutorial to do this please?
$data = “My Data”;
$html= $this->load->view(‘myviewfile’, $data, true);
header(“Content-Type: application/vnd.ms-word”);
header(“Expires: 0″);
header(“Cache-Control: must-revalidate, post-check=0, pre-check=0″);
header(“Content-disposition: attachment; filename=\”mydocumentname.doc\”");
echo $html;
exit;
Thanks in advance
I am using this code to provide download function
header(“Pragma: public”);
header(“Expires: 0″);
header(“Cache-Control: must-revalidate, post-check=0, pre-check=0″);
header(“Cache-Control: private”,false);
header(“Content-type: application/octet-stream”);
header(“Content-Disposition: attachment; filename=\”".$your_desired_file_name_with_entension.”\”;” );
header(“Content-Transfer-Encoding: binary”);
header(“Content-Length: “.filesize(‘/absolute/path/of/file/on/your/web/’));