VS 2010 Populate Textbox With Excel Data Based On Combobox Selection?

Nov 29, 2011

Visual Basic 2010 Express: I have a form with a combobox that is populated with the names of locations from a datagrid which in turn was imported at run-time (Form_Load) from an Excel database. The Excel database (and the datagrid) also stores the information for addresses and phone numbers for their respective locations.

What I would like to do is have the phone number and address text boxes automatically be updated with the proper corresponding data when the user selects a location from the combobox. Whether the text boxes are updated from the datagrid or Excel database is not a concern; I'm mainly looking for whichever way is simpler.

View 3 Replies


ADVERTISEMENT

Populate Textbox Based On ComboBox Selection Not Using Databinding

Apr 27, 2010

I have a form, frm1 w/a combobox, cboLocations, which is being populated using a sql string. There is also a frm2 w/a series of textboxes and other comboboxes. I want it so that once a selection is made from cboLocations, the textboxes and comboboxes on frm 2 are populated with the corresponding data. Here is what I have so far:

frm1:
Public Class frmLocations
Dim conn As New SqlConnection("Data Source=f03d3s-dev01; Initial Catalog=dos_track;User Id=vbuser; Password=tran3;")
Dim depot_refnbr As Integer
Private Sub frmLocation_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
conn.Open()
[Code] .....

What's happening right now is that I make a selection from cboLocations on frm1 and click on the OK button, frm2 loads, but none of the textboxes are populating and one of the comboboxes, cboDepot, shows the different data when you click on the down arrow, but it's not displaying anything it its text field when frm2 loads.

View 14 Replies

Populate Combox Based Upon Selection Of Another Combobox?

May 17, 2012

I'm new to programming and I'm using vb.net 2010 and I'm stuck with this problem. So here are the details, I have 2 tables in my database, a product table and a category table. In my product table I have product no, product description and category no. In the category table i have category no and category desciption. So this is where Ive been stuck for the entire day, I want my combox(product) to populate based on what is in the combobox(category). For example I have "Chair" in my combobox(category), then what would appear in the combobox(product) would be "sofas", "dining chair" etc.'the part below is where the program will read the category description from my database

Sub fillcomboDesc()
Dim fillcatDesc As MySqlCommand = New MySqlCommand("Select catDesc from category;", connection)

[code]....

View 2 Replies

Forms :: Populate Textboxes Based On Combobox Selection NOT Using Databinding?

Apr 27, 2010

how to go about this? I have a form, frm1 w/a combobox, cboLocations, which is being populated using a sql string. There is also a frm2 w/a series of textboxes and other comboboxes. I want it so that once a selection is made from cboLocations, the textboxes and comboboxes on frm 2 are populated with the corresponding data. Here is what I have so far:

frm1:
Public Class frmLocations
Dim conn As New SqlConnection("Data Source=f03d3s-dev01; Initial Catalog=dos_track;User Id=vbuser; Password=tran3;")
Dim depot_refnbr As Integer

[Code]...

What's happening right now is that I make a selection from cboLocations on frm1 and click on the OK button, frm2 loads, but none of the textboxes are populating and one of the comboboxes, cboDepot, shows the different data when you click on the down arrow, but it's not displaying anything it its text field when frm2 loads.

View 4 Replies

VS 2008 - Populate Master / Detail Datagridviews Based On A Combobox Selection?

Apr 14, 2009

I have a product table with ProductId,ProductName,ProductCode as fields. I've populated a combobox with productnames. Next I have two other tables called Result_Header and Result_Detail. The Result_Header table has ProductId as a foreign key and BatchNo,TestDate etc. The Result_Detail table has ResultId as a foreign key which is the ResultHeaders Primary Key and other fields such as Result,SpecHi etc. What I need is when I select a Product from my combobox my two datagridviews must be populated via the Result_header and Result_detail tables respectively.

View 20 Replies

Populate A Combobox Using Selection In Another From Excel Sheet?

Jan 30, 2012

I need to populate a combobox using the selected value in another combo. The coding that i use doesn't produce the required output. i have an excel sheet with columns called "BaseStation" & "SectorID". Combobox2 must display the related sector id with respect to the selected BaseStation[code]...

View 1 Replies

DB/Reporting :: Combobox - Get Data Based On The Selection

Jan 31, 2009

I have VS2005, Microsoft Access 2003

ComboA is binded to the Customerstbl and displays the CustomerNames. ComboB is Binded to the CustomerContactstbl for the selected customer above and displays all Contacts for that customer is a second cbobox.

I am having a hell of a time with this, When I select a customers name in ComboA, I want ComboB to automattically query the contacts in ComboB based on ComboA's selection. where do I create the query for getting the contacts for that customer?

In the Customer or Contacts tbl?

Is this something that would be better hard coding or is VS2005 that much improved that its ok to use these binding features?

View 1 Replies

DB/Reporting :: Show Values From Data-set To Text Box Based On Selection From Combobox List

