Click here to Skip to main content
15,891,184 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: how to implement OOP in vb.net? Pin
Bert Mitton31-Aug-11 3:17
professionalBert Mitton31-Aug-11 3:17 
GeneralRe: how to implement OOP in vb.net? Pin
visualst2-Sep-11 0:33
visualst2-Sep-11 0:33 
QuestionRe: how to implement OOP in vb.net? Pin
Bert Mitton3-Sep-11 6:43
professionalBert Mitton3-Sep-11 6:43 
AnswerRe: how to implement OOP in vb.net? Pin
Abhinav S31-Aug-11 3:47
Abhinav S31-Aug-11 3:47 
GeneralRe: how to implement OOP in vb.net? Pin
visualst2-Sep-11 0:35
visualst2-Sep-11 0:35 
Questionwebste Pin
qaiser farooq29-Aug-11 12:38
qaiser farooq29-Aug-11 12:38 
QuestionListBox in vb.net Pin
rnel28-Aug-11 1:39
rnel28-Aug-11 1:39 
AnswerRe: ListBox in vb.net Pin
Abhinav S28-Aug-11 2:01
Abhinav S28-Aug-11 2:01 
One way to add values is to a add item by item.
E.g. listbox.Add("A");

You can add a range
E.g.
VB
Dim s1 As String = "A"
Dim s2 As String = "B"
Dim s3 As String = "C"
listbox.Items.AddRange(New String() {s1, s2, s3})

A third way is to bind a collection to the listbox.
For this, you will use the DataSource and the DisplayMember property.
E.g.
listbox.DataSource = ds
listbox.DisplayMember = "ColumnName"

Too much of heaven can bring you underground
Heaven can always turn around
Too much of heaven, our life is all hell bound
Heaven, the kill that makes no sound

AnswerRe: ListBox in vb.net Pin
DaveAuld29-Aug-11 5:43
professionalDaveAuld29-Aug-11 5:43 
AnswerRe: ListBox in vb.net Pin
Bert Mitton3-Sep-11 6:54
professionalBert Mitton3-Sep-11 6:54 
QuestionEntity Framework and transactions Pin
oraclepilot27-Aug-11 23:48
oraclepilot27-Aug-11 23:48 
QuestionADO.NET Entity Framework and cache Pin
oraclepilot25-Aug-11 7:38
oraclepilot25-Aug-11 7:38 
AnswerRe: ADO.NET Entity Framework and cache Pin
Not Active25-Aug-11 7:54
mentorNot Active25-Aug-11 7:54 
GeneralRe: ADO.NET Entity Framework and cache Pin
oraclepilot25-Aug-11 8:00
oraclepilot25-Aug-11 8:00 
GeneralRe: ADO.NET Entity Framework and cache Pin
Not Active25-Aug-11 8:35
mentorNot Active25-Aug-11 8:35 
GeneralRe: ADO.NET Entity Framework and cache Pin
oraclepilot25-Aug-11 8:44
oraclepilot25-Aug-11 8:44 
GeneralRe: ADO.NET Entity Framework and cache Pin
Not Active25-Aug-11 9:18
mentorNot Active25-Aug-11 9:18 
GeneralRe: ADO.NET Entity Framework and cache Pin
Dave Kreskowiak25-Aug-11 10:06
mveDave Kreskowiak25-Aug-11 10:06 
GeneralRe: ADO.NET Entity Framework and cache Pin
oraclepilot25-Aug-11 23:03
oraclepilot25-Aug-11 23:03 
GeneralRe: ADO.NET Entity Framework and cache Pin
oraclepilot1-Sep-11 10:38
oraclepilot1-Sep-11 10:38 
GeneralRe: ADO.NET Entity Framework and cache Pin
Not Active1-Sep-11 11:09
mentorNot Active1-Sep-11 11:09 
QuestionMajor pro/cons of ADO.NET entity framework compared to Java Pin
oraclepilot24-Aug-11 4:33
oraclepilot24-Aug-11 4:33 
AnswerRe: Major pro/cons of ADO.NET entity framework compared to Java Pin
Eddy Vluggen29-Aug-11 6:21
professionalEddy Vluggen29-Aug-11 6:21 
GeneralRe: Major pro/cons of ADO.NET entity framework compared to Java Pin
oraclepilot29-Aug-11 8:25
oraclepilot29-Aug-11 8:25 
GeneralRe: Major pro/cons of ADO.NET entity framework compared to Java Pin
Eddy Vluggen29-Aug-11 9:28
professionalEddy Vluggen29-Aug-11 9:28 

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.