How to enter the text in two textBoxes at same interval of t

srinivas.chittemsrinivas.chittem Member Posts: 142
Hai All,

Good Moring....I am learning fundas in NAV

Here i have small problem using textboxes..I created two text boxes. Problem is , suppose i am entering the text in first textbox, the same moment the entered text in first textbox is also displaying in the second textbox..

Is there any properties are available? or we manually write the code? or where we write the code (means which trigger)

please share ur views and help me.....

Thanks & Regards,

srinivas.chittem
Regards,
srinivas
"Delighting Customers.... Through Delivery Excellence" .

Comments

  • MikerMiker Member Posts: 105
    May be this will approache you
    public boolean modified()
    {
    boolean ret;

    ret = super();
    StringEdit1.text(StringEdit.text());
    return ret;
    }
    going to Europe
  • tpriyantpriyan Member Posts: 32
    I understood your problem..I think you are using the same variable for the first and the second text box. Just create two variables and make each textbox point to different varibles. Just set the src property of textbox to point to different varibles.
  • AdministratorAdministrator Member, Moderator, Administrator Posts: 2,499
    [Topic moved from Dynamics AX to Navision forum]
Sign In or Register to comment.