
Ini-file, read write and empty lines.
I've made some code to read and write user settings in a ini file
There is no problem with that part
The ini looks something like this
[user1]
name=John
Tel= 03333-5566
[user2]
name=Karin
Tel= 03333-5567
I' use a form to creat and modify these settings
But now i want to creat a new user.
Every thing seems to work except for the empty line between the users.
the code to insert looks like this
Public Function SetMedewString(Section As String, Key As String, Content As
String) As String
System.PrivateProfileString(MedewProfFile, Section, Key) = Content
End Function
Emptyline = ""
Emptyline = SetMedewString(medewcode, Emptyline, Emptyline)
this how ever creats a '=' between the users (like it should)
how to solve this problem???
please respond or notify me by email.. because i'm not in the newsgroups all
the time.