-
it aint working, this is the code im using
Code:
Private Sub Command1_Click()
'Call WriteINI("check.INI", "[options]", homepage.Value, "C:\My Coding Stuff\Web Browser\JafferConfig.INI")
End Sub
thats to write the info of HOMEPAGE into it
homepage is a text box, that you write in what the homepage shall be
im trying to get it inot the INI file under
[options]
homepage = whatever
-
I haven't read all the stuff abouve, but if you want a good
example how to use ini-files from vb-world, you can send me an
eMail.
All the best, Matt-D
:) ;)
-
Quote:
Originally posted by JafferAB
it aint working, this is the code im using
Code:
Private Sub Command1_Click()
'Call WriteINI("check.INI", "[options]", homepage.Value, "C:\My Coding Stuff\Web Browser\JafferConfig.INI")
End Sub
thats to write the info of HOMEPAGE into it
homepage is a text box, that you write in what the homepage shall be
im trying to get it inot the INI file under
[options]
homepage = whatever
Remove the brackets.
It should be:
Code:
Private Sub Command1_Click()
'Call WriteINI("check.INI", "options", homepage.Value, "C:\My Coding Stuff\Web Browser\JafferConfig.INI")
End Sub
-
Here is the class module I use for my IniFile (I found it on vb-world.net I don't know where exactly).