I have a form on which a chkbox triggers the display of a container.
This contains a text box and a chkbox.
The idea is that the user can choose to enter a single product number or a list of numbers.
In my code so far the single number processing works now I want to add the chkbox click() method . My code so far is
Either way the list table will be used in later processing.
My problem is that I wish to provide the user with a way to automatically add another record after an entry is made.
Can anyone suggest another method or modify what I already have?
Thanks
Coldan
This contains a text box and a chkbox.
The idea is that the user can choose to enter a single product number or a list of numbers.
In my code so far the single number processing works now I want to add the chkbox click() method . My code so far is
Code:
cMessageText = ' New list [Y] ReUse existing [N]'
nAnswer = MyMsgBox(cMessageText, cMessageButtons1,cMsgTitle)
If nAnswer = 1
Create Table List (pernum N (8))
APPEND blank
Browse FIELDS pernum
Else
If !Used('list')
Use List In 0
Endif
Select List
Endif
Either way the list table will be used in later processing.
My problem is that I wish to provide the user with a way to automatically add another record after an entry is made.
Can anyone suggest another method or modify what I already have?
Thanks
Coldan