Advertisement
julioCCs

vb.net read and write .ini files

Oct 7th, 2015
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.46 KB | None | 0 0
  1. Private Declare Auto Function GetPrivateProfileString Lib "Kernel32" _
  2.         (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As StringBuilder, ByVal nSize As Integer, ByVal lpFileName As String) As Integer
  3.  
  4. Private Declare Auto Function WritePrivateProfileString Lib "Kernel32" _
  5.         (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpString As String, ByVal lpFileName As String) As Integer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement