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

Visual Basic

 
GeneralRe: Data Access .net compact framework Pin
Arjun Marwaha26-Feb-08 22:40
Arjun Marwaha26-Feb-08 22:40 
Question.pst file Pin
mesho26-Feb-08 3:25
mesho26-Feb-08 3:25 
GeneralRe: .pst file Pin
parth.p26-Feb-08 5:59
parth.p26-Feb-08 5:59 
GeneralRe: .pst file Pin
mesho27-Feb-08 7:45
mesho27-Feb-08 7:45 
GeneralUnable to Create Subkey in registry Pin
Rupesh Kumar Swami26-Feb-08 3:20
Rupesh Kumar Swami26-Feb-08 3:20 
GeneralRe: Unable to Create Subkey in registry Pin
Dave Kreskowiak27-Feb-08 6:49
mveDave Kreskowiak27-Feb-08 6:49 
QuestionIs it possible to dynamically create Collections in VB6? Pin
suguimoto26-Feb-08 2:59
suguimoto26-Feb-08 2:59 
AnswerRe: Is it possible to dynamically create Collections in VB6? Pin
Thomas Krojer26-Feb-08 4:27
Thomas Krojer26-Feb-08 4:27 
yes.

Dim x(13) As New Collection

x(1).Add "1,1"
x(1).Add "1,2"
x(2).Add "2,1"
x(3).Add "3,1"

Debug.Print x(1).Item(1)
Debug.Print x(3).Item(1)

it´s also possible to do this dynamically:

Dim x() As New Collection

ReDim x(13)

x(1).Add "1,1"
x(1).Add "1,2"
x(2).Add "2,1"
x(3).Add "3,1"

ReDim Preserve x(17)

x(17).Add "17,1"

Debug.Print x(1).Item(1)
Debug.Print x(17).Item(1)
GeneralRe: Is it possible to dynamically create Collections in VB6? Pin
suguimoto26-Feb-08 8:04
suguimoto26-Feb-08 8:04 
AnswerRe: Is it possible to dynamically create Collections in VB6? Pin
parth.p26-Feb-08 6:11
parth.p26-Feb-08 6:11 
GeneralRe: Is it possible to dynamically create Collections in VB6? Pin
suguimoto26-Feb-08 8:00
suguimoto26-Feb-08 8:00 
Generaldatagridview problem Pin
soniasan26-Feb-08 1:13
soniasan26-Feb-08 1:13 
GeneralRe: datagridview problem Pin
Kschuler26-Feb-08 5:47
Kschuler26-Feb-08 5:47 
Questionstartup form issue Pin
Tauseef A25-Feb-08 21:35
Tauseef A25-Feb-08 21:35 
GeneralRe: startup form issue Pin
Christian Graus25-Feb-08 21:53
protectorChristian Graus25-Feb-08 21:53 
GeneralRe: startup form issue Pin
Kschuler26-Feb-08 5:49
Kschuler26-Feb-08 5:49 
GeneralDisplaying StopWatch Pin
Ahmad Rifai Yusuf25-Feb-08 18:23
Ahmad Rifai Yusuf25-Feb-08 18:23 
GeneralRe: Displaying StopWatch Pin
N a v a n e e t h25-Feb-08 18:37
N a v a n e e t h25-Feb-08 18:37 
QuestionHow to Get the contents of a column of a list view Pin
AAGTHosting25-Feb-08 14:09
AAGTHosting25-Feb-08 14:09 
AnswerRe: How to Get the contents of a column of a list view Pin
C1AllenS26-Feb-08 3:26
C1AllenS26-Feb-08 3:26 
GeneralRe: How to Get the contents of a column of a list view Pin
AAGTHosting26-Feb-08 15:55
AAGTHosting26-Feb-08 15:55 
GeneralRe: How to Get the contents of a column of a list view Pin
AAGTHosting26-Feb-08 16:28
AAGTHosting26-Feb-08 16:28 
QuestionExit a funcion/sub Pin
mitsroff25-Feb-08 8:49
mitsroff25-Feb-08 8:49 
GeneralRe: Exit a funcion/sub Pin
Kschuler25-Feb-08 9:04
Kschuler25-Feb-08 9:04 
GeneralRe: Exit a funcion/sub Pin
mitsroff25-Feb-08 9:49
mitsroff25-Feb-08 9:49 

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.