electing a field
Posted: Wed Feb 18, 2009 11:47 pm
I have used this command before but it won't work now. reason given:
compiling at 11:41:09 AM
Type Chunk: can't create a variable with that name (explicitVariables?)
Object Clear
Line select before the text of fld "partNo"
Hint text
I just want to clear a bunch of flds and set the cursor to the first one.
compiling at 11:41:09 AM
Type Chunk: can't create a variable with that name (explicitVariables?)
Object Clear
Line select before the text of fld "partNo"
Hint text
I just want to clear a bunch of flds and set the cursor to the first one.
Code: Select all
on mouseUp
put "" into fld "partNo"
put "" into fld "description"
put "" into fld "Qty"
set the label of button "UOM" to ""
put "" into fld "No"
put "" into fld "DateRcd"
put "" into fld "DueDate"
put "" into fld "DateAllocated"
put "" into fld "TotalQTY"
set the label of button "UOM2" to ""
put "" into fld "$/UOM"
put "" into fld "$"
set the label of button "region" to ""
set the label of button "Store" to ""
put "" into fld "Location"
select before the text of fld "partNo"
end mouseUp