|
|
|
|
|
Screen,Current (External language) In french: Ecran,Courant Retrieves the name of the control being edited and its index, if necessary. // In C CALLWD("Screen,Current"); strcpy(CurrentControl,WDName); // In Pascal CALLWD('Screen,Current'); CurrentControl:=WdName; // In VB call CALLWD("Screen,Current") CurrentControl=WdName Remarks - WdName contains the name of the control. If the control is an indexed control, WdIndex contains the subscript of the control.
- The space characters found at the end of WdName are deleted by default. Space, Yes must be used in order for the space characters not to be deleted from WdName (on 10 characters).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|