2017-01-14 3 views

답변

0

귀하의 질문에 대한 자세한 설명이 없습니다. 구성 요소가 성공적으로 설치된 경우 구성 요소 팔레트에 나타납니다. 귀하의 양식에 그것을 놓고, 개체 검사관에서 속성을 조정하고 Execute으로 전화하십시오.

여기에 "사용법"및 "예"설명이 유닛 헤더에 있습니까?

Example : Make a dir : 
    ---------------------- 
    - if you want to get the Result of a 'c:\dir /o:gen /l c:\windows\*.txt' 
    for example, you need to make a batch file 
    --the batch file : c:\mydir.bat 
    @echo off 
    dir /o:gen /l %1 
    rem eof 
    --in your code 
    DosCommand.CommandLine := 'c:\mydir.bat c:\windows\*.txt'; 
    DosCommand.Execute; 
+0

******************************************************************* How to use it : --------------- - just put the line of command in the property 'CommandLine' - execute the process with the method 'Execute' 

예 감사합니다. 늦게 답변을 드려 죄송합니다. 그러나 어떤 이유로 나는 "그것을 사용하는 방법"과 "예제"를 유닛 헤더에 넣지 않았습니다. – Newb101