Get text value from EDITLINE (newby question) (OpenInsight 32-Bit)
At 19 MAY 2011 09:39:19AM Derek Harrison wrote:
Hi all,
I'm new to OpenInsight & AREV.
I'm trying to do something simple and I'm struggling to find information in the documentation.
I have a form with a EDITLINE control on.
I have a button with the following code:
$Insert Msg_Equates
Declare function Get_PropertyFromBranch=Get_Property(@WINDOW:"EDITLINE_FROMBRANCH","TEXT")Msg(@window, FromBranch)RETURN 0
All I've get is an empty MessageBox - I'm sure I've made some fundamental error.
Any help is appropriate.
At 19 MAY 2011 10:12AM Dave Harmacek wrote:
you have
FromBranch=Get_Property(@WINDOW:"EDITLINE_FROMBRANCH","TEXT")
should be
FromBranch=Get_Property(@WINDOW:".EDITLINE_FROMBRANCH","TEXT")
you are missing the delimiter "." between the @window variable and the control name.
Dave