is it possible to have a simple button in your form, then once you click it, it will open a new word file and will have a picture in it? i tried using the code below.. but the value that is showing to the word file is not a picture but a lot of characters.. any help?



here's the code i used:

Dim stAppName As String ' this is the path for the program
Dim strFile As String 'this is the path for the file

stAppName = "MSWordPath"
strFile = Chr(34) & "PicturePath" & Chr(34)

Call Shell(stAppName & " " & strFile, vbMaximizedFocus)