Mar 18, 2008

How Do I show the values from the dataset to the text box based on the selection from the combobox list i already populated the combobox my code is. [code]

View 3 Replies

Have One Combo Box Populate Another Based On Selection?

Jun 22, 2010

I am currently stuck in one part of my application. I have two combo boxes that i am having the users select from. The first combo box is simply bound to a datatable. that is working properly. The second one i need to populate off another datatable after sorting out what the first one is requesting. Basically it's choosing a line number on the first box and then selecting the machine associated with that line number.[code]...

View 4 Replies

VS 2010 Populate Combobox Textbox From List

Jan 24, 2012

I have a form with a textbox that holds data relating to job priority. txtPriority.Text = "Low" or "High" I have an amend button on the form that when clicked displays a cmbPriority object with a list that has "Low" and "High" in the list. When I click the amend button I want to the cmbPriority.SelectedText to = whatever is in txtPriority.Text. The item in the field will always be in the list. I have my combo box set to cmbPriority.Dropdownliststyle = DropDownList.

View 7 Replies

Populate A Datagridview With A Selection From A Combobox?

Apr 9, 2012

How can i bind a comobox selection to a datagridview without writting code...

i Need to select an item from a combox and based on that item refresh the datagrdiview. I did something like that in Access but i don't know how to make it work in visual studio 2008.

once i select the datagridview itme that i want to edit i'd like to be able to update back to the database. I know i need to write code for this but at least i'll have the data refreshed on the datagridview.

View 3 Replies

Populate Combobox From Selection Of Another Combobox?

Jan 1, 2012

I currently have a form with two comboxes. The first cbo is being populated with a project number, which is being pulled from the first column of a spreadsheet. I now want the second cbo to read the first cbo and then find that project number on the spreadsheet; when it finds that project number, I then need it to copy data from the row the project number is on. I have converted to vb from vba. Below is the code I used in vba (which obviously does not work). I only need certain cells from the project row.

Dim proj_num, rng As Range
Dim data, i As Long, j As Long
With Sheet1

[code].....

View 20 Replies

Wpf - Populate ComboBox Based On Another ComboBox Using XAML?

Jul 29, 2011

I have two ComboBoxes

<ComboBox Name="cmbMake" DisplayMemberPath="MakeName" SelectedValuePath="MakeID"/>
<ComboBox Name="cmbModel" DisplayMemberPath="ModelName"/>

I use LINQ-to-Entities to populate the cmbGroup ComboBox

Dim db as myDataEntity
cmbGroup.ItemsSource = db.Makes

How do I populate my second ComboBox (cmbModels) based on the selection of the first ComboBox (cmbMake) using XAML so that whatever I select in the first ComboBox automatically filters the ItemsSource in the second ComboBox?

View 3 Replies

Forms :: Get Hidden Value / Tax From Combobox Based On Selection

Feb 17, 2010

I have a combobox populated from the DB with:

-ID
-State
-Tax

State is the only value that is shown.I'm trying to get the hidden value, Tax, from the combobox based on the selection but can't figure it out.

View 5 Replies

How To Generate Unique ID Based On Combobox Selection

Apr 9, 2009

how to generate unique ID based on combobox selection?

View 5 Replies

Populating Textboxes Based On Combobox Selection?

Jan 8, 2010

I'm trying to populate textboxes on one form based on a selection on a combobox on another form. All data will be pulling from the same SQL table. I've got the combox to work fine to show the correct data in one of the textboxes by using the lines:

Dim connectionString As String = "Data Source=F03D3S-DEV01; Initial Catalog=dos_track;" _
& "Integrated Security=True"

[Code].....

,but not sure how to get the other textboxes to fill with the correct data (from the same SQL table row) associated with the combobox selection. I've spent SO MUCH time on this trying to figure it out, but am getting nowhere fast...

View 4 Replies

Populate 2nd Combobox Based On 1st's?

Dec 13, 2010

How do i populate my state combobox,such that when i select the appropriate country my combobox will automatically display the appropriate state?

View 7 Replies

Populate Combobox Based On Value Other?

Aug 31, 2011

