Sep 19, 2009

Open Email in Firefox Different Tab with Different Accounts

Thanks to mozdev!

I found this FF plug in very useful as I have two important Gmail account needed to check frequently at the same time.

E.g:  abc@gmail.com for my personal email and mycompany@gmail.com for my company email
in a same FF browser but in different tab.



 CookieSwap  ( image from cookieswap.mozdev.org )
http://cookieswap.mozdev.org/


Bookmark and Share

Sep 15, 2009

FlashEff 2.0 Great Flash Effects Component

http://www.jumpeyecomponents.com/

FlashEff 2.0 really have great animation and effects.
You may try out the trial version.

Bookmark and Share

Change Current Directory To Execute External EXE File

Sometimes you need to trigger an exe file not within your current application directory.
You may change your current directory ( one of the easiest method ).
Yet you have to change back your directory after you done the execution process.

//Set the current directory.
Directory.SetCurrentDirectory(my-dir-variable);

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "WINWORD.EXE";
startInfo.Arguments = my-file-name-variable;
 
Process.Start(startInfo);

Bookmark and Share

Sep 14, 2009

How to create a "Read More" or Junp Break at Blogger


http://buzz.blogger.com/2009/09/you-might-as-well-jump.html


1. Tick on the "Updated Editor" at your blogger setting tab
2. You will saw your editor changed to a new design
3. The last icon is the "Read More" or " Jump Break" icon

Sep 12, 2009

Maxis MMS Setting For WM6.5 / WM6.1 / WM6.0 on IPAQ6828


When there is no port number mentioned for the WAP Gateway,
use port 9201 for MMS 1.x versions and
port 8080 for MMS 2.x versions

Provider Name: Maxis

Provider APN: net

Provider APN Account: maxis

Provider APN Password:wap

Provider WAP Gateway: 202.75.133.49

Provider MMSC:http://172.16.74.100:10021/mmsc

port8080

MMS Setting Name: unet (optional)

Allow your WM to connect to GPRS/3G when needed to retrieve or send MMS.


Bookmark and Share

Sep 1, 2009

Free Open Office Document Viewer


(image from http://visioo-writer.tuxfamily.org/)

How to open .odt file ? It is Open Office Document =)

Need Open office viewer for free ? visit http://visioo-writer.tuxfamily.org/

Visioo-Writer OpenDocument and OpenOffice.org viewer
Copyright Clément and Guillaume Bâty Fowlalgorn-Software


Download OpenOffice for free at http://download.openoffice.org/index.html


Thanks for a good tool!

Bookmark and Share