April 2006
M T W T F S S
« Mar   May »
 12
3456789
10111213141516
17181920212223
24252627282930

Archives

Archive for April, 2006

Excel and Windows Dialogs

( General )

Excel allows us to get hold of many builtin dialogs via it's object model. For example:

Sub OpenDialog()
Application.Dialogs(xlDialogOpen).Show
End Sub

Shows the open file dialog. More infomation can be found here:
http://support.microsoft.com/?kbid=213371#E6ACAAA
A lot of the time, what Excel is doing is using API layers to get hold of these diologs (i.e. the common dialogs), it then allows [...]