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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mszalay

  1. mszalay

    Opening Image with vba

    If "PathPicture" is a variable, you will have to remove the double quotes around it. I.E. stAppName = "......" & PathPicture Also, if your PathPicture has Spaces in it you may need to include quotes: stAppName = "......" & chr$(34) & PathPicture & chr$(34) Mike
  2. mszalay

    How do you add to a listbox on report?

    You can also use code within the report such as this: Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) Dim t As Integer If FormatCount = 1 Then For t = 0 To Forms!form1.Text0.ListCount If Forms!form1.Text0.Selected(t) Then Report.CurrentX = 0 'Straight column...

Part and Inventory Search

Back
Top