get form to ask questions

G

Guest

I made a table with the fields of Student ID, name and marks

Then I made a form consisting of the same fields of that table

I want when i double-click on the form a question comes out asking me to
insert the sutdent ID. How can I do it?

I am using Access 2003

Thanks
 
G

Guest

hi,
that would be a simple message box. in the form's double click event add
this line

msgbox("Enter the student ID.")

regards
FSt1
 
K

Keith Wilby

r said:
I want when i double-click on the form a question comes out asking me to
insert the sutdent ID. How can I do it?

What do you mean by "insert"? Do you want to search or store? If you want
to store then use a text box bound to the "student ID" field. If you want
to search then you could code it but personally I'd opt for the built-in
"filter by form" utility or <CTRL> + F for "Find".

Regards,
Keith.
www.keithwilby.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top