Archive for the ‘Enumerations’ Category.

FTP Via VBA

One of my new year's resolutions was to write a procedure to ftp picture files to this blog to simplify the procedure. It took two days, but I finally got it done. I don't know if it's well done, but it works. I got a little help along the way, specifically:
Forestasia has [...]

Custom Enumerations

Consider this statement:
MsgBox "Hello!", vbCritical + vbYesNo
vbCritical and vbYesNo are members of a built-in enumeration called vbMsgBoxStyle. You can create your own enumerations containing constants of your choice for use in your applications. To do so, you use the Enum statement at the module level.
Enum dkMsgText    dkHello = 1    dkWorld = 2    dkExclaim = 4End Enum
In [...]