Continuous form bug

Zaeed

Registered Annoyance
Local time
Today, 20:38
Joined
Dec 12, 2007
Messages
383
I have a continuous form that has three text fields, one plain text (description), one date (date), and one another plain text (name). There is also a delete button..

When I click on the date text box, a calendar is opened, date selected and that is then inserted into the date text field. The same process applies for the name text box.
_______________________

My issue is whe i'm filling out the form, i generate multiple records on the form, but when I click back on a one that i've just made I am unable to type into the text box (description). However, if I click on the date text field and select a date, I am then able to type into the description text box for that particular record.

Does anyone know why this is happening?
 
Do you programmatically unlock the description textbox at any stage? For example, does the code running when you click the date text box have anything like txtDescription.Enabled = True, or txtDescription.Locked = False.

Also it would be worth checking the properties of the description text box in design view to see the initial values for those same properties.
 
nope there is nothing like that. that was the first thing i checked
 

Users who are viewing this thread

Back
Top Bottom