datacontrol
Registered User.
- Local time
- Today, 21:05
- Joined
- Jul 16, 2003
- Messages
- 142
Once again I seek the advice of this community on this project. I have set up a form for users to log / enter some data. When "apply" is pressed, I need some things to happen.
First off, I need a new record added to a certain table with all of the data inputted on the form.
My code in my form is generic, so I will explain what my form currently does. It has fields that pulls usernames and current dates from the system. Then, the user keys in three fileds, 2 of which are small number fileds and the third is a time field. I can forward my database if need be. I am coming along quite well thanks to all of you!
Here is the code in my form:
Option Compare Database
Private Sub OLEBound0_Updated()
End Sub
Private Sub Detail_Click()
End Sub
Private Sub Text2_BeforeUpdate(Cancel As Integer)
End Sub
Private Sub Text2_Enter()
End Sub
First off, I need a new record added to a certain table with all of the data inputted on the form.
My code in my form is generic, so I will explain what my form currently does. It has fields that pulls usernames and current dates from the system. Then, the user keys in three fileds, 2 of which are small number fileds and the third is a time field. I can forward my database if need be. I am coming along quite well thanks to all of you!
Here is the code in my form:
Option Compare Database
Private Sub OLEBound0_Updated()
End Sub
Private Sub Detail_Click()
End Sub
Private Sub Text2_BeforeUpdate(Cancel As Integer)
End Sub
Private Sub Text2_Enter()
End Sub