943,709 Members | Top Members by Rank

Ad:
  • VB.NET Discussion Thread
  • Unsolved
  • Views: 3598
  • VB.NET RSS
Feb 25th, 2009
0

combobox and textbox

Expand Post »
I have a sql table consisting of dept_name and dept_code.and on the form i have textbox for dept_code and combobox for dept_name.When i select a particular dept_name from the combobox i should get the corrosponding dept_code in the textbox.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
kritiohri is offline Offline
24 posts
since Nov 2008
Feb 25th, 2009
0

Re: combobox and textbox

Hi,

it should be easy;

show me your codes;

good luck;
Reputation Points: 10
Solved Threads: 1
Newbie Poster
Bandar.M.A is offline Offline
18 posts
since Feb 2009
Feb 25th, 2009
0

Re: combobox and textbox

I dont have the code .The combox contains the dept_names and i want the cprrosponding value that is the dept_no in the yextbox.iam able to save the values.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
kritiohri is offline Offline
24 posts
since Nov 2008
Feb 25th, 2009
0

Re: combobox and textbox

Ok

in Combobox event changeindex (or something like that)
try to send Sql statement with the value you get then
put the result in your textbox
Reputation Points: 10
Solved Threads: 1
Newbie Poster
Bandar.M.A is offline Offline
18 posts
since Feb 2009
Feb 25th, 2009
0

Re: combobox and textbox

use data binding.

There are many guides or examples on this, but i googled and this is the first result i got.

http://www.startvbdotnet.com/ado/Simplebinding.aspx
Reputation Points: 22
Solved Threads: 14
Junior Poster in Training
jbrock31 is offline Offline
73 posts
since Oct 2008
Feb 25th, 2009
0

Re: combobox and textbox

first is what field is your primary key? is it the dept_code or dept_name?

Quote ...
When i select a particular dept_name from the combobox i should get the corrosponding dept_code in the textbox.
Now, what you want is a little bit complicated WHEN your primary is the dept_code.

Why? because if your primary is dept_code then it is very possible that there will be the same department name but have different code. right? so ergo, if you are going to select a department name the department code to be return will be the first department code saved in the database, thus you are not sure that the department code you are looking is the correct one.

regards.
Reputation Points: 11
Solved Threads: 49
Posting Whiz
jireh is offline Offline
316 posts
since Jul 2007
Feb 27th, 2009
0

Re: combobox and textbox

Hello,
I am Not as good as all of you but i tried with this, and i am agree with jireh.

And After I try i am at following :-

First Declare Con as Connection
VB.NET Syntax (Toggle Plain Text)
  1. Private sub Combobox1_selectedindexchanged(byval sender As System.object, ByVal e as system.eventargs) Handles Combobox1.Selectedindexchanged
  2. '(declare con as connection)
  3. Dim Da as New OledbDataAdapter
  4. Dim Ds As New Dataset
  5. Dim Dt As DataTable
  6. Try
  7. Da=New OledbDataAdapter("Select * from Tablename where DeptName="& Combobox1.SelectedItem & "",Con)
  8. Da.fill(Ds, "TableName")
  9. Dt = Ds.Tables("TableName")
  10. Catch ex As Exception
  11. Messagebox.show(ex.Message)
  12. End Try
  13. Textbox1.Text = Dt.Rows.Item(0).Item(0)
  14. End sub
Reputation Points: 10
Solved Threads: 1
Newbie Poster
Praniya is offline Offline
3 posts
since Feb 2009

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in VB.NET Forum Timeline: Help in Crystal report
Next Thread in VB.NET Forum Timeline: E-mail a PDF file from MS Access 2003





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC