Hello,
I have the below script that creates a Window that asks the user to populate a Part Number and Lot Number. When the value is entered in the Part Number box and the Lot Number field is clicked, the value in the Part Number field disappears. This happens vice versa as well.
Any thoughts on why this is happening?
nw = New Window("Material Information", << Modal,
Text Box("Information Type"),
Text Box(""),
V List Box(
H List Box( Text Box("Material Part Number: "),
str_PN_bx = Number Edit Box()),
Text Box(""),
H List Box (Text Box("Material Lot Number: "),
str_LN_bx = Number Edit Box()),
Text Box("")),
V List Box(ok_btn = Button Box("OK",
str_PN = str_PN_bx << Get();
str_LN = str_LN_bx <<Get())),
cncl_btn = Button Box("Cancel"));
Thanks!