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 는 얼마든지...

+ Recent posts