VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Hides all the Desktop Items

Arvind  (2 Submissions)   Registry   VB 6.0   Unknown Difficulty   Thu 2nd June 2005   Mon 8th February 2021

Hides all the Desktop Items

API Declarations


Private Declare Function RegQueryValueEx Lib "advapi32.dll" Alias "RegQueryValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal lpReserved As Long, lpType As Long, lpData As Any, lpcbData As Long) As Long
Private Declare Function RegSetValueEx Lib "advapi32.dll" Alias "RegSetValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal Reserved As Long, ByVal dwType As Long, lpData As Any, ByVal cbData As Long) As Long
Private Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal hKey As Long, ByVal lpSubKey As String, phkResult As Long) As Long
Private Declare Function RegDeleteValue Lib "advapi32.dll" Alias "RegDeleteValueA" (ByVal hKey As Long, ByVal lpValueName As String) As Long
Private Declare Function RegCloseKey Lib "advapi32.dll" (ByVal hKey As Long) As Long
Const KEY_ALL_ACCESS = &HF3F 'Full access permission
Const HCU = &H80000001
Const subky = "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
Dim handle As Long
Dim rval As Long
Dim result As Long

Rate Hides all the Desktop Items (2(2 Vote))
Hides all the Desktop Items.bas

Hides all the Desktop Items Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters