Keep Color That Is Picked From Dialog Once Form Closes Then Reopens?
Mar 30, 2009
I have this code . This works fine but I am not sure how I can save the changes of the color so when I reopen the form the color is what was picked before it was closed. [code]...
View 4 Replies
ADVERTISEMENT
Apr 11, 2010
A program I'm developing launches dialog boxes to get information from the user. Right now, the user can still click on and manipulate the main form while the dialog box is open. How can I make the main form inaccessible until the user closes the dialog box?
View 2 Replies
May 29, 2011
i have a login form, which sends u if login is correct to a main menu...the main menu has buttons leading to other forms. when clicking a button it hides the main menu and show the other form. but the problem is that when the main menu hides and other appears, the main menu reopens on its own and each time u close it, it opens again. here's the code :-
Public Class mainmenu
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
[Code]....
View 1 Replies
Nov 5, 2011
VS 2008 Remember Textbox Text when Form reopens
View 2 Replies
Jul 28, 2009
I'm writing an application in which a user can add, change and delete members from a list of members, and the adding and changing is done in a dialog box with some input fields.The problem is that when the user presses the OK button it should test whether some combobox is still empty, since this will otherwise return nothing and that will create an error somewhere else in the program. I do this within the OK_Button_Click event of the dialog box by testing whether the selectedItem is equal to nothing, if not it calls me.close, but if it is equal to nothing it displays a messagebox indicating that the user should still pick something from that combobox.Now the problem: when the OK button is clicked in the messagebox the dialog box also closes, even though the me.close isn't executed. [code]
View 2 Replies
Feb 16, 2011
I am trying to save the default color that the user changes via the dialog box on a form.
I have started the code as I thought below.
Private Sub btnColour_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnColour.Click
If ColorDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
[Code].....
View 2 Replies
Mar 6, 2012
I have a parent form and a few subforms. When the user clicks the red X to close the form I have a dialog box open that asks the user if he wants to exit the application. I have a issue when the user clicks no the application closes anyway. I am wondering what I am doing wrong. [Code]
View 8 Replies
Feb 15, 2012
I have a question of VB event handler and color picker. Now I have a label, and I want when user click it, it pops up a color picker dialog and let user to change the background color of the label. Not sure how to implement this, can anyone give me a direction?
View 2 Replies
Oct 20, 2011
I'm making a program when the user clicks the button it displays the number of rolls it took to get snake eyes ( 1 on each dice) I have randomized it and in the Do loop it calculates until it gets the right code. I just need some help with the code that will display in a listbox the results that didn't get picked for snake eyes.
Here is my
Public Class Form1
Dim num1 As Integer
Dim num2 As Integer
[CODE]...
View 4 Replies
Jan 15, 2009
I know that with some of the programs I use, when you click on an item to change it's color, the color dialog will actually show the current color and it's rgb value.
I'd like to do that in my application but can't find the answer on how you do it.
To change the backcolor on a textbox, the user double clicks the box and it shows the color dialog.
I think I have all the properties set right -- fully open to show custom colors etc.
BUT, it doesn't show the current color.
They all have 0 0 0 rgb.
View 5 Replies
Jul 24, 2011
Why isn't this working? The color dialog comes up, but when you choose a color and click 'OK', nothing changes.
Code:
Private Sub ColorBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ColorBtn.Click
Dim NewColor As New Color
[CODE]...
View 7 Replies
Jun 11, 2011
How can i use the color dialogue to return the color selected as a string? So if i was to select red i would like the return to be "Red" and so on so fourth.Another thing i would like to ask is if it is possible to return the color selected as a string in hex color code form (like what is used in HTML for example #FFFFFF, #000000 and so on so fourth).I have a feeling though that it can only be returned as R G B integers but maybe there is a way of converting these to hex color codes?
View 11 Replies
Dec 9, 2011
How can I select the color of my pen using the color dialog box?
I tried:
If ColorDialog1.ShowDialog() = Windows.Forms.DialogResult.OK
Then
Dim MyPen As New Pen(Color.ColorDialog1.Color, 1)
end if
but I get error:colordialog1 is not member of system.drawing.color
View 1 Replies
Dec 22, 2009
I often use the process of displaying a dialog from a form, with the dialog user input then used to update the main form without any problem. In a new scenerio I launch the main application screen, I then show a login dialog ontop of the main app screen and can launch another dialog from the login if a new user is required. The plan is to update the login dialog (updating a combobox to reflect the addition of a new user) from the new user dialog.
See code below :-
'Update login forms user list as new user added successfully
frmRoomBookingLogin.cboLogin.DataSource = Nothing
frmRoomBookingLogin.txtPassword.Text = "Updating password from dialog"
MessageBox.Show("The password text is " & frmRoomBookingLogin.txtPassword.Text)
[code]....
The messagebox implies the dialog has been updated yet the text does not change. Is it possible to update the dialog when using a setup such as Form -> dialog -> dialog? I'm intrigued as why the dialog does not reflect changes. I have never refreshed/repainted the dialog as never required to in my other examples when updating a form from a dialog and never encountered a problem when using a two tier form setup.
View 2 Replies
Apr 9, 2012
I have a small problem with sockets (I'm new to sockets). Below is the code I'm using. The problem is that when the client closes, the server closes aswell. How do I stop it from doing that?
[Code]...
View 1 Replies
May 26, 2012
I tried it every way I can think off, but nothing can stop it .
View 7 Replies
Jun 30, 2009
I am creating a button now when clicked, a color dialog control will show, is there anyway I can control where the dialog goes? i prefer it shows below the button. There seems to be no properties to specify position in colordialog.
View 1 Replies
Mar 2, 2011
im using color dialog for my project, how to set the color dialog only available to choose a major color like red yellow green blue?
View 3 Replies
Oct 28, 2009
I have been making a webbrowser for a while now, everything works well, except i am unable to make the 'open in a new window' button work right. So far i have managed to get a new instance of my form to open with the right url, but i am unable to keep that new form open when the orginal parent form closes.
Code:
Private Sub WebBrowser1_NewWindow(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles WebBrowser1.NewWindow
e.Cancel = True
Dim Href As String
[code]....
View 2 Replies
Feb 26, 2012
I am after some code to load another form when the user closes the current form. I have tried this
[Code]...
View 14 Replies
Jun 21, 2010
I'm simply trying to allow the user to change the ForeColor of some calculated totals that appear in Read-only text boxes using the Color Dialog box.[code]...
View 3 Replies
Aug 7, 2010
I'm making an HTML page writer and need to be able to add a background color with the color dialogue in vb
Here's my code:
Private Sub ColorsToolStripMenuItem_Click(ByVal sender
As System.Object,
ByVal e As System.EventArgs)
Handles ColorsToolStripMenuItem.Click
[Code].....
View 2 Replies
Aug 24, 2010
I have a small project that requires me to have a font dialog, a color dialog and a print dialog. It has four text boxes that are formatted based on the font from the dialog and the color from the other dialog. I am to print it all out with the same font and color. I have easily put the font in the right place and have the rest of the print set up, but the DrawString wants Brushes.<color> for it's color. How do I make it the same color as in the text boxes? I am not trying to get you to do my HW for me, but everything I see online is the brushes or shapes... if you could suggest something to look into that would be great, but I doubt my grade would be much affected by my printing everything with Brushes.Black like everyone else in the world seems to be doing...
View 2 Replies
Jun 6, 2011
i'm trying to only change the color of the selected text in a richtextbox using the color dialog.. this code changes all the text..
Dim dlgcolor As New ColorDialog
dlgcolor.Color = PictureBox4.BackColor
If dlgColor.ShowDialog() = DialogResult.OK Then
[code].....
View 1 Replies
Jan 23, 2010
when you login it is the meaning that another form opens. But as soon as the new form opens up everything closes. The code i used is this:
Public Class Form1
Public Goldhave As Integer
Public UserName2, Password As String
[Code].....
View 4 Replies
Jun 10, 2012
I have one form which stays open, and lots of other forms which can are opened and closed regularly how can i detect that a form has closed on the main form?
View 6 Replies
Feb 9, 2011
Iīm new here, so excuse me if this is the wrong area. I've already read about this in this forum, but it didnīt kill my doubts. I have an form, called AddInstrPadr, wich is created by the MdiParent:
[Code]...
View 9 Replies
Jun 22, 2010
When opening a button and opening a new form as soon as it opens it close for some reason but its not giving any errors as to why its doing this now I've checked the linked linking it to the next form that's fine.
Private Sub PrintPerscription_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Login.con.Open()
sql = "SELECT Patient.* FROM Patient where Patient.Wardno = " & Login.WardNo.ToString
da = New OleDb.OleDbDataAdapter(sql, Login.con)
noOfRows = da.Fill(dsPatient, "Patient")
[Code] .....
View 6 Replies
May 2, 2009
I have the following code so the user must confirm cancel action, however the form closes on both yes/no action.why the form does not remain active when the result = no?
Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click
Dim resultDialogue As System.Windows.Forms.DialogResult
resultDialogue = MessageBox.Show(
"Do you want to cancel the Add Worker function?", "Confirm Cancel", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
If resultDialogue = Windows.Forms.DialogResult.Yes Then
ClearDtls()
Me.Close()
End If
End Sub
View 8 Replies
Jun 13, 2009
i'm using exit sub when a certain condition does not meet. but the problem is that the form closes. it should not close the form, instead, it should only exit from a click event. I'm using VB2008Express Edition and MS Access at the back end.[code]
View 4 Replies