Q&A
HOME
Tips & Tech
Q&A
Discuss
Download
자유게시판
홍보 / 광고
구인 / 구직
LOGIN
회원가입
전화접속 어댑터를 설치하려면??
윈도우즈 95와 98의 CD를 넣은 상태에서 직접 전화접속 어댑터와 전화접속 네트워킹을 설치하지 않고 프로그램에서 실행시키는 방법을 알고 계시는 분 좀 가르쳐 주세요.
모뎀은 modem.cpl로 설정이 가능하던데 이 둘은 방법을 잘 모르겠네요.
1
COMMENTS
김영대
•
1999.06.25 02:42
양윤호 께서 말씀하시기를...
> 윈도우즈 95와 98의 CD를 넣은 상태에서 직접 전화접속 어댑터와 전화접속 네트워킹을 설치하지 않고 프로그램에서 실행시키는 방법을 알고 계시는 분 좀 가르쳐 주세요.
>
> 모뎀은 modem.cpl로 설정이 가능하던데 이 둘은 방법을 잘 모르겠네요.
안녕하세요 김영대입니다
제어판의 applet 리스트를 구하신다면 아래를 참고하세요
{...}
type
TForm1 = class(TForm)
private
{ Private declarations }
function ExecuteFile(const Params: String): THandle;
public
{ Public declarations }
end;
{...}
function TForm1.ExecuteFile(const Params: String): THandle;
var
zFileName, zParams, zDir: array[0..79] of Char;
begin
Result := ShellExecute(Application.MainForm.Handle,
nil,
StrPCopy(zFileName, pChar('c:windowsrundll32.exe'),
StrPCopy(zParams, Params),
StrPCopy(zDir, 'c:windows'),
SW_SHOW);
end;
{...}
// open the Control Panel
ExecuteFile('shell32.dll,Control_RunDLL');
{...}
// add/remove programs: install/uninstall programs
ExecuteFile('shell32.dll,Control_RunDLL appwiz.cpl,,1');
{...}
// add/remove programs: windows setup
ExecuteFile('shell32.dll,Control_RunDLL appwiz.cpl,,2');
{...}
// add/remove programs: startup disk
ExecuteFile('shell32.dll,Control_RunDLL appwiz.cpl,,3');
{...}
// display properties: background
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,0');
{...}
// display properties: screen saver
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,1');
{...}
// display properties: appearance
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,2');
{...}
// display properties: settings
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,3');
{...}
// find fast
ExecuteFile('shell32.dll,Control_RunDLL findfast.cpl');
{...}
// internet: general
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,0');
{...}
// internet: security
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,1');
{...}
// internet: content
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,2');
{...}
// internet: connection
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,3');
{...}
// internet: programs
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,4');
{...}
// internet: advanced
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,5');
{...}
// regional settings: regional settings
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,0');
{...}
// regional settings: number
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,1');
{...}
// regional settings: currency
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,2');
{...}
// regional settings: time
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,3');
{...}
// regional settings: date
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,4');
{...}
// joy stick: general
ExecuteFile('shell32.dll,Control_RunDLL joy.cpl,,0');
{...}
// joy stick: advanced
ExecuteFile('shell32.dll,Control_RunDLL joy.cpl,,0');
{...}
// mouse
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @0');
{...}
// keyboard
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @1');
{...}
// printer
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @2');
{...}
// fonts
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @3');
{...}
// microsoft outlook: fax/mail
ExecuteFile('shell32.dll,Control_RunDLL mlcfg32.cpl');
{...}
// multimedia: audio
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,0');
{...}
// multimedia: video
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,1');
{...}
// multimedia: midi
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,2');
{...}
// multimedia: cd music
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,3');
{...}
// multimedia: devices
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,4');
{...}
// networking
ExecuteFile('shell32.dll,Control_RunDLL netcpl.cpl');
{...}
// dialup-networking wizard
ExecuteFile('rnaui.dll,RnaWizard');
{...}
// odbc administration
ExecuteFile('shell32.dll,Control_RunDLL odbccp32.cpl');
{...}
// password settings
ExecuteFile('shell32.dll,Control_RunDLL password.cpl');
{...}
// system: general
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl,,0');
{...}
// system: device manager
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl,,1');
{...}
// system: hardware profiles
ExecuteFile(,'shell32.dll,Control_RunDLL sysdm.cpl,,2');
{...}
// system: performance
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl,,3');
{...}
// hardware wizard
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl @1');
{...}
// add new printer wizard
ExecuteFile('shell32.dll,SHHelpShortcuts_RunDLL AddPrinter');
{...}
// themes
ExecuteFile('shell32.dll,Control_RunDLL themes.cpl');
{...}
// date/time properties: general
ExecuteFile('shell32.dll,Control_RunDLL timedate.cpl');
{...}
// date/time properties: time zone
ExecuteFile('shell32.dll,Control_RunDLL timedate.cpl,,/f');
{...}
// add modem wizard
ExecuteFile('shell32.dll,Control_RunDLL modem.cpl,,add');
{...}
// install tcp/ip
ExecuteFile('setupapi.dll,InstallHinfSection MSTCP.Install 4 nettrans.inf');
{...}
// install dial-up adapter
ExecuteFile('setupx.dll,InstallHinfSection RNA 12345 rna.inf');
{...}
// dial out through dialup adapter
ExecuteFile('rnaui.dll,RnaDial DUNConnectionName');
{...}
0
0
삭제
수정
댓글
(NOTICE) You must be
logged in
to comment on this post.
이수진
•
1999.06.25 01:19
2
COMMENTS
/
0
LIKES
QuickReport.Print하면 일부만 프린트되네요....
경험자
•
1999.06.25 04:34
이수진 께서 말씀하시기를... > 퀵리포트를 미리보기 하지않고 바로 프린터로 출력할때 생기는 문제입니다...
하남수
•
1999.06.25 02:28
사용은 안해봤지만 다음 프러퍼티를 사용하면 되지 않을까요... QuickRep1.PrinterSettings.LastPage
진중걸
1999.06.25 00:15
0
COMMENTS
/
0
LIKES
프린터제어에 대해.. Help
이상준
•
1999.06.24 22:36
1
COMMENTS
/
0
LIKES
StringGrid에서 Cell에 입력제한하는 방법
김영대
•
1999.06.24 23:52
이상준 께서 말씀하시기를... > Stringgrid에서 특정Cell에 데이타를 입력하는 데 조건을 주고 싶습니다. ...
유애선
1999.06.24 22:08
0
COMMENTS
/
0
LIKES
[제발 도와주세요]계층을 어떻게 표현할지...?
양윤호
•
1999.06.24 21:56
1
COMMENTS
/
0
LIKES
전화접속 어댑터를 설치하려면??
윈도우즈 95와 98의 CD를 넣은 상태에서 직접 전화접속 어댑터와 전화접속 네트워킹을 설치하지 않고 프로그램에서 실행시키는 방법을 알고 계시는 분 좀 가르쳐 주세요. 모뎀은 modem.cpl로 설정이 가능하던데 이 둘은 방법을 잘 모르겠...
김영대
•
1999.06.25 02:42
양윤호 께서 말씀하시기를... > 윈도우즈 95와 98의 CD를 넣은 상태에서 직접 전화접속 어댑터와 전화접속...
최석기
1999.06.24 21:30
0
COMMENTS
/
0
LIKES
screen font와 true type font
bds
1999.06.24 20:27
0
COMMENTS
/
0
LIKES
에러발생 급함
heewoony
•
1999.06.24 20:11
2
COMMENTS
/
0
LIKES
프린터 제어
하남수
•
1999.06.25 00:05
heewoony 께서 말씀하시기를... > 퀵레포트에서 라벨을 출력하려구합니다. > 근데. 출력 용지는 연속연...
하남수
•
1999.06.25 00:05
heewoony 께서 말씀하시기를... > 퀵레포트에서 라벨을 출력하려구합니다. > 근데. 출력 용지는 연속연...
이현신
1999.06.24 19:48
0
COMMENTS
/
0
LIKES
CPU 사용률을 구하는데 잘 않되내요..
박지수
•
1999.06.24 18:45
1
COMMENTS
/
0
LIKES
특정폴더가 열린 상태로 탐색기 실행하는 법??
김영대
•
1999.06.24 18:53
박지수 께서 말씀하시기를... > 델파이로 탐색기를 실행시킬때 특정 폴더가 열린(선택) 상태로 > > 탐...
오세웅
•
1999.06.24 18:44
1
COMMENTS
/
0
LIKES
인스톨 쉴드 질문-한글
이정욱
•
1999.06.24 20:10
인스톨 쉴드안에 잘 보시면 Resource파일이 있습니다. 그것을 리소스 에디터로 열어서 한글로 고치시면 됩...
하윤철
•
1999.06.24 18:08
1
COMMENTS
/
0
LIKES
[하소연]... 이젠 디버깅포인트도 안잡힙니다...-_-
이정욱
•
1999.06.24 20:05
컴파일을 하실 때 디버깅 인포메이션을 넣지 않아서 그런것 같네요. Project Option에서 Compile탭에서 De...
장일형
1999.06.24 17:04
0
COMMENTS
/
0
LIKES
델파이에서 word문서 제어는???
홍환민
1999.06.24 15:09
0
COMMENTS
/
0
LIKES
Locate()메서드로 다음찾기 구현법.
이종근
•
1999.06.24 12:18
1
COMMENTS
/
0
LIKES
계산필드가 아리송합니다.
이주흥
•
1999.06.25 05:16
이종근 께서 말씀하시기를... > 이곳에서 많은 정보를 얻고 있는 초보입니다. > DB를 만들고(파라독스)필...
이용민
1999.06.24 11:25
0
COMMENTS
/
0
LIKES
윈도우의 RAS 를 이용에 관한 질문...
VMNT
•
1999.06.24 10:14
1
COMMENTS
/
0
LIKES
Stored Procedure에서 Order By를 파라미터로 사용
신호성
•
1999.06.24 19:43
VMNT 께서 말씀하시기를... > MS-SQL Server를 사용합니다! > Stored Procedure를 사용하는데 Select 문...
dj
•
1999.06.24 08:46
1
COMMENTS
/
0
LIKES
스트링에서 문자골라내기
최석기
•
1999.06.24 17:33
dj 께서 말씀하시기를... > 스트링 변수에 내용이 들어 있습니다. > > 비베에서 처럼 > 예를들어 'ab...
박생진
•
1999.06.24 08:04
1
COMMENTS
/
0
LIKES
델파이 그냥 공부해도 되남요 초보가
이정욱
•
1999.06.24 20:07
처음하신다면 조금 오래된 책이지만 '한번 더 생각한 델파이'하는 책이 있습니다. 권용길 님께서 쓰신 책입...
장일형
•
1999.06.24 06:16
2
COMMENTS
/
0
LIKES
LAN으로 연결된 다른 컴퓨터 IP를구하고 싶어요.
김영대
•
1999.06.24 18:47
장일형 께서 말씀하시기를... > 델초보입니다. > LAN으로 상대방 컴퓨터의이름과 IP를 구해야 하는데 팁...
장일형
•
1999.06.24 20:04
김영대님 많은 도움이 되었습니다. 그런데 테스트해보니 같은 작업그룹은 잘 되는데 다른 작업 그룹은 I...
양윤호
1999/06/24 21:56
Views
237
Likes
0
Comments
1
Reports
0
Tag List
수정
삭제
목록으로
한델 로그인 하기
로그인 상태 유지
아직 회원이 아니세요? 가입하세요!
암호를 잊어버리셨나요?
> 윈도우즈 95와 98의 CD를 넣은 상태에서 직접 전화접속 어댑터와 전화접속 네트워킹을 설치하지 않고 프로그램에서 실행시키는 방법을 알고 계시는 분 좀 가르쳐 주세요.
>
> 모뎀은 modem.cpl로 설정이 가능하던데 이 둘은 방법을 잘 모르겠네요.
안녕하세요 김영대입니다
제어판의 applet 리스트를 구하신다면 아래를 참고하세요
{...}
type
TForm1 = class(TForm)
private
{ Private declarations }
function ExecuteFile(const Params: String): THandle;
public
{ Public declarations }
end;
{...}
function TForm1.ExecuteFile(const Params: String): THandle;
var
zFileName, zParams, zDir: array[0..79] of Char;
begin
Result := ShellExecute(Application.MainForm.Handle,
nil,
StrPCopy(zFileName, pChar('c:windowsrundll32.exe'),
StrPCopy(zParams, Params),
StrPCopy(zDir, 'c:windows'),
SW_SHOW);
end;
{...}
// open the Control Panel
ExecuteFile('shell32.dll,Control_RunDLL');
{...}
// add/remove programs: install/uninstall programs
ExecuteFile('shell32.dll,Control_RunDLL appwiz.cpl,,1');
{...}
// add/remove programs: windows setup
ExecuteFile('shell32.dll,Control_RunDLL appwiz.cpl,,2');
{...}
// add/remove programs: startup disk
ExecuteFile('shell32.dll,Control_RunDLL appwiz.cpl,,3');
{...}
// display properties: background
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,0');
{...}
// display properties: screen saver
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,1');
{...}
// display properties: appearance
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,2');
{...}
// display properties: settings
ExecuteFile('shell32.dll,Control_RunDLL desk.cpl,,3');
{...}
// find fast
ExecuteFile('shell32.dll,Control_RunDLL findfast.cpl');
{...}
// internet: general
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,0');
{...}
// internet: security
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,1');
{...}
// internet: content
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,2');
{...}
// internet: connection
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,3');
{...}
// internet: programs
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,4');
{...}
// internet: advanced
ExecuteFile('shell32.dll,Control_RunDLL inetcpl.cpl,,5');
{...}
// regional settings: regional settings
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,0');
{...}
// regional settings: number
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,1');
{...}
// regional settings: currency
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,2');
{...}
// regional settings: time
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,3');
{...}
// regional settings: date
ExecuteFile('shell32.dll,Control_RunDLL intl.cpl,,4');
{...}
// joy stick: general
ExecuteFile('shell32.dll,Control_RunDLL joy.cpl,,0');
{...}
// joy stick: advanced
ExecuteFile('shell32.dll,Control_RunDLL joy.cpl,,0');
{...}
// mouse
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @0');
{...}
// keyboard
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @1');
{...}
// printer
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @2');
{...}
// fonts
ExecuteFile('shell32.dll,Control_RunDLL main.cpl @3');
{...}
// microsoft outlook: fax/mail
ExecuteFile('shell32.dll,Control_RunDLL mlcfg32.cpl');
{...}
// multimedia: audio
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,0');
{...}
// multimedia: video
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,1');
{...}
// multimedia: midi
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,2');
{...}
// multimedia: cd music
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,3');
{...}
// multimedia: devices
ExecuteFile('shell32.dll,Control_RunDLL mmsys.cpl,,4');
{...}
// networking
ExecuteFile('shell32.dll,Control_RunDLL netcpl.cpl');
{...}
// dialup-networking wizard
ExecuteFile('rnaui.dll,RnaWizard');
{...}
// odbc administration
ExecuteFile('shell32.dll,Control_RunDLL odbccp32.cpl');
{...}
// password settings
ExecuteFile('shell32.dll,Control_RunDLL password.cpl');
{...}
// system: general
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl,,0');
{...}
// system: device manager
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl,,1');
{...}
// system: hardware profiles
ExecuteFile(,'shell32.dll,Control_RunDLL sysdm.cpl,,2');
{...}
// system: performance
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl,,3');
{...}
// hardware wizard
ExecuteFile('shell32.dll,Control_RunDLL sysdm.cpl @1');
{...}
// add new printer wizard
ExecuteFile('shell32.dll,SHHelpShortcuts_RunDLL AddPrinter');
{...}
// themes
ExecuteFile('shell32.dll,Control_RunDLL themes.cpl');
{...}
// date/time properties: general
ExecuteFile('shell32.dll,Control_RunDLL timedate.cpl');
{...}
// date/time properties: time zone
ExecuteFile('shell32.dll,Control_RunDLL timedate.cpl,,/f');
{...}
// add modem wizard
ExecuteFile('shell32.dll,Control_RunDLL modem.cpl,,add');
{...}
// install tcp/ip
ExecuteFile('setupapi.dll,InstallHinfSection MSTCP.Install 4 nettrans.inf');
{...}
// install dial-up adapter
ExecuteFile('setupx.dll,InstallHinfSection RNA 12345 rna.inf');
{...}
// dial out through dialup adapter
ExecuteFile('rnaui.dll,RnaDial DUNConnectionName');
{...}