DataGridview combobox column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

have a problem working with comboxbox column with .net 2.0 (VB please)
tblEmp - EmpId, EmpName, EmpRef
tblrole - roleid, rolename
tbluserrole- empid,username,pwd,roleid

I need to create a datagidview which displays empname,username,pwd,rolename
This is ok.

But now when a user clicks on a new row, the empname and rolename columns
needs to be a combobox. The user selects the empname from the comboxbox,
assigns a username, pwd and selects the rolename from the second combobox
column.
On saving this record, the transaction would be entered in the tbluserrole.

Tried a number of help, but can't get to the solution.

is this possible? help in vb please.
 
Hi All,

have a problem working with comboxbox column with .net 2.0 (VB please)
tblEmp - EmpId, EmpName, EmpRef
tblrole - roleid, rolename
tbluserrole- empid,username,pwd,roleid

I need to create a datagidview which displays empname,username,pwd,rolename
This is ok.

But now when a user clicks on a new row, the empname and rolename columns
needs to be a combobox. The user selects the empname from the comboxbox,
assigns a username, pwd and selects the rolename from the second combobox
column.
On saving this record, the transaction would be entered in the tbluserrole.

Tried a number of help, but can't get to the solution.

is this possible? help in vb please.
You need to change the column type of those two columns to ComboBox.
When you do this you will have to populate them with the choices from
a query or some kind of list.


Otis Mukinfus
http://www.otismukinfus.com
http://www.tomchilders.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top