BCX_GET_TEXT$ function

Purpose: BCX_GET_TEXT$ will get text from the Edit Field of a Control or Static Text.


 Syntax:

 RetStr$ = BCX_GET_TEXT$(hWnd)

 Parameters:

  • RetStr$ Text string returned from the Edit field or control.
  • hWnd Handle of the control from which to get the text.

Example:


 RetStr$ = BCX_GET_TEXT$(ID_EDITBOX1)

Result: RetStr$ will contain the string retrieved from ID_EDITBOX1

For an example of the BCX_GET_TEXT$ function see BCX\Gui_Demo\Amort\Amort.bas and BCX\Gui_Demo\Calc\Calc.bas.