OLE Object not Displaying

M

Matt

Hi. I decided to try a different track since my SQL was
not working either.

The following does put the team name in a text box in the
form. It does NOT put the OLE Object (logo .gif file) in
the OLE object however. I can manually link and the logo
will show or just insert the graphic with no problem.
The seperate Teams Form also shows a map of the country
the team is from and both images show up fine. What am I
missing or doing wrong?

Private Sub HTeamID_AfterUpdate()

Me![HTName] = Me![HTeamID].Column(1)
Me![HTLogo] = Me![HTeamID].Column(6)

End Sub
 
M

Matt

Forgot to mention/display the query for the combo box.

SELECT Teams.TeamID, Teams.Team, Teams.City,
Teams.Country, Teams.Map, Teams.Logo
FROM Teams;
 

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