On continues form for each field click action

S

Stefan Hoffmann

hi,
On my continues form basing on a table / query, by clicking on
for each row of a field i want to display some thing (for eg :- run
an query basing on perticular field row value and display it)
how to progrm this for each row in field please
Just use the events provided by the controls in the design view. You can
access the controls or the fields behind. E.g. you have TextBox
txtAmount bound to a field Amount using the OnClick event:

Private Sub txtAmount_Click()

MsgBox "Control txtAmount.Value = " & txtAmount.Value
MsgBox "Field Amount = " & Me![Amount]

End Sub


mfG
--> stefan <--
 
W

William Mills

balu said:
Dear friends,
On my continues form basing on a table / query, by clicking on
for each row of a field i want to display some thing (for eg :- run
an query basing on perticular field row value and display it)
how to progrm this for each row in field please
balu
 
B

balu

Dear friends,
On my continues form basing on a table / query, by clicking on
for each row of a field i want to display some thing (for eg :- run
an query basing on perticular field row value and display it)
how to progrm this for each row in field please
balu
 
P

paul

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