Click here to Skip to main content
15,894,405 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionRe: ComboBox Probs???? [modified] Pin
mdrizwan_119-Aug-09 21:51
mdrizwan_119-Aug-09 21:51 
Question[Message Deleted] Pin
ganuhegde19-Aug-09 19:52
ganuhegde19-Aug-09 19:52 
AnswerRe: Cant move with mouse text box ,label etc in my vb form Pin
dan!sh 19-Aug-09 20:19
professional dan!sh 19-Aug-09 20:19 
AnswerRe: [Message Deleted] Pin
Luc Pattyn19-Aug-09 23:04
sitebuilderLuc Pattyn19-Aug-09 23:04 
QuestionHow to check Component(ocx) is already registerd or not? VB6 Pin
Kumaran21cen19-Aug-09 18:50
Kumaran21cen19-Aug-09 18:50 
AnswerRe: How to check Component(ocx) is already registerd or not? VB6 Pin
C#Coudou19-Aug-09 20:07
C#Coudou19-Aug-09 20:07 
QuestionDatagridviewcomboboxcolumn in visual basic Pin
C#Coudou19-Aug-09 18:43
C#Coudou19-Aug-09 18:43 
AnswerRe: Datagridviewcomboboxcolumn in visual basic Pin
Suresh Suthar19-Aug-09 20:31
professionalSuresh Suthar19-Aug-09 20:31 
Hi
This is the code I have used in one of my application. Hope this will help. Smile | :)
''ProductName column
 Dim ProductName As New DataGridViewComboBoxColumn
 With ProductName
     .DataPropertyName = "ProductName"
     .HeaderText = "Product Name"
     .Width = 200
     .DataSource = DtProductMaster
     .ValueMember = "prod_name"
     .DisplayMember = "prod_name"
     .DisplayStyle = DataGridViewComboBoxDisplayStyle.ComboBox
     .ToolTipText = "Select Product Name."
 End With
 dgv.Columns.Add(ProductName)

Instead of dgv.Columns.Add(ProductName) you can use Insert

If it works please let me know.. Smile | :)

Be an Eagle, Sky is Yours.

AnswerRe: Datagridviewcomboboxcolumn in visual basic Pin
dan!sh 19-Aug-09 20:34
professional dan!sh 19-Aug-09 20:34 
Questionmigration of vb6 to vb.net Pin
jefry2519-Aug-09 18:20
jefry2519-Aug-09 18:20 
AnswerRe: migration of vb6 to vb.net Pin
Christian Graus19-Aug-09 18:27
protectorChristian Graus19-Aug-09 18:27 
AnswerRe: migration of vb6 to vb.net Pin
Mycroft Holmes19-Aug-09 20:35
professionalMycroft Holmes19-Aug-09 20:35 
Questionneed tutorial online Pin
vblearner0919-Aug-09 17:23
vblearner0919-Aug-09 17:23 
AnswerRe: need tutorial online Pin
Christian Graus19-Aug-09 17:34
protectorChristian Graus19-Aug-09 17:34 
GeneralRe: need tutorial online Pin
vblearner0919-Aug-09 17:39
vblearner0919-Aug-09 17:39 
GeneralRe: need tutorial online Pin
Christian Graus19-Aug-09 18:25
protectorChristian Graus19-Aug-09 18:25 
AnswerRe: need tutorial online [modified] Pin
mustang8619-Aug-09 18:35
mustang8619-Aug-09 18:35 
GeneralRe: need tutorial online Pin
DaveAuld23-Aug-09 4:19
professionalDaveAuld23-Aug-09 4:19 
AnswerRe: need tutorial online [modified] Pin
mustang8619-Aug-09 18:58
mustang8619-Aug-09 18:58 
AnswerRe: need tutorial online Pin
Dave Kreskowiak20-Aug-09 2:10
mveDave Kreskowiak20-Aug-09 2:10 
QuestionHow to get data from multiple MSDE file from vb 2005 Pin
Mekong River19-Aug-09 15:59
Mekong River19-Aug-09 15:59 
AnswerRe: How to get data from multiple MSDE file from vb 2005 Pin
_Damian S_19-Aug-09 16:04
professional_Damian S_19-Aug-09 16:04 
AnswerRe: How to get data from multiple MSDE file from vb 2005 Pin
Dave Kreskowiak19-Aug-09 16:06
mveDave Kreskowiak19-Aug-09 16:06 
Questionusing HTTPS in Visual Basic 6 Pin
Sipder19-Aug-09 3:13
Sipder19-Aug-09 3:13 
QuestionPDFCreator problem Pin
Sipder19-Aug-09 3:08
Sipder19-Aug-09 3:08 

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.