Click here to Skip to main content
15,914,111 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
QuestionCLI inheritance Pin
vibindia25-Jul-07 17:29
vibindia25-Jul-07 17:29 
AnswerRe: CLI inheritance Pin
Christian Graus25-Jul-07 17:34
protectorChristian Graus25-Jul-07 17:34 
AnswerRe: CLI inheritance Pin
led mike26-Jul-07 4:46
led mike26-Jul-07 4:46 
GeneralRe: CLI inheritance Pin
Mark Salsbery26-Jul-07 5:05
Mark Salsbery26-Jul-07 5:05 
QuestionArray of string Pin
abbd25-Jul-07 15:04
abbd25-Jul-07 15:04 
AnswerRe: Array of string Pin
Mark Salsbery25-Jul-07 15:20
Mark Salsbery25-Jul-07 15:20 
QuestionRe: Array of string Pin
abbd25-Jul-07 15:54
abbd25-Jul-07 15:54 
AnswerRe: Array of string Pin
Mark Salsbery25-Jul-07 16:11
Mark Salsbery25-Jul-07 16:11 
If a 2 dimension array works for you then all you need is
<br />
<code>array < String ^, 2 > ^ tab=gcnew array < String ^, 2 > (20, 200);<br />
<br />
That's 4000 Strings.

You can add a String something like:

<code>tab[0,0] = gcnew String("String at (0,0)");<br />
<br />
What are you trying to do with the other array?

Mark



Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

QuestionRe: Array of string Pin
abbd25-Jul-07 17:11
abbd25-Jul-07 17:11 
AnswerRe: Array of string Pin
Mark Salsbery25-Jul-07 17:15
Mark Salsbery25-Jul-07 17:15 
QuestionRe: Array of string Pin
abbd25-Jul-07 18:00
abbd25-Jul-07 18:00 
AnswerRe: Array of string Pin
Mark Salsbery25-Jul-07 18:38
Mark Salsbery25-Jul-07 18:38 
QuestionSimple dialog will not declare Pin
BuckBrown25-Jul-07 10:18
BuckBrown25-Jul-07 10:18 
AnswerRe: Simple dialog will not declare Pin
Mark Salsbery25-Jul-07 10:23
Mark Salsbery25-Jul-07 10:23 
GeneralRe: Simple dialog will not declare Pin
BuckBrown25-Jul-07 11:57
BuckBrown25-Jul-07 11:57 
GeneralRe: Simple dialog will not declare Pin
Mark Salsbery25-Jul-07 12:06
Mark Salsbery25-Jul-07 12:06 
GeneralRe: Simple dialog will not declare Pin
BuckBrown25-Jul-07 12:11
BuckBrown25-Jul-07 12:11 
QuestionWeird character in COM port list when compiled in Vista Pin
TheCat00725-Jul-07 6:26
TheCat00725-Jul-07 6:26 
AnswerRe: Weird character in COM port list when compiled in Vista Pin
Luc Pattyn25-Jul-07 8:14
sitebuilderLuc Pattyn25-Jul-07 8:14 
QuestionHaving problems with an array of objects Pin
BuckBrown24-Jul-07 7:27
BuckBrown24-Jul-07 7:27 
AnswerRe: Having problems with an array of objects Pin
BuckBrown24-Jul-07 7:31
BuckBrown24-Jul-07 7:31 
GeneralRe: Having problems with an array of objects Pin
BuckBrown24-Jul-07 7:33
BuckBrown24-Jul-07 7:33 
GeneralRe: Having problems with an array of objects Pin
Luc Pattyn24-Jul-07 7:57
sitebuilderLuc Pattyn24-Jul-07 7:57 
GeneralRe: Having problems with an array of objects Pin
BuckBrown24-Jul-07 9:45
BuckBrown24-Jul-07 9:45 
GeneralRe: Having problems with an array of objects Pin
Luc Pattyn24-Jul-07 11:52
sitebuilderLuc Pattyn24-Jul-07 11:52 

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.