Click here to Skip to main content
15,921,884 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: File Copy Problem Pin
A_Yakout31-May-04 22:41
A_Yakout31-May-04 22:41 
GeneralRe: File Copy Problem Pin
Dave Kreskowiak1-Jun-04 0:40
mveDave Kreskowiak1-Jun-04 0:40 
GeneralRe: File Copy Problem Pin
beowulfagate1-Jun-04 1:59
beowulfagate1-Jun-04 1:59 
GeneralRe: File Copy Problem Pin
Dave Kreskowiak1-Jun-04 2:27
mveDave Kreskowiak1-Jun-04 2:27 
GeneralRe: File Copy Problem Pin
beowulfagate1-Jun-04 13:54
beowulfagate1-Jun-04 13:54 
GeneralVB.NET DataGrid Pin
Arjun G31-May-04 13:38
Arjun G31-May-04 13:38 
GeneralArray of a class in VB.NET doesn't work Pin
arian_ashie31-May-04 12:57
arian_ashie31-May-04 12:57 
GeneralRe: Array of a class in VB.NET doesn't work Pin
Serge Lobko-Lobanovsky31-May-04 22:40
Serge Lobko-Lobanovsky31-May-04 22:40 
You need to instantiate every member of the array, like this

VB
Dim i as Integer<br />
<br />
for i=lbound(objP) to ubound(objP)<br />
  objP(i) = new Login<br />
next


Do you always need all the 255 Logins ? If not, I'd prefer using an ArrayList or a Collection.

VB
dim logins as New ArrayList()<br />
<br />
' every time I need to keep track of a new login<br />
logins.Add(new Login("Bla1", "Bla2"))


Regards,
Serge (Logic Software, Easy Projects .NET site)
GeneralWindows 2000 Problems Pin
nvmoss31-May-04 4:21
nvmoss31-May-04 4:21 
GeneralRe: Windows 2000 Problems Pin
Dave Kreskowiak31-May-04 6:50
mveDave Kreskowiak31-May-04 6:50 
GeneralRe: Windows 2000 Problems Pin
nvmoss31-May-04 10:10
nvmoss31-May-04 10:10 
GeneralRe: Windows 2000 Problems Pin
Dave Kreskowiak31-May-04 11:32
mveDave Kreskowiak31-May-04 11:32 
GeneralNeed your help Pin
ymohd_22231-May-04 3:14
ymohd_22231-May-04 3:14 
GeneralRe: Need your help Pin
Dave Kreskowiak31-May-04 6:49
mveDave Kreskowiak31-May-04 6:49 
GeneralNetwork Pin
jithen_dt31-May-04 2:10
jithen_dt31-May-04 2:10 
GeneralRe: Network Pin
Dave Kreskowiak31-May-04 6:48
mveDave Kreskowiak31-May-04 6:48 
GeneralWorking Days in a Year Pin
alhadav31-May-04 0:30
alhadav31-May-04 0:30 
GeneralRe: Working Days in a Year Pin
Colin Angus Mackay31-May-04 1:18
Colin Angus Mackay31-May-04 1:18 
GenerallpCurrentDirectory Pin
soul.ripper30-May-04 16:12
soul.ripper30-May-04 16:12 
GeneralRe: lpCurrentDirectory Pin
Dave Kreskowiak31-May-04 1:10
mveDave Kreskowiak31-May-04 1:10 
GeneralRe: lpCurrentDirectory Pin
soul.ripper31-May-04 2:27
soul.ripper31-May-04 2:27 
GeneralRe: lpCurrentDirectory Pin
Dave Kreskowiak31-May-04 6:39
mveDave Kreskowiak31-May-04 6:39 
GeneralRe: lpCurrentDirectory Pin
soul.ripper31-May-04 9:45
soul.ripper31-May-04 9:45 
GeneralRe: lpCurrentDirectory Pin
Dave Kreskowiak31-May-04 11:11
mveDave Kreskowiak31-May-04 11:11 
GeneralRe: lpCurrentDirectory Pin
soul.ripper31-May-04 11:43
soul.ripper31-May-04 11:43 

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.