Options

Inputbox or something similar

Christian_BuehlChristian_Buehl Member Posts: 145
edited 2002-08-22 in Navision Financials
It sounds a litlle bit silly but I'm looking for a very simple input of a string without using a form.
Is there any way to do so in Inputbox or something else (like message, but with input).
Who knows the command (if there is one)
Thanks
Chris

Comments

  • Options
    JohnPJohnP Member Posts: 56
    Setup a variable (e.g. Window) as type "Dialog". In the code you can then use something like this:

    Window.OPEN('Input1 #1######## Input2 #2########');
    Window.INPUT(1,Value1);
    Window.INPUT(2,Value2);
    Window.CLOSE;

    Have a look at the online help for other uses of the dialog type of variable.

    Cheers,
    John
  • Options
    Christian_BuehlChristian_Buehl Member Posts: 145
    <img border="0" title="" alt="[Smile]" src="images/smiles/icon_smile.gif" /> It worked fine.
    Thank you
    Christian
Sign In or Register to comment.