
07-02-2003, 12:54 PM
|
|
Centurion
|
|
Join Date: Jun 2003
Location: ON, Canada
Posts: 106
|
|
Quote: Originally Posted by ammalu i have this code in VB:
Public Enum Commodity
Gas = 0
Power = 1
Coal = 2
End Enum
I want to convert this in VBA,but VBA doesnt accept it as i have office '97,so how do i do it..VBA doesnt seem to recoginize the Enum key word
Thanks
Sree
I was just logging on to find a solution to that myself!
I have
Code:
Public Enum AppBarPos
abpLeft = 0&
abpTop = 1&
abpRight = 2&
abpBottom = 3&
End Enum
|
|