Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Border on ActiveX Control

Status
Not open for further replies.

NAVAJAVB

Programmer
Sep 23, 2002
5
US
I am using an ActiveX Control on a form in Access 2000. Although I made the border transparrent, when I print a border still shows around the box. It is a...

Microsoft Forms 2.0
Forms.Image.1

I need the box to do a Insert Picture, I use VB to determine what .bmp file to insert... that is the signiture in a letter (the form is a letter. I can't get rid of the border.

Thanks Victor
 
No luck turning the border off. Consider using the standard image control and use code to replace the picture.

Private Sub Form_Current()

If Me.signedby = "the boss" Then
Me.sigbox.Picture = "C:\sigs\bossessig.bmp"
End If

End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top