Hi
This is maybe very simple, but need some advice on the path. In my app I add a picture to a excel sheet, and it's working fine but I don't want the file in ex. c:. It should be in the Application.StartupPath, therefore I used this:

Code:
xlWorkSheet.Shapes.AddPicture(Application.StartupPath, & "\Test.JPG", _
      Microsoft.Office.Core.MsoTriState.msoFalse, _
      Microsoft.Office.Core.MsoTriState.msoCTrue, 2, 2, 30, 30)
but with this I get "expression expected" with the &. If I use a path "c:\Test.jpg", it work's.