home *** CD-ROM | disk | FTP | other *** search
- {$M 32768,0,32768}
- Program QMount;
- Uses DOS,CRT,TenTools,QM;
- VAR
- ServerID : S12;
- HoldY,I : Integer;
-
- Begin {QMount Main}
- If (ParamCount=0)
- then
- begin
- Writeln('Syntax: QMOUNT <Servername>');
- Halt;
- end;
- HoldY:=WhereY;
- ServerID:=ParamStr(1);
- For I:=1 to Length(ServerID) do ServerID[I]:=Upcase(ServerID[I]);
- QuickMount(ServerID);
- GotoXY(1,HoldY);
- End.