Dialog

Mc3762Mc3762 Member Posts: 26
edited 2001-09-29 in Navision Financials
Is it possible to prompt the user for some input, without creating a new form. I only need one textbox of information from the user.

Comments

  • Luc_VanDyckLuc_VanDyck Member, Moderator, Administrator Posts: 3,633
    NewControlID := d.INPUT([ControlID] [,Variable])

    eg:
    Variables
    dlgWindow : Dialog
    txtName : Text

    dlgWindow.OPEN('Testing user input...\\' +
    'What is your name #1#########');
    dlgWindow.INPUT(1,txtName);
    dlgWindow.CLOSE;
    MESSAGE('Hello %1',txtName);
    No support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)
Sign In or Register to comment.