Control source was not set good, but I made it OK now, and it works. Thank you.
I have other qestion now: when I enter data in form and save this in table,
I want to open form to enter new data in fields, but I always open form with
my old data, and this fields are not blank. What to do? I tried with command
button Save record, after that Add new record, but I didn't get what I wanted!
> You either need to write code behind your command button to write the data
> from the boxes on your form into your table, or make sure the control source
[quoted text clipped - 5 lines]
> > and enter command button Save on my form, it doesn't appear in my table.
> > How to connect my form with tables?
Dennis - 02 Apr 2008 14:27 GMT
In the Load event of the form put this code
DoCmd.GoToRecord , , acNewRec
> Control source was not set good, but I made it OK now, and it works. Thank you.
> I have other qestion now: when I enter data in form and save this in table,
[quoted text clipped - 11 lines]
> > > and enter command button Save on my form, it doesn't appear in my table.
> > > How to connect my form with tables?
Smoki - 02 Apr 2008 14:51 GMT
Thanks!
More questions? I think I made some mistake at the beggining. I'm filling
fields, and I can save this records in table, but wneh I close my form, and
open it again, every time I see my first record, fields are not blank.
Where is the problem?
> In the Load event of the form put this code
> DoCmd.GoToRecord , , acNewRec
[quoted text clipped - 14 lines]
> > > > and enter command button Save on my form, it doesn't appear in my table.
> > > > How to connect my form with tables?