Hello all, I am again ams and not very good at English and I have a question
I have an application with 2 pages entry and read with 1 menu in entry I have 4 input named "number" "name" "place" "quantity" and menu save idem in read.
Help please for added code
Thanx advance
on show page entry
number = Input.GetText("Input1");
name = Input.GetText("Input2");
place = Input.GetText("Input3");
quantity = Input.GetText("Input4");
on menu page entry
if e_ID==1 then -- Item Save on menu
--[[ script for
Save File]]--
result = Dialog.Message("Notice", "You have next Input.", MB_YESNO, MB_ICONINFORMATION, MB_DEFBUTTON1);
if result == IDNO then
Application.ExitScript();
else
Input.SetText("Input1", "");
Input.SetText("Input2", "");
Input.SetText("Input3", "");
Input.SetText("Input4", "");
end
end
on show page read
--[[ script for Read File ]]--
Number = Input.GetText("Input1"); -- Number introduced to Page Entry
Input.SetText("Input2", Name); -- Read the Name in File Saved to Page Entry
Input.SetText("Input3", Place); -- Read the Place in File Saved to Page Entry
Input.SetText("Input4", Quantity); -- Read the Quantity in File Saved to Page Entry

Reply With Quote
