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