005
28.07.2004, 15:54 Uhr
~Codexer
Gast
|
nunja, es kommt imemr drauf an wessen programm das ist, manche externen programme liefer bestimmte anttribute zurück zum beipsiel des ausdrucken von notpad, extern gesteuert von deinem programm, würde so funktionieren:
Code: |
Private Type sPath fPath As String fFreeFile As Long End Type Private fData As sPath Private Sub Form_Load() fData.fPath = "C:\Test.txt" fData.fFreeFile = FreeFile Open fData.fPath For Output As #fData.fFreeFile Print #fData.fFreeFile, "Hallo Welt" Close #fData.fFreeFile Shell "notepad.exe /p " + fData.fPath, vbNormalFocus End Sub
|
|