I have a table with a date field in. Now i want a dialog box, which displays a field for input of a new date so that this date wil be automatically inserted as a new record in the table. Has anybody got a solution for this problem ? Thx Steve
Variables:
Window : Dialog
NewDate : Date
Window.open('Input Date #1#############');
NewDate := <The date you allready has - ie. WORKDATE>
Window.update(1,NewDate);
Window.input(1,NewDate);
This ought to do the trick! //Henrik Helgesen -: KISS::Keep it Simple, Stupid :-