|
Sample UDF
|
|
| · | Forms
|
| · | Reports
|
| · | Entry/exit procedures
|
| · | Applications
|
| · | Commands
|
| SET VAR v1=(UDF('dwrd','$1,456.99'))
|
| SET VAR v1 = (UDF('random', '25 345'))
|
| SET VAR v1=(UDF('dwrd','$1,456.99'))
|
| SHOW VAR v1
|
| SET VAR v1=(UDF('@dwrd.dll','$1,456.99'))
|
| SHOW VAR v1
|
| · | int WINAPI RbDllVersion(void);
|
| · | You must specify to return 100.
|
| · | const char* WINAPI RbDllSpec(void);
|
| · | You designate the DLL function's name which is displayed in the Combo Box.
|
| · | int WINAPI RbDllId(void);
|
| · | It is the identity number of the DLL. You designate to return a number form 2 to 127.
|
| · | int WINAPI RbDllDraw(const char*, const HDC, long, long, long, long)
|
| · | Return value : 0 success / Not 0 fails
|
| · | Argument : const char* Data strings
|
| · | const HDC Device Context handle
|
| · | long Left upper corner X position of object
|
| · | long Left upper corner Y position of object
|
| · | long Right lower corner X position of object
|
| · | long Right lower corner Y position of object
|
| · | int WINAPI RbDllDrawP(const char*, const HDC, long, long, long, long)
|
| · | Return value : 0 success / Not 0 fails
|
| · | Argument : const char* Data strings
|
| · | const HDC Device Context handle
|
| · | long Left upper corner X position of object
|
| · | long Left upper corner Y position of object
|
| · | long Right lower corner X position of object
|
| · | long Right lower corner Y position of object
|