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

Managed C++/CLI

 
QuestionReading the registry once and storing the values Pin
naveen_bij27-Feb-09 10:04
naveen_bij27-Feb-09 10:04 
QuestionRe: Reading the registry once and storing the values Pin
Mark Salsbery28-Feb-09 7:45
Mark Salsbery28-Feb-09 7:45 
AnswerRe: Reading the registry once and storing the values Pin
naveen_bij28-Feb-09 22:57
naveen_bij28-Feb-09 22:57 
GeneralRe: Reading the registry once and storing the values Pin
N a v a n e e t h1-Mar-09 13:27
N a v a n e e t h1-Mar-09 13:27 
GeneralRe: Reading the registry once and storing the values Pin
naveen_bij1-Mar-09 17:40
naveen_bij1-Mar-09 17:40 
GeneralRe: Reading the registry once and storing the values Pin
N a v a n e e t h1-Mar-09 20:59
N a v a n e e t h1-Mar-09 20:59 
GeneralRe: Reading the registry once and storing the values Pin
naveen_bij1-Mar-09 21:30
naveen_bij1-Mar-09 21:30 
GeneralRe: Reading the registry once and storing the values Pin
N a v a n e e t h1-Mar-09 21:57
N a v a n e e t h1-Mar-09 21:57 
naveen_bij wrote:
but how can i have an array of class and how to access a particular array element


Assume you have a class named Foo. Array of Foo can be created like
array<Foo^>^ fooArray = gcnew array<Foo^> {gcnew Foo(),gcnew Foo()};
You can use indexer to access the elements. Like
Foo^ first = fooArray[0];
naveen_bij wrote:
i am new to c++/cli i am not able to understand the code u have written, i had posted the code, can u please explain it in that terms.


Code which I have posted is trivial. You can easily understand it and merge it with your own code. Just add your properties to it and write code in LoadSetting method.

Smile | :)


GeneralRe: Reading the registry once and storing the values Pin
naveen_bij1-Mar-09 22:17
naveen_bij1-Mar-09 22:17 
QuestionAfter CLR conversion debugging is slow. Pin
KASR126-Feb-09 17:25
KASR126-Feb-09 17:25 
AnswerRe: After CLR conversion debugging is slow. Pin
Mark Salsbery27-Feb-09 6:24
Mark Salsbery27-Feb-09 6:24 
AnswerRe: After CLR conversion debugging is slow. Pin
Luc Pattyn27-Feb-09 7:02
sitebuilderLuc Pattyn27-Feb-09 7:02 
Questionifstream & ofstream manipulators equivalents in C++/CLI Pin
J_E_D_I26-Feb-09 1:19
J_E_D_I26-Feb-09 1:19 
AnswerRe: ifstream & ofstream manipulators equivalents in C++/CLI Pin
N a v a n e e t h26-Feb-09 3:42
N a v a n e e t h26-Feb-09 3:42 
GeneralRe: ifstream & ofstream manipulators equivalents in C++/CLI Pin
J_E_D_I27-Feb-09 10:03
J_E_D_I27-Feb-09 10:03 
GeneralRe: ifstream & ofstream manipulators equivalents in C++/CLI Pin
N a v a n e e t h1-Mar-09 13:25
N a v a n e e t h1-Mar-09 13:25 
QuestionWhen prefer to write managed C++ code ? Pin
Yanshof25-Feb-09 11:46
Yanshof25-Feb-09 11:46 
AnswerRe: When prefer to write managed C++ code ? Pin
Mark Salsbery25-Feb-09 14:30
Mark Salsbery25-Feb-09 14:30 
AnswerRe: When prefer to write managed C++ code ? Pin
N a v a n e e t h25-Feb-09 14:40
N a v a n e e t h25-Feb-09 14:40 
QuestionBoolean property causing crash Pin
Andy____________uk24-Feb-09 1:35
Andy____________uk24-Feb-09 1:35 
GeneralRe: Boolean property causing crash Pin
Luc Pattyn24-Feb-09 1:42
sitebuilderLuc Pattyn24-Feb-09 1:42 
GeneralRe: Boolean property causing crash Pin
Andy____________uk24-Feb-09 2:01
Andy____________uk24-Feb-09 2:01 
GeneralRe: Boolean property causing crash Pin
Luc Pattyn24-Feb-09 2:33
sitebuilderLuc Pattyn24-Feb-09 2:33 
GeneralRe: Boolean property causing crash Pin
Andy____________uk24-Feb-09 3:01
Andy____________uk24-Feb-09 3:01 
QuestionConverting int to string confusion Pin
TabascoSauce23-Feb-09 15:33
TabascoSauce23-Feb-09 15:33 

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.