Skip to main content

Posts

Showing posts from September, 2010

Freewares / Free Softwares 16 Sep 2010

LockMagic With LockMagic, the traditional method of managing a different set of encryption identity keys is a passé. LockMagic protects data by encrypting data with the identities of the sender and recipients - identities are the email addresses of the sender and/recepient. LockMagic features include - Encrypts data without any extra passwords to remember; Encrypts data located on flash and network drives; Enables mobility of data no matter what device it is on; Run the encryption and decryption software with no Administrator privileges; no customer website or portal management content sent on email; supports email addresses of Live ID, Hotmail, and Gmail; and seamlessly integrates with the Windsows OS. LockMagic v6.0 can be downloaded at https://www.mylivekey.com/reader.aspx A User Guide can be browsed at http://www.mylivekey.net/resources/LockMagic_User_Guide.pdf The developers aver that the email ids are soley used to verify them, nothing more. FilerFrog FilerFrog ...

Freeware / Free Software 09 Sep 2010

Enso Words Enso Words offers several tools rolled into one —spellcheck, a dictionary, a thesaurus, word and character counter. The spellcheck and the dictionary can be used in any application. With Enso's define and thesaurus commands you can look up a word's definition or synonym, anytime, anywhere, including a web page, or in your favorite music player. Yes, Enso Words gives you spell-check power for all of your favorite programs, from Microsoft Word and Mozilla Firefox to Macromedia Fireworks. As long as you can select it, you can spell check it! Misspelled words are highlighted in yellow. It's easy to switch between definitions and the thesaurus. Just click which one you want—you'll never need to re-type anything. The character count feature counts the number of characters in the selection. The 12.3 MB can be downloaded at http://humanized.com/installers/EnsoWords.exe To know more take the Enso Words Tour at http://humanized.com/enso/words/tour.php#2 ...

Outlook Subject Reminder!!

Sent a mail without subject in outlook and feeling bad later??????   Just follow below steps to overcome this.   1.        Open Outlook. 2.        Navigate Tools -> Macro -> Visual Basic Editor (Alt+11) 3.        In the left pane, expand Project1 -> Microsoft Outlook Objects 4.        Double click on “ThisOutlookSession” 5.        In the right pane copy below code and save it.   Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Dim strSubject As String strSubject = Item.Subject If Len(Trim(strSubject)) = 0 Then Prompt$ = "Subject is Empty. Are you sure you want to send the Mail?" If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check for Subject") = vbNo Then Cancel = True End If End If End Sub   ...