Here is all I could find for Keys. I hope it helps.
VB Code:
'The GetPrivateProfileInt function retrieves an integer associated with a key in the specified
'section of an initialization file. Note This function is provided only for compatibility with
'16-bit Windows-based applications. Win32-based applications should store initialization
'information in the registry.
'Visit his site at [url]http://members.fortunecity.com/rbnwares1[/url]
Private Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long
Private Declare Function GetPrivateProfileInt Lib "kernel32" Alias "GetPrivateProfileIntA" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal nDefault As Long, ByVal lpFileName As String) As Long
Private Sub Form_Load()
'Sample for reading a numbers directly on the INI file
'Write a number 55 on the sample.ini to be read
WritePrivateProfileString "Sample", "Sample", "55", App.Path & "\sample.ini"
'Then, read the stored number
'No need to convert the value returned
MsgBox GetPrivateProfileInt("Sample", "Sample", 0, App.Path & "\sample.ini")
End Sub