C
Chandrika
If some one give me advice I will be very grateful. I have table with
ID,Code,Product_Img 3 fields.
I created form with above fields and combo Box . Combo4searching Code when
user enter the code. Its fine.
I include timer function to form on timer, and interval = 60000 First image
is comment: introducing my program.
User can search by entering code and view product picture and description.
Private Sub Form_Timer()
Enabled = True
DoCmd.GoToRecord , , acFirst
End Sub
Private Sub Combo4_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![Combo4])
Me.Bookmark = rs.Bookmark
End Sub
Some time timer function gives me error.
I need to improve this. I am now to vb and access.
1. Need to improve form
2. How can I hide access window. View only form. exe file.(I minimize
database, But can not do anything with access window. I need to hide access
window. I set start-up – This Form)
3. need to correct error in timer function
Thank you so much
Chandrika
ID,Code,Product_Img 3 fields.
I created form with above fields and combo Box . Combo4searching Code when
user enter the code. Its fine.
I include timer function to form on timer, and interval = 60000 First image
is comment: introducing my program.
User can search by entering code and view product picture and description.
Private Sub Form_Timer()
Enabled = True
DoCmd.GoToRecord , , acFirst
End Sub
Private Sub Combo4_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![Combo4])
Me.Bookmark = rs.Bookmark
End Sub
Some time timer function gives me error.
I need to improve this. I am now to vb and access.
1. Need to improve form
2. How can I hide access window. View only form. exe file.(I minimize
database, But can not do anything with access window. I need to hide access
window. I set start-up – This Form)
3. need to correct error in timer function
Thank you so much
Chandrika