Hello. Do anyone have a code for load info to textboxes and save to ini file.
like takes info from hello.ini file and when i load rhe program it will take the info to the texteboxes...
any idea ?
Printable View
Hello. Do anyone have a code for load info to textboxes and save to ini file.
like takes info from hello.ini file and when i load rhe program it will take the info to the texteboxes...
any idea ?
You can specify whichever extension you want when saving a file. You can save a file be using a StreamWriter and read it by using a StreamReader.
Works good but this code dosent work.
vb Code:
If CheckBox1.unchecked And CheckBox2.unchecked Then MsgBox("u most check 1 option", MsgBoxStyle.OkOnly, "Alert!!!!") End If
That should use true/false on the checked, like so:
Code:
If CheckBox1.checked = false And CheckBox2.checked = false Then
MsgBox("u most check 1 option", MsgBoxStyle.OkOnly, "Alert!!!!")
End If
yes yes i understand now :)