I have a combobox wich I want to populate based on the value of another combobox.[code

View 2 Replies

Grabbing Rows From A Dataset Based On Combobox Selection?

Jun 3, 2010

I am creating a program that will allow me to manage server EXE's for which I have the method to do so already completed. The problem comes when I want my front end to be able to use a database of different server configs stored in a dataset.

My Database has 4 columns (ServerID | ServerName | ServerPath | ServerMod)

I wish to be able to select the ServerName in a combo box (already done via Datasource/DataMember) and then load the ServerPATH and ServerMOD for that row into two variables.

View 1 Replies

Populating Textboxes Based On A Combobox Selection Using A Datareader?

Mar 26, 2012

I have a database with table "Customer" that will be the datasource for my form controls. My form has a combobox and various textboxes that need to change based on the selectedvalue in the combobox, cboCustNo. Firstly, I'm try to get the combobox to populate with the customer names on the table but have the value member of the combobox set to their customer numbers (just for ease of indexing). Based on the user's selection I'm trying to have various textboxes show the corresponding data (Address, City, Balance, etc.). The code I have so far is below:

Dim cnnDB As New Data.OleDb.OleDbConnection
Dim cmdSelect As New OleDb.OleDbCommand
Dim rdCustomer As OleDb.OleDbDataReader
Dim CustTable As New DataTable

[Code]....

View 3 Replies

DB/Reporting :: Dependent ComboBox Based On Selection In Major Category

Apr 3, 2009

I'm running into a little problem making one combo box dependent on the selection of another combo box. I'm using a access back-end to this project. I have two tables: MajorCategoryTbl and MinorCategoryTbl , MajorCategoryTbl has PK and description field, MinorCategoryTbl has a PK, MajorID (foreign key), and description field. I have two combo boxes on my form, one that displays the Major description, and one that displays the MinorCategoryTbl description, but the stored value is the PK for both. I want the selection of the minor category combobox to depend on what was selected in the major category combobox.

View 2 Replies

Populate Text Box Based On Value Selected On Combobox?

Sep 13, 2011

I have the following code which add items to a combobox in my form:

Public Class Contas_Bancarias Private Sub Contas_Bancarias_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim conn As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:BDadosBANKREC.accdb;Persist Security Info = False"

[Code]...

View 5 Replies

.net - Populate Textbox From SQL Query After Selection At Dropdownlist

Dec 31, 2011

May i have a working sample on how to retrieve records from a DB & populate the relevant textboxes after a selection at a dropdownlist. What i have is definitely not working & im working on VS 2008. Can anyone show me the way?

[Code]...

View 1 Replies

.net - Clean Way To Display/hide A Bunch Of Buttons Based On A ComboBox Selection?

Apr 14, 2010

I'm writing a standalone application in VB.NET using Visual Studio 2005. I want to display/hide a bunch of Buttons based on the selected value of a ComboBox. Each selection would have a different set of Buttons to display, and I'd like to have them arranged in a nice grid.

Driving a TabControl with the ComboBox value would be the kind of behavior I want, but I don't want it to look like a TabControl to the user because it might be confusing.Is there a way to do this?

Basically, I'd like Selection1 of the ComboBox to show Buttons 1-4, Selection2 to show Buttons 5-11, Selection3 to show (maybe) Buttons 1, 3, 5, 6, and 8, etc., have them arranged nicely, and have the GUI show only the ComboBox and the buttons.

View 3 Replies

Populate Data From Tbl To Txt Depending On Ddl Selection?

Jul 14, 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.

The code adder is not working so I had to add it manually.

Protected
Sub ddlCustomers_SelectedIndexChanged(ByVal
sender As

[code]....

View 5 Replies

Populate A GridView With Query Based On TextBox.text?

Aug 15, 2011

I have a form which populates a TextBox I want to use the textBox.text to then load a gridView with the results

[code]...

View 13 Replies

Selecting Data In One DataGridView Based On Selection In Another?

Oct 5, 2009

NB: I'm using Visual Basic.NET?My form has 2 DataGridView controls. One of these is bound to a DataSet, the other isn't visible - at least not until the user selects a uniqueidentifier cell in the 1st grid.When the user makes this selection, the 2nd grid will become visible and display the row from another with the same id as the one selected in the 1st grid.So, basically, I want to dynamically display data in one grid based on user selection in another grid.My code looks like this so far...

Private Sub RulesGrid_CellClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles RulesGrid.CellClick
Try
FlagsGrid.Visible = True

[code]....

View 2 Replies

Filling Textbox Depending On Combobox Selection?

Feb 11, 2012

I have a form with a combobox and a textbox. The combobox is used to select a username and the textbox displays the staff No. I use the following code to populate the combobox.Private Sub DeleteUser_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load

[Code]...

View 3 Replies

Moving Cursor From Combobox To Textbox After Selection?

Jun 22, 2010

I have a VB form with 2 comboboxes and a textbox in which a user can type into.I would like my mouse cursor to move from my 2nd combobox selection directly over to the textbox that I have on a VB form.2nd comboboxe name: "CodeComboBox"Textbox name where I would like my cursor to move to after the selection:"USDOTNumtxt"I use the TextBoxName.Focus() in the SelectedIndexChanged but it doesn't function.

Here is my whole code:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles

[code].....

View 1 Replies

Combobox To Populate Textbox?

Apr 20, 2010

I am trying to display an ID which is a primary key in my table by selecting the corresponding name in my table. the names have been saved in a combo box and depending on the name selected the textbox will display that Id. the code I have so far only gets the names from sql server but doesnt show the corresponding id in the textbox. I have been searching and cant find anything similar to this.

this is the code for combobox. i placed it in the formload

[Code]...

View 11 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved