728x90
VB에서 레지스트리 키를 삭제 , 입력하는 프로젝트 샘플
사용법은 아래와 같습니다.
먼저 사용할 폼이나 모듈에
Public Registry As RegistryHandler
Private Registry As RegistryHandler
처럼 선언해주신 다음
프로그램 시작 모듈 또는 사용할 함수에
Set Registry = New RegistryHandler
프로그램 종료 또는 사용끝난 함수에
Set Registry = Nothing
'Read Key
strDir = Registry.GetRegValue(HKEY_LOCAL_MACHINE, "Software\ESTSoft\ALFTP", strReadKey)
'Write Key
Registry.WriteRegValue HKEY_LOCAL_MACHINE, "Software\ESTSoft\ALFTP", "RootDir", strWriteKey
'Delete Key
Registry.DeleteKey HHKEY_LOCAL_MACHINE, "Software\ESTSoft\ALFTP\" & strDelKey
* 주의 : 중요한 레지스트리에는 Write & Delete 는 테스트 하지 마세요. Read 는 얼마든지...
'프로그램언어 > VB' 카테고리의 다른 글
Http의 파일을 다운받는 cHTTPFile Class (0) | 2008.03.25 |
---|---|
INI(설정)파일 Read & Write 모듈 (0) | 2008.03.25 |
OS 언어 확인 (0) | 2008.03.24 |
실행 파일에 디지털 서명 넣기 (Ver 0.1) (0) | 2008.03.24 |
인증서종류/OS별 ActiveX 보안 경고(설치 여부 확인) 메세지 비교 (0) | 2008.03.24 |