Different Button To Be Selected Depending On Which Control
Jun 19, 2012
What is the appropriate declaration such as "ValueChanged" or "Click" for a NumericUpDown that will execute the code when I press enter. I already know that setting the "AcceptButton" property of the main form to a default button will not work, especially if I want a different button to be selected depending on which control I give focus. How do I accomplish this?
PS: Is the syntax any different from Visual Basic 2010 Express than it is on Visual Studio 2012 RC (running in Visual Basic Mode)?
View 17 Replies
ADVERTISEMENT
Nov 6, 2009
I'm trying to play around with combo boxes and trying to figure out how to navigate to a certain url in webbrowser1 depending on the text selected in combobox1.
VB
Imports System.Windows.Forms
Imports System.Net
Imports System.IO
[Code].....
View 3 Replies
Jun 22, 2010
I have a web page where I am trying to populate the PSI # into the txtPSI depending on which customer is selected in ddlCustomers. I have written it a way it has worked on a past project and it compiles with no errors, however it doesn't work when it runs.
Protected Sub ddlCustomers_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles ddlCustomers.SelectedIndexChanged
'Populate PSI # in txtPSI based on Customer selected
[CODE]........
View 3 Replies
Jun 16, 2011
I have a few questions. I am not understanding on how to do it.The first question is:
1.When the user clicks the button the info from the controls on the left appears in the label on the right.
2.How to retrieve the selected dates from the calendar control when the user clicks the button?
View 9 Replies
Apr 8, 2010
Is there any examples with a treeview like this [URL] /scree...tinel-smod.png is it a case of having to draw each form how you would like to then hide/show the controls depending on what is selected in tree view????
View 14 Replies
Jan 18, 2012
I seem to be having issues with the selected index on a list box.
The list box is having various items inserted depending on the user selection. An example would be:
LiIndex = ListBox1.Items.Count
ListBox1.Items.Insert(LiIndex, "Item1")
LiIndex = ListBox1.Items.Count
ListBox1.Items.Insert(LiIndex, "AND")
[CODE]......................
This all work and displays without a problem. The issue I have is if I select the second of the two AND's. If I click the second "AND" in the list and then a button to fire a method, the selected index is always the index of the first "AND". Dim listIndex as integer = ListBox1.SelectedIndex
I can't work out why, the listbox itself will always show the second one as selected, but the action will happen against the first one.
View 2 Replies
Mar 29, 2010
I want to choose a value dynamically from comboBox depending of the values selected previously in two comboBoxes.the code that loads the comboBoxes:
Private Sub LightClassComboBox_DropDown(ByVal sender As Object, ByVal e As System.EventArgs) Handles AreaClasificationComboBox.DropDown
TrafficDensityComboBox.DropDown,.....
[code]....
The problem is that in the last Sub in the If sentence gives an error of: Null Reference Exception, because the compiler thinks that in that event the data are not loaded, although the data are loaded when loadcomboBoxes sub is executed.
View 1 Replies
Dec 29, 2011
When .Clear() is invoked, is the memory freed up that was allocated when all of the items were added? I need to load several lists of codes from a database depending on the import selected by the user. Each list of codes will be a List(Of String). My idea is that I will load only small strings into a List(Of String) along with a List(Of <class>) for the data I will be validating and manipulating. When I am done, I want all of the data from the Lists to be purged from memory. Will .Clear() take care of that or does the memory still remain allocated and have to be dumped by the OS once memory gets full? (And, incidentally, what causes the OS to decide which memory blocks to dump? FIFO concept?)
There are so many lists, I'm not sure if I just want them sitting in memory or not. Granted, the lists will just consist of a single string value for each code pulled from the database. So there won't be a ton of data, so maybe I could just load all the validation lists at the beginning of runtime and only worry about purging the data List since it will contain between 35-50 "fields" per record and there will be a couple thousand records each import that is run. I don't want my program to actually cause a hit in performance in the long run. I ultimately don't see a problem because I won't be running millions or even hundreds of thousands of records at once, but I just want to be sure.
View 10 Replies
Nov 16, 2009
Im currently trying to get button depending on what the background is to do something
EG:
if Button19.BackgroundImage = my.resources.play then
AxWindowsMediaPlayer1.Ctlcontrols.play()
This doesnt work, but is there any other method of doing this?
View 8 Replies
Oct 1, 2010
i have a class where are code the methode that i have to use in my form. i want to display on a button with a if statement a text value depending of the requirement are met. i put the code of the class here:
[Code]...
View 12 Replies
Jun 3, 2011
I have a Main form, called Main.vb, that is a Parent Form. I have another form called Notes.vb. Inside Main.vb I have a toolstrip with a button on it called Notes. I'm wanting to change the checked status of the Button to either True when the Notes.vb window is open inside the parent or to false when it is close. Is this possible?
View 6 Replies
May 3, 2012
how can I put this idea in code to say: if TheLastFormVisitedIsFormCustomers then
CurrentForm.myTextBox.Focus End If
In simple english. How can I retrieve the name of the last form visited in code and give focus to a textbox control depending on the last form visisted.
View 2 Replies
Sep 21, 2011
I have a TextBox that displays a color as its background color and the background color code in its text. I have set the text color as Black.The problem is that if the user sets the color as Black then the color code will be unreadable. How do I set the text color programmatically so that it becomes readable when the user selects any color?
View 1 Replies
Jun 15, 2010
I have a web page that I need to log in, the first page is not a problem I can log in as it only has the company name to enter, but from here is where I have problems, as when the first page is done, I am directed to a second page with two fields that has to be filled, filename and author, then depending on the action you have to click on in button,out,button delay button, here is where I need help, how do I fill the second page fields and how to chose the right button depending the action to take.
View 9 Replies
Dec 24, 2010
How can i make a control required to put input depending on the radiobuttonlist selection?
Let me try to clarify a bit more. I got 2 radiobuttons, if one gets selected, nothing else has to be done.
But if the otherone gets selected, a textfield must have some input too.
View 2 Replies
Aug 19, 2009
How to fill another combobox depending on the value selected from first combobox?
View 2 Replies
Aug 3, 2009
I am new to VB and seeking to create a visual basic program which controls the display of several on-screen elements depending on a single value input by a user. The user can enter anyone of 2500 values and depending on the value entered, five different display elements on the screen will change color or text. The program's response to a given input value never changes, in other words if the user enters 279, the five different display items will always be the same. However, there is no real pattern to the display items that would allow for programming an anticipated response to the input value.
My thinking is to create a large and ponderous "lookup table" in visual basic - I am assuming this an be done but perhaps there is a different or better method. I plan on creating the lookup file in Excel but was assuming I'd need to export it to something that VB could easily read. Any suggestions on the best way to do this? Does the lookup table reside as a separate .txt files someplace or something like that? [Code]
View 2 Replies
Jul 18, 2007
I've got a tab control and want to dynamically add tabs depending on the output from a database. I can easily add a new tab, however I want to inherit the controls and layout from the initial tab.
View 7 Replies
Jul 29, 2009
I'm trying to add functionality to my application that will disable buttons and checkboxes depending on what version the OS is when the app is launched. I made a test app to test this but unfortunately I can not get it to work. Here is my code:
'OS Check
Dim osValue As Object
osValue =
My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrent Version", "CurrentVersion", "5.2")
[Code]...
*Note - 5.2 is Windows 2003, 6.0 is Vista, 5.1 is Windows XP
View 1 Replies
Jan 5, 2012
I have a spreadsheet with this code:
'insert link
sheet1.Hyperlinks.Add(sheet1.Range("P1"), "http://http://www.vbforums.com", "")
the code of the button (ribbon)
[CODE]...
When I press the button, it connects to the web site. when the sheet1 is selected, it works, but when the sheet2 is selected, not works, why? the path is sheet1,What's wrong?
View 2 Replies
Apr 2, 2012
How can i play an audio that possibly mp3 or wav without let the user to select the file by using the open dialog box. i want the audio to play when the user press a key. for example user press key 1 then audio1.mp3 will be play.
View 1 Replies
Nov 22, 2009
I have a modified button control with a string array in it. I am having trouble sending the string array to the form with the modified button on it. Anyone know what i can do? The form uses a arrayList to hold the buttons since they are made at runtime.
View 4 Replies
Jan 16, 2010
I want to have my current row stand out as the current row by virtue of the background color.I also want my current cell stand out from the row color.
in other words i want to controll the background of the current cell as well as the current row, and have these colors different from each other as wel as the background from the non current cells.
I am getting confused with the notion of the current row vs the selected row.I have tried messing with the default row style.selectedbackgroungcolor as well as the same for the default cell style, but cant get it to work the way i want.
i can almost get it if i set the selection mode to full row, but then cannot get the current cell to have a different background color.
View 6 Replies
Mar 17, 2011
I have form which is having 3 buttons . vb.net08 I want to know which button is clicked ?? B`se i have treeview control .If i expand the treeview control based on the button selection i want to show the values on the Datagridview.
View 3 Replies
Sep 16, 2009
I have created a custom control that has a few labels and a button on it. In my main program i dyanmically add this control to a stackpanel. When i add the control i add a few events for it by doing th e following:
Dim newqueue As New UserControl1
AddHandler newqueue.MouseDoubleClick, AddressOf PrintMessage
How would i go about adding an event for the button.click for the button in the custom control?
View 11 Replies
Dec 20, 2011
I would like to recreate the behaviour of a button or command button on an user control. I need to layout a group of this user control on a form so user can select only one at a time. When users click on one of this user controls a selection frame is drawn to indicate that it has been selected. The problem I have is clearing the selection frame when other control is clicked on. How do buttons or command buttons do this? If you layout a group of buttons only one is highlighted. I have tried using different events like LostFocus and Leave and nothing seems to work.
View 3 Replies
Apr 19, 2011
I need to display a button when a textbox is being used.
View 1 Replies
Jun 8, 2011
Button is disabled until a radio button is selected.
View 6 Replies
Mar 23, 2010
Simple code, I have 3 radio buttons that change the color of the form. Thing is when I run it, my first radio button (red) is already selected. I know I can make a hidden button and focus it on that, but is there a way to just make it not have anything selected? I tried rdoRed.Checked = False Doesn't work.
[Code]...
View 5 Replies
Jan 6, 2009
If I have two radio buttons on the first form of the project, they are both uncheck by default. However, if I have two radio buttons on a form that I open with MyForm.ShowDialog(), the first radio button is checked! Is there a way to stop this?
View 4 Replies