Click here to Skip to main content
15,891,828 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Calling Functions on Created Forms Pin
paas14-Jul-08 8:14
paas14-Jul-08 8:14 
AnswerRe: Calling Functions on Created Forms Pin
Steven J Jowett14-Jul-08 12:55
Steven J Jowett14-Jul-08 12:55 
QuestionMonitor resources using any tools with Visual Studios? Pin
Cory Kimble14-Jul-08 7:18
Cory Kimble14-Jul-08 7:18 
AnswerRe: Monitor resources using any tools with Visual Studios? Pin
Dave Kreskowiak14-Jul-08 15:10
mveDave Kreskowiak14-Jul-08 15:10 
QuestionCreate array of objects Pin
~Khatri Mitesh~14-Jul-08 0:54
~Khatri Mitesh~14-Jul-08 0:54 
AnswerRe: Create array of objects Pin
dan!sh 14-Jul-08 1:42
professional dan!sh 14-Jul-08 1:42 
RantRe: Create array of objects Pin
Paul Conrad14-Jul-08 7:05
professionalPaul Conrad14-Jul-08 7:05 
AnswerRe: Create array of objects Pin
Guffa14-Jul-08 7:45
Guffa14-Jul-08 7:45 
The form designer in the Visual Studio versions for .NET doesn't support control arrays.

There is basically two ways of getting the controls in an array:

1. Put the panels on the form as usual, then create an array that contains references to the panels:

Dim thePanelArray() As Panel = { Panel1, Panel2, Panel3 }

2. Declare the array, then create the panels in a loop an put them on the form:

Dim thePanelArray(2)<br />
For i = 0 to 2<br />
   Dim p As New Panel()<br />
   p.Location = New Point(10, 10 + i * 30)<br />
   thePanelArray(i) = p<br />
Next


Despite everything, the person most likely to be fooling you next is yourself.

GeneralRe: Create array of objects [modified] Pin
nishkarsh_k14-Jul-08 21:30
nishkarsh_k14-Jul-08 21:30 
AnswerRe: Create array of objects Pin
Mycroft Holmes14-Jul-08 17:44
professionalMycroft Holmes14-Jul-08 17:44 
QuestionPicture.... Pin
Jamal Abdul Nasir14-Jul-08 0:29
Jamal Abdul Nasir14-Jul-08 0:29 
AnswerRe: Picture.... Pin
~Khatri Mitesh~14-Jul-08 0:52
~Khatri Mitesh~14-Jul-08 0:52 
AnswerRe: Picture.... Pin
Rupesh Kumar Swami14-Jul-08 2:16
Rupesh Kumar Swami14-Jul-08 2:16 
GeneralRe: Picture.... Pin
wall_E18-Nov-08 22:57
wall_E18-Nov-08 22:57 
Questionhelp Pin
salam ellayan13-Jul-08 23:31
salam ellayan13-Jul-08 23:31 
AnswerRe: help Pin
Ashfield14-Jul-08 1:17
Ashfield14-Jul-08 1:17 
Questionhow i make my vb6 appliction compatible to Vista? [modified] Pin
r_mohd13-Jul-08 21:32
r_mohd13-Jul-08 21:32 
AnswerRe: how i make my vb6 appliction compatible to Vista? Pin
Vimalsoft(Pty) Ltd14-Jul-08 5:00
professionalVimalsoft(Pty) Ltd14-Jul-08 5:00 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
Mycroft Holmes14-Jul-08 17:49
professionalMycroft Holmes14-Jul-08 17:49 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
Vimalsoft(Pty) Ltd14-Jul-08 22:26
professionalVimalsoft(Pty) Ltd14-Jul-08 22:26 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
r_mohd14-Jul-08 21:16
r_mohd14-Jul-08 21:16 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
Vimalsoft(Pty) Ltd14-Jul-08 22:24
professionalVimalsoft(Pty) Ltd14-Jul-08 22:24 
QuestionWriting to a Mapped Network drive Pin
Stephen Lintott13-Jul-08 20:54
Stephen Lintott13-Jul-08 20:54 
AnswerRe: Writing to a Mapped Network drive Pin
Stephen Lintott13-Jul-08 21:25
Stephen Lintott13-Jul-08 21:25 
GeneralRe: Writing to a Mapped Network drive Pin
Dave Kreskowiak14-Jul-08 4:39
mveDave Kreskowiak14-Jul-08 4:39 

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.