OK, where do I start.
Does anyone have any ideas as far as books and resources. I probably need to start learning a programming language like VB. I have been using Access for over 8 years and have managed to get by without coding. But now I am challenged with make Web enabled databases.
FIRST PROBLEM:
I have a traditional Access form that has a drop-down box for a Name. When that name is selected, it automatically fills the next three lines, ID, UnitNum, UnitName. This is easy in access.
Me!Ext = Me![Combo42].Column(1)
Me!PinNum = Me![Combo42].Column(2)
Me!UnitNum = Me![Combo42].Column(3)
Me!UnitNam = Me![Combo42].Column(4)
But How do I do it in Data Access Pages? I started buy using the Wizard to create a form. Then I looked at Drop-down boxes, but it only does one field at a time.
I know I have a learning curve, so any suggestions to which books to read or what resources to use will be greatly appreciated.
Thanks