Click here to Skip to main content
16,004,227 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Error MSG box Pin
SavageZaing20-Sep-06 4:06
SavageZaing20-Sep-06 4:06 
GeneralRe: Error MSG box Pin
Coding C#20-Sep-06 4:32
Coding C#20-Sep-06 4:32 
GeneralRe: Error MSG box Pin
Christian Graus20-Sep-06 11:57
protectorChristian Graus20-Sep-06 11:57 
GeneralRe: Error MSG box Pin
SavageZaing21-Sep-06 0:58
SavageZaing21-Sep-06 0:58 
AnswerRe: Error MSG box Pin
Christian Graus20-Sep-06 11:55
protectorChristian Graus20-Sep-06 11:55 
Questioni need to open a word file which contain some formated text and images,tables Pin
Batchu Rajesh20-Sep-06 2:03
Batchu Rajesh20-Sep-06 2:03 
QuestionDataGridView Column Type Pin
Maira K20-Sep-06 1:59
Maira K20-Sep-06 1:59 
AnswerRe: DataGridView Column Type Pin
Dave Kreskowiak20-Sep-06 6:01
mveDave Kreskowiak20-Sep-06 6:01 
Once the column is created, you cannot change it's type. You have to remove the column(s), then create your own and add them to the Columns collection. It would probably be a good idea to create your own columns for each column you want to display:
    Private Sub SetupDGVAndBind()
        DataGridView1.Columns.Clear()
 
        Dim col As New DataGridViewTextBoxColumn
        col.HeaderText = "headerText"
        col.DataPropertyName = "columnName in table"
        DataGridView1.Columns.Add(col)
 
        DataGridView1.DataSource = myBindingSource
    End Sub



Dave Kreskowiak
Microsoft MVP - Visual Basic


QuestionTricky!! VB.NET counterpart of CLSIDFromProgID and CoCreateInstance Pin
Stephan Pilz20-Sep-06 1:55
Stephan Pilz20-Sep-06 1:55 
AnswerRe: Tricky!! VB.NET counterpart of CLSIDFromProgID and CoCreateInstance Pin
Dave Kreskowiak20-Sep-06 5:38
mveDave Kreskowiak20-Sep-06 5:38 
AnswerRe: Tricky!! VB.NET counterpart of CLSIDFromProgID and CoCreateInstance Pin
Stephan Pilz20-Sep-06 20:57
Stephan Pilz20-Sep-06 20:57 
GeneralRe: Tricky!! VB.NET counterpart of CLSIDFromProgID and CoCreateInstance Pin
Dave Kreskowiak21-Sep-06 3:24
mveDave Kreskowiak21-Sep-06 3:24 
Questioni convert my project in atm in vb.net but i am having error!! Pin
Brian Jay20-Sep-06 1:48
Brian Jay20-Sep-06 1:48 
AnswerRe: i convert my project in atm in vb.net but i am having error!! Pin
Dave Kreskowiak20-Sep-06 2:27
mveDave Kreskowiak20-Sep-06 2:27 
AnswerRe: i convert my project in atm in vb.net but i am having error!! Pin
Christian Graus20-Sep-06 11:59
protectorChristian Graus20-Sep-06 11:59 
QuestionPrinter + WMI + GetJob API Pin
K edar V20-Sep-06 0:41
K edar V20-Sep-06 0:41 
AnswerRe: Printer + WMI + GetJob API Pin
Dave Kreskowiak20-Sep-06 2:25
mveDave Kreskowiak20-Sep-06 2:25 
QuestionHelp wanted : Pascal Code to .NET (either VB or C#) conversion Pin
andreboom20-Sep-06 0:10
andreboom20-Sep-06 0:10 
AnswerRe: Help wanted : Pascal Code to .NET (either VB or C#) conversion Pin
Christian Graus20-Sep-06 0:20
protectorChristian Graus20-Sep-06 0:20 
GeneralRe: Help wanted : Pascal Code to .NET (either VB or C#) conversion Pin
Dave Kreskowiak20-Sep-06 2:21
mveDave Kreskowiak20-Sep-06 2:21 
AnswerRe: Help wanted : Pascal Code to .NET (either VB or C#) conversion Pin
Dave Kreskowiak20-Sep-06 2:24
mveDave Kreskowiak20-Sep-06 2:24 
Questionvb.net 2005 webbrowser proxy immediate update Pin
brandenbass19-Sep-06 23:51
brandenbass19-Sep-06 23:51 
AnswerRe: vb.net 2005 webbrowser proxy immediate update Pin
Dave Kreskowiak20-Sep-06 5:17
mveDave Kreskowiak20-Sep-06 5:17 
GeneralRe: vb.net 2005 webbrowser proxy immediate update Pin
brandenbass20-Sep-06 14:14
brandenbass20-Sep-06 14:14 
GeneralRe: vb.net 2005 webbrowser proxy immediate update Pin
Dave Kreskowiak20-Sep-06 16:31
mveDave Kreskowiak20-Sep-06 16:31 

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.