T
Timothy Taylor
Hello,
I converter the Edit Menu C# project found at...
http://www.businessanyplace.net/?p=code
to be VB.NET CF code and after toying with it i got it down to one error
that happens on all the lines of code below.
The same error occurs on all the lines where it says "system.uint32" the
error is:
"Constants must be an intrinsic or enumerated type, not a class, structure,
or array type."
what does this mean?
What do i change it to be?
Thanks a lot,
-Tim
P.S. Do i have to change the "&H..." signs too to be something else? If so,
what?
' API declarations
Private Const WM_CUT As System.UInt32 = &H300 'ToDo: Unsigned Integers not
supported
Private Const WM_COPY As System.UInt32 = &H301 'ToDo: Unsigned Integers not
supported
Private Const WM_PASTE As System.UInt32 = &H302 'ToDo: Unsigned Integers not
supported
Private Const WM_CLEAR As System.UInt32 = &H303 'ToDo: Unsigned Integers not
supported
Private Const WM_UNDO As System.UInt32 = &H304 'ToDo: Unsigned Integers not
supported
Private Const EM_CANUNDO As System.UInt32 = &HC6 'ToDo: Unsigned Integers
not supported
Private Const CF_UNICODETEXT As System.UInt32 = 13 'ToDo: Unsigned Integers
not supported
I converter the Edit Menu C# project found at...
http://www.businessanyplace.net/?p=code
to be VB.NET CF code and after toying with it i got it down to one error
that happens on all the lines of code below.
The same error occurs on all the lines where it says "system.uint32" the
error is:
"Constants must be an intrinsic or enumerated type, not a class, structure,
or array type."
what does this mean?
What do i change it to be?
Thanks a lot,
-Tim
P.S. Do i have to change the "&H..." signs too to be something else? If so,
what?
' API declarations
Private Const WM_CUT As System.UInt32 = &H300 'ToDo: Unsigned Integers not
supported
Private Const WM_COPY As System.UInt32 = &H301 'ToDo: Unsigned Integers not
supported
Private Const WM_PASTE As System.UInt32 = &H302 'ToDo: Unsigned Integers not
supported
Private Const WM_CLEAR As System.UInt32 = &H303 'ToDo: Unsigned Integers not
supported
Private Const WM_UNDO As System.UInt32 = &H304 'ToDo: Unsigned Integers not
supported
Private Const EM_CANUNDO As System.UInt32 = &HC6 'ToDo: Unsigned Integers
not supported
Private Const CF_UNICODETEXT As System.UInt32 = 13 'ToDo: Unsigned Integers
not supported