Dim sql as String
sql = "SELECT * from Movies where ID=" & fgTheater.TextMatrix(fgThe
MsgBox sql
db.Execute sql
Main Topics
Browse All TopicsI displayed a list of theaters information onto the flexgrid. I want to be able to double click on (Star Theater) and additional information will display onto a picture box or image box.
I have two picture box beneath the flexgrid and when I double click on a certain movie theater their address display onto that picture box.
When I double click on Star Theater then the ID is 200
MsgBox fgTheater.TextMatrix(fgThe
then I try to display it onto the picture box and this is what I try to do but the message box said the word "FALSE"
MsgBox sql = "SELECT * from Movies where ID=" + fgTheater.TextMatrix(fgThe
db.Execute sql
can you help me.
should I use a picture box, image box or label box.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: mingzPosted on 2004-05-11 at 09:30:05ID: 11042152
mistake: ater.Row, 11)
ater.Row, 11)
MsgBox sql = "SELECT * from Movies where ID=" + fgTheater.TextMatrix(fgThe
this will give you "FALSE"
should be:
MsgBox "sql = SELECT * from Movies where ID=" & fgTheater.TextMatrix(fgThe
note the position of the "
you can use textbox too