What is the good syntax to use RESET in this "User-Defined type" piece of code?
Thank you
Code:
TYPE RECT nLeft AS LONG nTop AS LONG nRight AS LONG nBottom AS LONG END TYPE TYPE ZIMAGEPROP hWnd AS LONG anchor AS LONG rc AS RECT TiledBitmap AS LONG order AS STRING * 2048 ordersize AS LONG WMBit(25) AS LONG '//4.02 WMCodePtr(25*32) AS DWORD '//4.02 END TYPE FUNCTION PBMAIN DIM WinProp(1 TO 10) AS ZIMAGEPROP WinProp(1).WMBit(5) = 100 RESET WinProp(1).WMBit() ' <------------- END FUNCTION
Comment