Mar
24
Posted on 24-03-2009
Filed Under (Technical) by Faille on 24-03-2009

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/

(0) Comments    Read More   
Mar
09
Posted on 09-03-2009
Filed Under (Uncategorized) by Faille on 09-03-2009

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!
(0) Comments    Read More   
Nov
13
Posted on 13-11-2008
Filed Under (Technical) by Faille on 13-11-2008

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

(0) Comments    Read More   
Sep
11
Posted on 11-09-2008
Filed Under (Oracle) by Faille on 11-09-2008

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';
(0) Comments    Read More   
Sep
05
Posted on 05-09-2008
Filed Under (Google, Technical) by Faille on 05-09-2008

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 the rest of this entry »

(0) Comments    Read More   
Aug
20
Posted on 20-08-2008
Filed Under (Google, Technical) by Faille on 20-08-2008

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

(0) Comments    Read More   
Jul
22
Posted on 22-07-2008
Filed Under (Comic-Con, Comic-Con 2008) by Faille on 22-07-2008

… Comic Con information and pics to come!

(0) Comments    Read More