Require Subject for Outlook eMails

Posted by Faille in Technical (March 24, 2009 at 9:30 am)

This function will prompt for confirmation if you try to send an email with no Subject.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) 
Dim strSubject As String
strSubject = Item.Subject
If Len(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
 

Add it to the “ThisOutlookSession” part of the VB Code. See the source below for full details

Source: http://sarathc.wordpress.com/2006/06/29/forgot-to-mention-subject-in-outlook/

No Comments » | 

Easy Garlic Bread

Posted by Faille in Uncategorized (March 9, 2009 at 4:18 pm)

I would hardly call this a recipe, but here is a simple “poor man’s garlic bread”.  I find myself making this when I don’t want to buy the pre-made stuff or just want a slice or two.  I’m sure this would work on an entire baguette if you put it in the broiler.

Ingredients

  • Slice of Bread
  • Butter
  • Garlic Salt

Instructions

  • Butter the slice of bread.  I butter a little thicker than I would normally
  • Sprinkle Garlic Salt on top of the butter
  • Put the bread in the toaster oven for 3 or so minutes, until you reach desired toastiness
  • Enjoy!
No Comments » | 

Word Doc “is reserved by”

Posted by Faille in Technical (November 13, 2008 at 3:59 pm)

The project that I am working on right now is using Microsoft SharePoint.  It has some convenient features, but I absolutely hate how it does change control for documents.  Maybe I just don’t know how to use it.  Anyway, a common problem we are having is documents are staying “Reserved By” people who have left the project, and our only option is to open them as Read Only.  If those documents are then saved using SAVE AS… so we can create a new version, the save as is password protected too.  Highly annoying.

Here is the solution (I apologize for losing the source of this tip - I will add it and pictures when I can)

  • Go to File > Save As…
  • On the top right of the window, there will be a Tools option.  Click this, and choose Security Options…
  • Delete the password and uncheck the Read-only recommended checkbox
  • Save the document

You do still have to Save As… the document, but you can always rename the document once the password is removed

No Comments » | 

How to find the name of a DFF

Posted by Faille in Oracle (September 11, 2008 at 10:55 am)

If you have the name of the table you want the DFF for, you can use this query:

select app.APPLICATION_NAME, dff.TITLE, dff.APPLICATION_TABLE_NAME
from apps.FND_DESCRIPTIVE_FLEXS_VL dff,
 apps.FND_APPLICATION_TL app
where dff.APPLICATION_ID = app.APPLICATION_ID
 and dff.APPLICATION_TABLE_NAME = 'HZ_PARTIES';
No Comments » | 

Change the words at top of Internet Explorer browser window

Posted by Faille in Google, Technical (September 5, 2008 at 11:33 am)

When I was working in Hawaii, I had a lapse in judgment and installed the internet company’s CD when I was setting up my internet.  This resulted in me having “by Hawaiian Telcom” at the top of every browser window.

[Img to come]

Uninstalling the software didn’t remove it, so I decided to look for a better answer.

I did a google search for “how do i remove “by Hawaiian telcom” from my browser”, and found this site: http://forums.techguy.org/malware-removal-hijackthis-logs/581290-solved-trojanspm-lx.html

It was actually referring to how to remove a trojan, but the user was a Hawaiian Telcom customer, and the log they posted had the dreaded “By Hawaiian Telcom” in their registry entries.

“R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Window Title = By Hawaiian Telcom”

A quick trip to regedit, and I have now eliminated this phrase from my machine!  I actually went down HKLM, as well as HKCU.  For more details on how to do this change, click after the jump!

[img to come]

Yay for Google!

Read More »

No Comments » | 

Change Default Font on Outlook Notes

Posted by Faille in Google, Technical (August 20, 2008 at 10:35 pm)

This tip will allow you to change the default font for notes you create in Outlook from Comic Sans (a sin) to something more palatable (generic Arial or ?).

Tools > Options > Preferences Tab > Note Options… Button > Font… Button

source: http://malektips.com/outlook_2003_notes_0002.html

No Comments » | 

Oops! … I did it again

Posted by Faille in Comic-Con, Comic-Con 2008 (July 22, 2008 at 11:49 am)

… Comic Con information and pics to come!

No Comments » |