December 2005
M T W T F S S
    Jan »
 1234
567891011
12131415161718
19202122232425
262728293031  

Archives

Archive for December, 2005

Find First Lower Case Letter

( General )

Following a question in JMT I wrote this UDF, it finds the first lower case letter in a cell

Public Function FindLower(cell As Object)
'''Finds the first lower case letter in a cell
If cell.Cells.Count  1 Then
FindLower = "Error - enter only one cell"
Exit Function
End If
For i = 1 To Len(cell.Text)
If Asc(Mid(cell.Text, i, 1))> 90 Then '90 = [...]

Beyond Menus and Toolbars in Microsoft Office

( General )

This is interesting! mostly I don’t agree with it.
Office 12 is an upgrade I wouldn't mind paying for, that is, assuming that work didn't let us get free copies. Those are big words for me, considering my "I Hate Microsoft" series of blog entries. I can imagine making documents faster with Office 12, or at [...]

Not hum Drum!

( Addins )

This is quite cool some kind of drum machine build in excel! Although it does use a .dll, still cool all, the same!