simple trick and simple solution check if print option still active install print to pdf software klick print select all pages wait until creating finished.
Archive for December, 2009
25 Dec
Add Flash Movie on Facebook Profile Tab FBML
First you will need to create a preview image for the flash movie with a water mark that says click here, name it the same as your flash movie and obviously it will end up with the jpg or png or whatever image file extension you prefer.
Second, when you enter the html editor you should find two tabs the profile tab and the profile box tab, ok you will need to enter two not to different codes in each one
profile tab
<fb:swf swfbgcolor="000000" imgstyle="border-width:0px; border-color:white;" swfsrc="http://grafikdesign.wordpress.com/flash/xxxx.swf"/><imgsrc="http://grafikdesign.wordpress.com/flash/xxxx.jpg" width="766" height="800" />
25 Dec
How To Create a “Invite Your Friends” Box For Your Facebook Fan Page
<fb:fbml> <div style="padding: 10px; clear: both;"> <fb:request-form method="post" type="FACEBOOK FAN PAGE NAME" invite="true"> content="Text to invite your friends. <fb:req-choice url="FACEBOOK FAN PAGE URL" label="GO"> "&gt; <fb:multi-friend-selector actiontext="Invite Box Title" rows="3" showborder="true" condensed="false" style="width: 300px;"> </fb:multi-friend-selector> </fb:req-choice></fb:request-form></div> </fb:fbml>
24 Dec
How to open zip files with PHP
<?php
$zip = zip_open("zip.zip");
if(is_resource($zip)) {
while ($zip_entry = zip_read($zip)) {
$fp = fopen("zip/".zip_entry_name($zip_entry), "w");
if (zip_entry_open($zip, $zip_entry, "r")) {
$buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
fwrite($fp,"$buf");
zip_entry_close($zip_entry);
fclose($fp);
}
}
zip_close($zip);
}
?>
18 Dec
Super Awesome Buttons with CSS3

We love CSS at ZURB. We love it so much that we’re
using the new, yet-to-be released version (CSS3) in some of our
projects. In the works for nearly 10 years now, CSS3 is finally
starting to see the light at the end of the tunnel as new browsers like
Firefox and Safari continue to push its implementation.
6 Dec
HTC QTEK S200 XDA NEO HARD RESET
Method 1:
1. Press Camm & Comm button simultaniously. Keep them pressed.
2. Punch the little hole at the bottom with the stylus for a second or two.
3. Release the stylus (keep the buttons pressed!)
4. A white text-message appears on a black screen, telling you to press the send button
5. press the green button(the one you press to make a call).
6. Now, release the Camm & Comm buttons
7. The message on the screen tells you some more about formatting.
8. Release every button, you are done!
The OS has been reinstalled on your phone (it’s like formatting your hard drive and install a new Windows).
Method 2:
1. Open “Today => Settings => Clear Storage”
2. Enter “1234″ as instructed
3. Hit “YES” in the bottom-bar
6 Dec
How to upgrade from Windows Mobile WM5 TO WM6 PDA XDA MDA
To upgrade your prophet to WM6 I recommend that you first of all downgrade to the NVID version of WM5 AKU2.2 and get the latest Active Sync:
1. Download the NVID(no vendor) AKU2.2 rom for WM5 here :http://rapidshare.com/files/17208693…24721_NVID.exe YOU CAN USE Step1 of PdaMobiz or PDAViet Temp INSTEAD OF NVID(no vendor) AKU2.2 ROM…
2. After it has been downloaded get the latest Active Sync from Microsoft.com
3. Install active sync, you might need to reboot
4. When your computer has rebooted, run the file from step No 1 . Follow the steps, remember that it can take some time and seem to stuck at 80% and higher, but just wait.
5. When you have done this, your pda will reboot. After it comes with the welcome to windows mobile screen,”Tap Here To Begin”,JUST LEAVE IT. In fact don’t touch your device before the next steps are finished.
6. Now download one of the WM6 versions( http://forum.xda-developers.com/show…85&postcount=1 )
7. Now find a file named Upgrade.bat,and run it.(you don’t have to run Step1 of PdaMobiz or PDAViet Temp,as you have already downgraded to AKU2.2)
8. Wait until the upgrade finishes(usually takes 12-15minutes)..WAIT WAIT WAIT
9. A message will be displayed in the dos box,and it will say that the upgrade is finished etc….etc…,now you HAVE to HARD RESET,to finish the upgrade and enjoy you new WM6!
Continue reading »
6 Dec
PDA XDA MDA QTEK DEAD WHITE SCREEN / STUCK AT BOOT SCREEN = RESET SOLUTIONS
After installing Registry Wizard and tweaking stuff on my MDA Vario, my device rebooted and just stayed on the white screen displaying the operating system configuration screen. I couldn’t do anything else with it – I thought it was dead! Having searched all over, I’ve written a piece about resetting your device here. The one that worked for me for this particular problem was method 3 (but I think method 2 works as well but I didnt have it at the time) Continue reading »
5 Dec
How to disable or enable media video picture fax thumbnail preview in Win XP
How to disable video preview
windows + R
regsvr32 /u shmedia.dll
How to disable picture fax preview
regsvr32 /u shimgvw.dll
to enable Video
regsvr32 shmedia.dll
to enable Photo
regsvr32 shimgvw.dll

