checkboxes in the listview. I want to save the settings of the checkbox when I tick and untick them in the listview, e.g tick and untick the checkboxes and save the subitems text in the label text.So I can read the settings from the label and split it to read each text. how i can save the checkbox settings before I can read the subitems text when I click on the button?
I'm looking how to save the checked checkboxes in a treeview which contains a lot of folders and subfolders.Is it possible to save them in the application settings ?
I just wondered if you can or can't save arrays using the settings system object. There seems to be no way of entering it at designtime. It seems implied you cannot create new user settings.subobjects at runtime. I'm looking to find the easiest way to save a populated array of PictureBox's. If the only way is a self/custom made/managed .ini file then I need to know so i can start on that but I was hoping to use some of all this phaff in the new frameworks usefully.
i have created a user setting named 'setmeup' as string, scope = user, value = "magical meow meow!".in my code i access it and assign it a new value like this...my.settings.setmeup = "howdy cowboy!"my.settings.save()application.restart()when the application restarts, i expect the my.settings.setmeup = "howdy cowboy!" but when i check its contents its still "magical meow meow!".but when i use application.exit() instead of application.restart() and manually restart the program, my.settings.setmeup = "howdy cowboy!" which is correct.what must i do? i want to use application.restart() because i don't want the users to double-click the icon again to start the program. i want the program to restart automatically.
I have 2 Forms: (1. MainForm.vb and 2.Settings.vb). MainForm.vb is the Startup form and Settings.vb shows when the MainForm.vb loads. Settings.vb has a CheckBox that allows the user to check if they never want to see the form (Settings.vb) at startup again. When I check it and close the program, then restart the program the checkbox is unchecked. How do I get the program to remember the user selection of the checkbox? [code]Is this a "Writing to Registry" matter?
I set up some application settings for checkboxes on an app and then decided to remove them. When I set the Application Settings to (none) in the designer and restarted the app, the checkbox constantly checks and unchecks itself. I completely remade the app and removed the file that is used to store my.settings in the Local folder of the user's appdata profile. I also made sure to uncheck the "save my.settings" on shutdown.
I'm trying to save a collection of key/value settings in my application's "user settings" (they're column widths), but while I see no errors, when I run the code (in the IDE) my collection in "My.Settings" is always nothing at startup. I do a "My.Settings.Save" when the application exits, and barring the "serializers not found" errors in the IDE, no other errors occur. When I run my application as an exe, it behaves the same way..
It's just a login form that is supposed to save your connection settings, but it won't save my values; they revert to the previous values every time I run the program. Does the IDE just not save your settings, or am I doing something wrong?
Public Class frmLogin Private Sub cmdSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdSubmit.Click
My VB.Net project is connected with MS Access. Whenever input in VB, it will save in Access. I don't have any problem with textbox but I don't know what to do with checkbox and radiobutton.I want, when checkbox or radiobutton is checked in VB, it will checked also in Access.This is my code for textbox:
Dim con As New OleDb.OleDbConnection Dim ds As New DataSet Dim da As OleDb.OleDbDataAdapter Dim sql As String
[code]....
What should I change to make Access save checkbox and radiobutton?
I need a form width a checkbox "Don't show this again" for my winform, but how can i make this so when my Form1 loads it checks the state of the checkbox using the getsettings option?
How can is save the checkbox state to the registry? and how do i get the state?
If Form2.Checkbox.checked = Getsettings() Then Form2.showdialog Else Goto Skip End IF
It saves the settings to the registry, loads the preset settings, and if you want to uninstall the app, you can use the delete settings, which deletes the registry folder for you app.
Here's how: create a form, 1 textbox, 2 check boxes, 3 buttons named as (setbtn, getbtn, delbtn) '1 textbox, 2 check boxes, 3 buttons as setbtn, getbtn, delbtn Imports Microsoft.Win32 Public Class Form1 Dim reg As RegistryKey = Registry.LocalMachine.CreateSubKey("SoftwareMyApp", RegistryKeyPermissionCheck.ReadWriteSubTree) [Code] .....
I am trying to save a path to my settings, it just dont want to work.
Private Sub BulletPathButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BulletPathButton.Click Dim OpenFileDialog As New OpenFileDialog If OpenFileDialog.ShowDialog = Windows.Forms.DialogResult.OK Then
Apparently the system.collection.arraylist does not work since it is more of a list than anything else. Is there some sort of collection that will save my array as is so that it can be retained latter on application load?
I use a textbox AutoCompleteCustomSource to save recent entries within a textbox and obviously, then autocomplete them when the user enters a matching value. When the application is closed then re-opened these values are lost.
I believe I can save the values using My.Settings but I haven't been able to get it to work.
I created a setting 'AutoCompleteList' of type System.Windows.Forms.AutoCompleteStringCollection in the Project properties > Settings area.[code]...
What I am trying to do is serialize an object map and store it in My.Settings. There appears to be no data type that can be used in My.Settings that would hold a byte array other than a string. Therefore, I encoded the byte array from the serialization and turned it into an ASCII string, but it wasn't a true representation of the bytes, and the deserialization failed. Converting the bytes to an ASCII string apparently chops some of the bytes down to 7 bits, which hoses the conversion.
Before I get into anything too bizarre, I figured I might as well put the question here: Is there a way to stuff a byte array into My.Settings?
i know about the My.Settings but i need to know how to save all the settings in a .ini Text file for example I GOT A SOURCE :: BUT THE GET SETTINGS DOESN'T WORK || Save settings DOES work
lets say i have a checkedlistbox in my program and i want to save everything that is checked in an xml file so it will be checked again when i start up the program the next time, how can i do this ?
I want to save settings in my program as follows. I have an import button to open files. How can I make it so when I start up my program next time, they are already "imported" as a setting or something? *Note - I have not tryed anything as I do not have the slightest clue how.
I am working on a file explorer, and I want to save the view settings of each folder, like the icon size, font size, ect.. I was thinking of using an xml file to save these settings.