Hi,
I have 2 Problems
1. I created a form for a table using Form Wizard. How to automatically point out the form to the last entry in the Table, so that any new record added will be added as a new one, instead of over writing the present one.
As of now, it opens the first record when I open that form and I have to chose last record.
2. I have looked for a combobox search Online.
I created a combo box linking it up with another Table.
I have added the following Code for that combo Box
Code:
Dim mycustomer As String
'MsgBox Me.Combo16.Value
mycustomer = "Select * from TOtal details where ([Title] = '" & Me.Combo16.Value & "')"
Me.TOtal_Details_subform.Form.RecordSource = mycustomer
Me.TOtal_Details_subform.Form.Requery
It is returning Index instead of Value.

If i select 2nd element in row, it returns 2, instead of what value it is.
Please advise on the above error and also some good tutorials.
THank You,
Bharat