in Education by
I'm working on this project and I required to allow the user to select a color from the color picker and then it changes into the current form's background, the code I used is: Dim cd As New ColorDialog() If cd.ShowDialog() = DialogResult.OK Then Me.BackColor = cd.Color End If This code works fine, but it only changes the current form background color, how will I make it so it changes the background colour of all the forms in the project eg Form 1,2 and 3 at the same time. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
I'd create a setting called BackColor. Do so by going to: Project -> Properties -> Settings. Then create the setting: Put the Name you'd like Type as String Scope as User Then in your code put this: Dim cd As New ColorDialog() If cd.ShowDialog() = DialogResult.OK Then Me.BackColor = cd.Color My.Settings.BackColor = cd.color My.Settings.Save() End If Then on each form load put this code: Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load Me.BackColor = My.Settings.BackColor My.Settings.Save() End Sub

Related questions

0 votes
    I was wondering if there is a way to compress my code using a loop, this is my code : ( ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I was wondering if there is a way to compress my code using a loop, this is my code : ( ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 4, 2022 in Education by JackTerrance
0 votes
    I know that this should be easy but how do I export/save a DataGridView to excel? JavaScript questions ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 16, 2022 in Education by JackTerrance
0 votes
    I am trying to nail down free space on a remote server by querying all the drives and then looping ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
0 votes
    I am writing down a simple schedule planner app using WinForms in Visual Basic .NET, and I have this ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 3, 2022 in Education by JackTerrance
0 votes
    I'm trying to add data into my Access database in Visual Basic, but I encount this error when I ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 26, 2022 in Education by JackTerrance
0 votes
    I'm trying to generate an 837P EDI file using EDIDev. I was able to generate 4 other 837P files ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 19, 2022 in Education by JackTerrance
0 votes
    I am trying to add some items to a TreeView Control: TV1.Nodes.Add("key1", "Test1") 'Works TV1. ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 28, 2022 in Education by JackTerrance
0 votes
    I'm writting a graph algorithm and I'm almost there... My algorithm stores several edge objects in ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    Greetings all, I'm trying to localize a .NET/C# project. I'm using string resource files and ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 12, 2022 in Education by JackTerrance
0 votes
    What is not true in context of HTML tag ? O Table cell changes its width automatically based on content O We can ... table border is o Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    (This is a random image of showing a Dialog found on the Internet.) I've been implementing a ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 19, 2022 in Education by JackTerrance
0 votes
    I am trying to display a DatePicker dialog on top of another activity and what is happening is it is ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 22, 2022 in Education by JackTerrance
0 votes
    Is it possible to change the background color of a radio button input in Firefox/Chrome like in IE? (Without using images) Run this in both IE(...
asked Feb 27, 2022 in Education by JackTerrance
0 votes
    is it possible to change the background color of job designer in Talend?...
asked Mar 16, 2021 in Technology by JackTerrance
...