Im trying to display the value of a field in a textbox and allow the user to edit it, then I have a save button that will update the table. I do not want to bind the field to the textbox. I want strict control over the data being modified by the user.
I declare public variable aa
aa =pwacct01.addr1
thisform.text4.controlsource= "m.aa"
also tried
thisform.text4.controlsource= m.aa
at run time the correct value is displayed in the text box, when textbox is clicked in user only can change the first character right arrow key will not move the cursor past the 1st character. I have the maxlength=0
I have spent hours searching this out and from everything I have read the above should work but it does not. No binding the field to the control is not an option. I ne4ed to bind the memory variable to the control.
I declare public variable aa
aa =pwacct01.addr1
thisform.text4.controlsource= "m.aa"
also tried
thisform.text4.controlsource= m.aa
at run time the correct value is displayed in the text box, when textbox is clicked in user only can change the first character right arrow key will not move the cursor past the 1st character. I have the maxlength=0
I have spent hours searching this out and from everything I have read the above should work but it does not. No binding the field to the control is not an option. I ne4ed to bind the memory variable to the control.