Results 1 to 4 of 4

Thread: checking registry

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Aug 2000
    Location
    USA, Virginia
    Posts
    25

    checking registry

    hi, how do i check the registry for the application that is associated with a certain filename? for example: .mp3 will find winamp.exe or another media player.


    thanks.

  2. #2
    jim mcnamara
    Guest
    Use the FindExecutable - you have to use a complete file path, not just an extension.

    Sample code and discussion:

    http://www.mvps.org/vbnet/code/syste...executable.htm

  3. #3
    Megatron
    Guest
    Go into the HKEY_CLASSES_ROOT section of the registry, and retrieve the (default) value of the extension (in this case, it's .mp3). You'll get a value such as Winamp.File. Now open that folder, and retrieve the (default) value of a subfolder called DefaultIcon. (It's a subfolder of the Winamp.File).

  4. #4
    Megatron
    Guest
    Use the following code to access the registry.
    VB Code:
    1. Declare Function RegCloseKey Lib "advapi32.dll" (ByVal HKEY As Long) As Long
    2. Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String, phkResult As Long) As Long
    3. Declare Function RegDeleteKey Lib "advapi32.dll" Alias "RegDeleteKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String) As Long
    4. Declare Function RegDeleteValue Lib "advapi32.dll" Alias "RegDeleteValueA" (ByVal HKEY As Long, ByVal lpValueName As String) As Long
    5. Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String, phkResult As Long) As Long
    6. 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
    7. 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
    8. Public Const HKEY_CLASSES_ROOT = &H80000000
    9. Public Const HKEY_CURRENT_USER = &H80000001
    10. Public Const HKEY_LOCAL_MACHINE = &H80000002
    11. Public Const HKEY_USERS = &H80000003
    12. Public Const HKEY_PERFORMANCE_DATA = &H80000004
    13. Public Const REG_SZ = 1
    14.  
    15. Function RegQueryStringValue(ByVal HKEY As Long, ByVal strValueName As String)
    16.     Dim lResult As Long
    17.     Dim lValueType As Long
    18.     Dim strBuf As String
    19.     Dim lDataBufSize As Long
    20.    
    21.     On Error GoTo 0
    22.     lResult = RegQueryValueEx(HKEY, strValueName, 0&, lValueType, ByVal 0&, lDataBufSize)
    23.     If lResult = ERROR_SUCCESS Then
    24.         If lValueType = REG_SZ Then
    25.             strBuf = String(lDataBufSize, " ")
    26.             lResult = RegQueryValueEx(HKEY, strValueName, 0&, 0&, ByVal strBuf, lDataBufSize)
    27.             If lResult = ERROR_SUCCESS Then
    28.                 RegQueryStringValue = StripTerminator(strBuf)
    29.             End If
    30.         End If
    31.     End If
    32. End Function
    33.  
    34. Public Function GetSettingEx(HKEY As Long, sPath As String, sValue As String)
    35.     Dim KeyHand&
    36.     Dim datatype&
    37.     Call RegOpenKey(HKEY, sPath, KeyHand&)
    38.     GetSettingEx = RegQueryStringValue(KeyHand&, sValue)
    39.     Call RegCloseKey(KeyHand&)
    40. End Function
    41.  
    42. Function StripTerminator(ByVal strString As String) As String
    43.     Dim intZeroPos As Integer
    44.  
    45.     intZeroPos = InStr(strString, Chr$(0))
    46.     If intZeroPos > 0 Then
    47.         StripTerminator = Left$(strString, intZeroPos - 1)
    48.     Else
    49.         StripTerminator = strString
    50.     End If
    51. End Function
    52.  
    53. Public Sub SaveSettingEx(HKEY As Long, sPath As String, sValue As String, sData As String)
    54.     Dim KeyHand As Long
    55.     Call RegCreateKey(HKEY, sPath, KeyHand)
    56.     Call RegSetValueEx(KeyHand&, sValue, 0, REG_SZ, ByVal sData, Len(sData))
    57.     Call RegCloseKey(KeyHand&)
    58. End Sub
    59.  
    60.  
    61. 'Save a Value to the Registry
    62. SaveSettingEx HKEY_CURRENT_USER, "Software\Myapp", "Testing", "Hello"
    63.  
    64.  
    65. 'Get a value from the Registry
    66. Retval = GetSettingEx(HKEY_CURRENT_USER, "Software\Myapp", "Testing")
    67. Print Retval

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width