473,396 Members | 1,913 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Need some Help

hi,
I am building a form that gets its data base from SQL data base . i have about 3 combo Boxes in this form that shows some data memebers . ok now the question ... if the user selects a value from any of these combo boxes i want to get the ID of that Value .. i mean : i have a course table contains course_id and the Course_name when the user selects the Course_Name from the combo box i want to retreive the ID of that course in to a new table named School_Course. ....

please any ideas . with sample code if possible .... plz.


Thank you all ... very much ;)
Feb 11 '07 #1
5 988
That depend on what version of Visual Basic you are doing this in.
Visual studio you can set the Value member and the display member in the properties screen of the combo box. If you have visual basic express (the new free version from Microsoft) it is extremely easy to set up you display and value members.

Let me know what version you have and I can see what I can do.
Feb 11 '07 #2
That depend on what version of Visual Basic you are doing this in.
Visual studio you can set the Value member and the display member in the properties screen of the combo box. If you have visual basic express (the new free version from Microsoft) it is extremely easy to set up you display and value members.

Let me know what version you have and I can see what I can do.


.. am using VB.NET .... 2003 .... Coonection mode. not wizard. .. SQL Server2000
Feb 11 '07 #3
hi,
set the datatextfield property to the name of the course
set the datavaluefield property to the id as shown below

ddlist.DataTextField = "coursename"
ddlist.DataValueField = "course_id"

to access the id use the following code

ddlist.SelectedItem.Value
using the above code only the course name is displayed and internally u get the course id

hope this helps u
Cheers!
Asha S :)
Feb 12 '07 #4
hi,
set the datatextfield property to the name of the course
set the datavaluefield property to the id as shown below

ddlist.DataTextField = "coursename"
ddlist.DataValueField = "course_id"

to access the id use the following code

ddlist.SelectedItem.Value
using the above code only the course name is displayed and internally u get the course id

hope this helps u
Cheers!
Asha S :)

Thnx .. but as i said , i am using ComboBox not list box .. .. sorry , i didn't understand it .. have a look at my code :

' this sub to get the database from the SQL and fill it into the combo box.

Private Sub KG_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim cn As New SqlConnection
cn.ConnectionString = "Data Source=PC100-042295F4E;" & "Trusted_connection=yes;" & "initial Catalog=Client;"
Dim da As New SqlDataAdapter("SELECT course_name as NAME, course_id FROM Courses WHERE (course_category = 5)", cn)
Dim dt As New DataTable
loading = True
Try
da.Fill(dt)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

cmbKg.DataSource = dt
cmbKg.DisplayMember = ("NAME") 'how to display the full name ? '& " " & "Emp_Sname" & " " & "Emp_Fname")
cmbKg.ValueMember = "course_id"
loading = False
End Sub
' now my code to fill from the combo box into another table in the data bas as below :

Dim conn As New SqlConnection
Dim cmd As New SqlCommand
cmd.CommandText = "Insert into Clients_Tb (Course_id, .... values ( ??? here what shall i say !!?
Feb 12 '07 #5
hi,
try this code
'Retrieve the data into a DataSet:
Dim strSQL As String = "Select course_id,courseName From MyTable"
Dim Connection As New OleDbConnection("PROVIDER=....")
Dim DA As New OleDbDataAdapter(strSQL, Connection)
Dim DS As New DataSet
DA.Fill(DS, "couse")

'Create and populate the DataTable to bind to the ComboBox:
Dim dt As New DataTable
dt.Columns.Add("cousename", GetType(System.String))
dt.Columns.Add("couse_id", GetType(System.String))

' Populate the DataTable to bind to the Combobox.
Dim drDSRow As DataRow
Dim drNewRow As DataRow
For Each drDSRow In DS.Tables("couse").Rows()
drNewRow = dt.NewRow()
drNewRow("cousename") = drDSRow("cousename")
drNewRow("couse_id") = drDSRow("couse_id")
dt.Rows.Add(drNewRow)
Next

ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList

With ComboBox1
.DataSource = dt
.DisplayMember = "coursename"
.ValueMember = "course_id"
.SelectedIndex = 0
End With
'To select an item based on the "couse_id" or ValueMember property:
Dim conn As New SqlConnection
Dim cmd As New SqlCommand
cmd.CommandText = "Insert into Clients_Tb (Course_id, .... values ("& ComboBox1.ValueMember &"............

hope the above code gives u some idea
Feb 13 '07 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.