About Me

On December 25, 2008, in Latest, by Mike Hudson
Name: Mike Hudson
Gender: Male
Birthday: 30 July 1982
Relationship Status: In a relationship with Katrina Dale
Interested In: Women
Political Views: Apathetic

Education and Work

 
College: Selby College ’00
 
Secondary School: Vermuyden School ’98
 
Employer: Arco Ltd
Position: Systems Support Specialist
Length of Time: July 2008 – Present
Location: Kingston upon Hull, United Kingdom
 
Employer: IntraSource
Position: Server Support Analyst
Length of Time: November 2007 – July 2008
Location: Kingston upon Hull, United Kingdom
 
Employer: Select Business Products
Position: IT Field Engineer
Length of Time: September 2000 – November 2007
Location: Kingston upon Hull, United Kingdom
Employer: Lean Business Systsms
Position: Trainee Fox Pro Progammer
Length of Time: August 2000 – September 2000
Location: Leeds, United Kingdom

Tagged with:  

FIX: Blank search window & System Restore in Win XP

On December 24, 2008, in PCs, by Mike Hudson

Recently I was faced with a windows XP service pack 2 PC running internet explorer 7, with microsoft office 2000 on. All service packs were up to date.

Microsoft Outlook was unable to display HTML e-mails, and both system restore and windows search open blank, apart from the toolbar on the left hand side which includes the ‘dog’ desktop helper.

I had tried removing internet explorer version 7, all the way back to internet exlporer 5. This made no difference. I then tried reinstalling XP Service Pack 3, but to no avail.

We had 2 seperate devices with the same issue on the network, one a laptop the other was a desktop.

After many hours of head scratching and googling.. I managed to find a solution!!

You can download IEFix from here

Tagged with:  

Monitor a folder for changes in outlook

On December 24, 2008, in Programming, by Mike Hudson

With this example, it’s possible to use the ‘WithEvents’ methods on a folder outside of your own mailbox.

This even works on Public Folders!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Dim WithEvents olkFolder As Outlook.MAPIFolder Sub InitMonitoring()
Set olkFolder = OpenOutlookFolder("Path to the folder to monitor")
End Sub
 
Function IsNothing(obj)
If TypeName(obj) = "Nothing" Then
IsNothing = True
Else
IsNothing = False
End If
End Function
 
Function OpenOutlookFolder(strFolderPath As String) As Outlook.MAPIFolder
Dim arrFolders As Variant, _
varFolder As Variant, _
olkFolder As Outlook.MAPIFolder
On Error GoTo ehOpenOutlookFolder
If strFolderPath = "" Then
Set OpenOutlookFolder = Nothing
Else
If Left(strFolderPath, 1) = "" Then
strFolderPath = Right(strFolderPath, Len(strFolderPath) - 1)
End If
arrFolders = Split(strFolderPath, "")
For Each varFolder In arrFolders
If IsNothing(olkFolder) Then
Set olkFolder = Session.Folders(varFolder)
Else
Set olkFolder = olkFolder.Folders(varFolder)
End If
Next
Set OpenOutlookFolder = olkFolder
End If
On Error GoTo 0
Exit Function
ehOpenOutlookFolder:
Set OpenOutlookFolder = Nothing
On Error GoTo 0
End Function
Tagged with:  

Install Fonts from a VBScript

On December 24, 2008, in Programming, by Mike Hudson

Simply copying fonts into the fonts folder using a VB script doesn’t actually install them.

To install the fonts you have to use the following code:

1
2
3
4
Const FONTS = &H14&
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace(FONTS)
objFolder.CopyHere "C:ScriptsMyfont.ttf"
Tagged with:  

Add Custom Menus and Menu Items to Outlook

On December 24, 2008, in Programming, by Mike Hudson

Outlook 2007 brought with it the all new ‘Ribbon Bar’ which has caused headaches to programmers the world over.

Now, using this code you can create a menu in Outlook. The menu, which contains one item, appears at the top of the application. When you click the menu item, the code displays a message that shows the menu item caption.

Tagged with:  
Page 84 of 85« First...102030...8182838485

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!