Hi everyone,
Does anyone know that how can I put the cursor at the end of the @...get field automatically?
Example: I have a data entry screen like below
Fields:
Item no. -------n(6)
Description ----c(50)
Item No. Item Description
--------- ----------------------------------
123456 TV SONY 32 INCHES COLOR
*** I want to put the cursor right after the word COLOR
TV SONY 32 INCHES COLOR_
Thanks in advance,
source code:
@10,10 GET m.Item valid Pickup(m.item)
@10,30 GET m.Descript
Function Pickup
parameters ItemNo
sele ItemFile
set order to tag Item
seek ItemNo
If found()
m.descript = ItemFile.Desc
EndIf
return
Does anyone know that how can I put the cursor at the end of the @...get field automatically?
Example: I have a data entry screen like below
Fields:
Item no. -------n(6)
Description ----c(50)
Item No. Item Description
--------- ----------------------------------
123456 TV SONY 32 INCHES COLOR
*** I want to put the cursor right after the word COLOR
TV SONY 32 INCHES COLOR_
Thanks in advance,
source code:
@10,10 GET m.Item valid Pickup(m.item)
@10,30 GET m.Descript
Function Pickup
parameters ItemNo
sele ItemFile
set order to tag Item
seek ItemNo
If found()
m.descript = ItemFile.Desc
EndIf
return