Simply drop the enum thing and make constantst of the rest.
Then you replace in your code every 'as FO_Functions' with 'as Variant' or even 'as integer'.Code:const FO_MOVE = &H1 const FO_COPY = &H2 const FO_DELETE = &H3 const FO_RENAME = &H4
The only thing that changes is when you are coding, you don't get a list where you can choose from (the enum list), but you have to use one of the constants.
[This message has been edited by c@lle (edited 11-30-1999).]




Reply With Quote