Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
is there a way I could put Word Pad in a form so I could have a button do the after-editing stuff?
oWSH = CREATEOBJECT("wscript.shell")
oWSH.Run("MyDocument.doc", 2, .T.)
ShellExecute(0, "open", "mspaint.exe", "Mine.jpg", "", 1)
[COLOR=blue]oWSH = CreateObject("wscript.shell")
oWSH.Run(mspaint "D:\my jpgs\mine.jpg"],1,.T.)[/color]
DECLARE INTEGER FindWindow IN user32 ;
STRING lpClassName, STRING lpWindowName
DECLARE INTEGER SetParent IN user32 ;
INTEGER hWndChild, INTEGER hWndNewParent
LOCAL liWordPadHandle AS Integer
liWordPadHandle = FindWindow(Null, 'document - wordpad')
liReturn = SetParent( liWordPadHandle , THISFORM.HWnd )