밑에 질문 올렸다가 냉담한 반응을 받고 충격을 받았습니다.
ㅠ.,ㅠ
너무 허접한 질문이라 공부 좀 더하라는 뜻 같네요.
그래서 제차 검색한 결과 제가 원하는 도스 명령에 관한
컴포넌트를 받은 것 같습니다.
이 컴포넌트 사용법을 좀 알려주세요.
설명서가 하나도 없네요.
ㅠ.,ㅠ
Component에 대한 설명 및 사용법은 DosCommand.PAS에 들어
있습니다. 그중 사용법을 Capture해 드리니 참조하세요.
How to call a dos function (win 9x/Me) :
----------------------------------------
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;
Example : Format a disk (win 9x/Me) :
-------------------------
--a batch file : c:myformat.bat
@echo off
format %1
rem eof
--in your code
var diskname: string;
--
DosCommand1.CommandLine := 'c:myformat.bat a:';
DosCommand1.Execute; //launch format process
DosCommand1.SendLine('', True); //equivalent to press enter key
DiskName := 'test';
DosCommand1.SendLine(DiskName, True); //enter the name of the volume
있습니다. 그중 사용법을 Capture해 드리니 참조하세요.
How to call a dos function (win 9x/Me) :
----------------------------------------
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;
Example : Format a disk (win 9x/Me) :
-------------------------
--a batch file : c:myformat.bat
@echo off
format %1
rem eof
--in your code
var diskname: string;
--
DosCommand1.CommandLine := 'c:myformat.bat a:';
DosCommand1.Execute; //launch format process
DosCommand1.SendLine('', True); //equivalent to press enter key
DiskName := 'test';
DosCommand1.SendLine(DiskName, True); //enter the name of the volume