Click here to Skip to main content
16,006,475 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionpicturebox with scrolling bar. Pin
cylix200016-Jan-06 21:54
cylix200016-Jan-06 21:54 
AnswerRe: picturebox with scrolling bar. Pin
Owner drawn17-Jan-06 0:54
Owner drawn17-Jan-06 0:54 
General[Solved] Pin
cylix200018-Jan-06 15:38
cylix200018-Jan-06 15:38 
QuestionArrays Declared as structure members cannot be Pin
The Chameleon16-Jan-06 18:14
The Chameleon16-Jan-06 18:14 
AnswerRe: Arrays Declared as structure members cannot be Pin
Joshua Quick16-Jan-06 21:52
Joshua Quick16-Jan-06 21:52 
GeneralRe: Arrays Declared as structure members cannot be Pin
The Chameleon16-Jan-06 22:00
The Chameleon16-Jan-06 22:00 
GeneralRe: Arrays Declared as structure members cannot be Pin
Joshua Quick17-Jan-06 7:39
Joshua Quick17-Jan-06 7:39 
AnswerRe: Arrays Declared as structure members cannot be Pin
Guffa16-Jan-06 21:58
Guffa16-Jan-06 21:58 
It's simply an error in the book.

The error message is completely correct. You can't create an array in the declaration of the structure, you have to create it in the constructor of the structure.

Declare the array as:

Dim EMail() as String

In the constructor of the struct, you create the actual array:

EMail = New String(10)

[With reservations for errors in the code, I normally program in C#]

---
b { font-weight: normal; }

GeneralRe: Arrays Declared as structure members cannot be Pin
The Chameleon16-Jan-06 22:05
The Chameleon16-Jan-06 22:05 
QuestionText Out Of Focus Pin
The Chameleon16-Jan-06 17:56
The Chameleon16-Jan-06 17:56 
AnswerRe: Text Out Of Focus Pin
Christian Graus16-Jan-06 18:02
protectorChristian Graus16-Jan-06 18:02 
GeneralRe: Text Out Of Focus Pin
The Chameleon16-Jan-06 18:35
The Chameleon16-Jan-06 18:35 
AnswerRe: Text Out Of Focus Pin
shiroamachi16-Jan-06 18:14
shiroamachi16-Jan-06 18:14 
GeneralThanks Pin
The Chameleon16-Jan-06 18:27
The Chameleon16-Jan-06 18:27 
GeneralRe: Text Out Of Focus Pin
The Chameleon16-Jan-06 18:37
The Chameleon16-Jan-06 18:37 
GeneralRe: Text Out Of Focus Pin
shiroamachi16-Jan-06 19:10
shiroamachi16-Jan-06 19:10 
GeneralRe: Text Out Of Focus Pin
The Chameleon16-Jan-06 19:34
The Chameleon16-Jan-06 19:34 
GeneralRe: Text Out Of Focus Pin
shiroamachi16-Jan-06 20:10
shiroamachi16-Jan-06 20:10 
QuestionImport Data Into Access Database from Excel Pin
shiroamachi16-Jan-06 17:55
shiroamachi16-Jan-06 17:55 
Questionaspnet_wp.exe cpu usage Pin
elcheah16-Jan-06 17:51
elcheah16-Jan-06 17:51 
AnswerRe: aspnet_wp.exe cpu usage Pin
Dave Kreskowiak17-Jan-06 5:13
mveDave Kreskowiak17-Jan-06 5:13 
QuestionHow to solve exception error below Pin
angelagke16-Jan-06 17:15
angelagke16-Jan-06 17:15 
AnswerRe: How to solve exception error below Pin
Christian Graus16-Jan-06 17:21
protectorChristian Graus16-Jan-06 17:21 
GeneralRe: How to solve exception error below Pin
angelagke16-Jan-06 19:15
angelagke16-Jan-06 19:15 
GeneralRe: How to solve exception error below Pin
Dave Kreskowiak17-Jan-06 5:12
mveDave Kreskowiak17-Jan-06 5:12 

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.