Click here to Skip to main content
15,914,386 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to speed up drop down of a combobox type column in a datagridview Pin
SekharOne12-Nov-07 22:52
SekharOne12-Nov-07 22:52 
AnswerRe: How to speed up drop down of a combobox type column in a datagridview Pin
Christian Graus12-Nov-07 23:40
protectorChristian Graus12-Nov-07 23:40 
GeneralRe: How to speed up drop down of a combobox type column in a datagridview Pin
SekharOne13-Nov-07 0:32
SekharOne13-Nov-07 0:32 
Questionnow a can read text file line by line but how to split it [modified] Pin
abdullah Hejory12-Nov-07 22:26
abdullah Hejory12-Nov-07 22:26 
AnswerRe: now a can read text file line by line but how to split it Pin
Christian Graus12-Nov-07 23:43
protectorChristian Graus12-Nov-07 23:43 
GeneralRe: now a can read text file line by line but how to split it Pin
abdullah Hejory13-Nov-07 0:22
abdullah Hejory13-Nov-07 0:22 
GeneralRe: now a can read text file line by line but how to split it Pin
Christian Graus13-Nov-07 0:24
protectorChristian Graus13-Nov-07 0:24 
GeneralRe: now a can read text file line by line but how to split it Pin
abdullah Hejory13-Nov-07 19:14
abdullah Hejory13-Nov-07 19:14 
QuestionDetecting a system shutdown from a windows service Pin
StephenBlack12-Nov-07 22:23
StephenBlack12-Nov-07 22:23 
AnswerRe: Detecting a system shutdown from a windows service Pin
StephenBlack12-Nov-07 22:42
StephenBlack12-Nov-07 22:42 
QuestionHow to Write Text in currently opened cmd window Pin
JothiMurugeswaran12-Nov-07 22:16
JothiMurugeswaran12-Nov-07 22:16 
Questionprinting directly from notepad Pin
briogene12-Nov-07 21:37
briogene12-Nov-07 21:37 
AnswerRe: printing directly from notepad Pin
Cameron Marsden12-Nov-07 21:52
Cameron Marsden12-Nov-07 21:52 
AnswerRe: printing directly from notepad Pin
AliAmjad12-Nov-07 21:55
AliAmjad12-Nov-07 21:55 
Questionhow to change language of system? Pin
birajendu12-Nov-07 21:22
birajendu12-Nov-07 21:22 
QuestionVPN connection in vb.net Pin
~V~12-Nov-07 20:06
~V~12-Nov-07 20:06 
AnswerRe: VPN connection in vb.net Pin
~V~13-Nov-07 20:39
~V~13-Nov-07 20:39 
QuestionEnumeration Pin
danasegaranea12-Nov-07 19:49
danasegaranea12-Nov-07 19:49 
AnswerRe: Enumeration Pin
Paul Conrad28-Nov-07 15:16
professionalPaul Conrad28-Nov-07 15:16 
QuestionInstaller issue vb2005 : Need urgent help Pin
nishkarsh_k12-Nov-07 19:19
nishkarsh_k12-Nov-07 19:19 
AnswerRe: Installer issue vb2005 : Need urgent help Pin
Christian Graus12-Nov-07 19:59
protectorChristian Graus12-Nov-07 19:59 
GeneralRe: Installer issue vb2005 : Need urgent help Pin
nishkarsh_k12-Nov-07 20:10
nishkarsh_k12-Nov-07 20:10 
QuestionCombobox Column In Datagridview [modified] Pin
~V~12-Nov-07 18:43
~V~12-Nov-07 18:43 
Laugh | :laugh: Hi all,
I am working in vb.net,In my application i want to display combobox in a column of datagridview so that the user can select a item of combo,so i used this code:-


 Me.DataGridView2.DataSource = Me.ds.Tables(0)<br />
<br />
        With DataGridView2<br />
<br />
            Dim cmbcol As New DataGridViewComboBoxColumn<br />
<br />
            With cmbcol<br />
                .DataPropertyName = "emp_id"<br />
                .HeaderText = "emp_name"<br />
                .Width = 80<br />
                .DataSource = ds.Tables(0)<br />
                .ValueMember = "emp_id"<br />
                .DisplayMember = "emp_name"<br />
            End With<br />
            .Columns.Add(cmbcol)<br />
        End With


But there are some problems

1> First of all i am using dataset binding and i want to display this combobox in second column but it is displayed at the end of all columns.Mad | :mad:

2>Second is selection of the item of combobox is not properly worked,i need to use emp_id when user select the name of employee in combobox of datagridviewMad | :mad:

Any idea would be appreciated heartly
Thanks with anticipationBlush | :O


-- modified at 1:40 Tuesday 13th November, 2007
AnswerRe: Combobox Column In Datagridview Pin
Paul Conrad28-Nov-07 15:14
professionalPaul Conrad28-Nov-07 15:14 
QuestionCAPTION Pin
PRIYA (P)12-Nov-07 18:30
PRIYA (P)12-Nov-07 18:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.