| |
|
|
| CompileMarkSeparationSource wurde am 15.07.2007 aus der MMJ-Quellcodesammlung (Dietmar Horn) in die Babyklappe auf XProfan.Com abgelegt:
Kommandozeilenparameter auslesen
PRFellow - Vorlage
Autor: Thomas Hölzer
Diese Prozedur dient zu Testzwecken im Entwicklungsprozeß,
um Anzahl, Numerierung und Inhalt der beim Start
übergebenen Parameter zu prüfen.
Bitte beachten:
Bei einem zur EXE gelinkten Programm verschieben sich in
Profan die Parameter; s. Onlinehilfe
Proc CheckParams
Declare i%,paramstr$
WhileNot Gt(i%,%ParCount)
Let paramstr$=paramstr$,
Par$(;Str$(i%);),: ,Par$(i%),
Inc i%
Wend
MessageBox(paramstr$,Parametertest,64)
EndProc
Beispiel
Cls
CheckParams
|
|
|
| |
|
|
|
p.specht
| Revitalisiert 2018-12 in XProfan 11.2a by p.woodpecker
' Kommandozeilenparameter read (PRFellow - Presentation)
' Author 2007 Thomas Hölzer, 2018 To XProfan11.2a p.woodpecker
' "Prozedur serves To Testzwecken in the Entwicklungsprozeß,
' circa amount, Numerierung and Content the startup
' übergebenen Parameter To Verify.
' Please mind: with one to EXE gelinkten Program
' move itself in XProfan the Parameter-index circa -1 !"
Proc CheckParams
Declare i%,paramstr$
Whileloop 0,%ParCount-1
paramstr$=paramstr$+"Par$("+Str $(i%)+") = "+Par$(i%)+"\n"
EndWhile
MessageBox(paramstr$,"Parametertest", 64)
ENDPROC
Main:
Cls
CheckParams
End
|
|
|
| Computer: Gerät, daß es in Mikrosekunden erlaubt, 50.000 Fehler zu machen, zB 'daß' statt 'das'... | 12/06/18 ▲ |
|
|
|