Simply drop the enum thing and make constantst of the rest.

Code:
const FO_MOVE = &H1
const FO_COPY = &H2
const FO_DELETE = &H3
const FO_RENAME = &H4
Then you replace in your code every 'as FO_Functions' with 'as Variant' or even 'as integer'.
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).]