Hi,
ich würde gerne einen Wert aus einer INI-Datei auslesen. Die folgende Funktion hab ich mir von www.vb-tec.de geholt:
' ©2003 by Jost Schwider, http://vb-tec.de/
Public Function IniRead( _
ByRef Section As String, _
ByRef Key As String, _
Optional ByRef Default As String, _
Optional ByRef IniFile As String _
) As String
Dim s As String * 256
Dim n As Long
If Len(IniFile) Then
n = GetPrivateProfileStringA(Section, Key, Default, s, 255, IniFile)
Else
n = GetPrivateProfileStringA(Section, Key, Default, s, 255, IniPath)
End If
IniRead = Left$(s, n)
End Function
Mein Problem ist, dasss ich nicht weiß, wie ich diese Variable IniRead in einem Label anzeigen kann. Hoffe ihr könnt mir da helfen.
MfG,
Dino30002