|
-
Jun 10th, 2001, 07:08 AM
#1
Thread Starter
Hyperactive Member
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
-
Jun 10th, 2001, 10:10 AM
#2
-
Jun 10th, 2001, 07:27 PM
#3
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
-
Jun 10th, 2001, 08:42 PM
#4
Addicted Member
Here is the class module I use for my IniFile (I found it on vb-world.net I don't know where exactly).
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|