Click here to Skip to main content
16,008,175 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
QuestionCompiling Question Pin
bsaksida28-Dec-06 11:04
bsaksida28-Dec-06 11:04 
AnswerRe: Compiling Question Pin
Mark Salsbery28-Dec-06 11:36
Mark Salsbery28-Dec-06 11:36 
GeneralRe: Compiling Question [modified] Pin
bsaksida28-Dec-06 12:44
bsaksida28-Dec-06 12:44 
GeneralRe: Compiling Question Pin
Mark Salsbery28-Dec-06 12:55
Mark Salsbery28-Dec-06 12:55 
Questionhow can i append in LOG message in LOG file file by using Kellerman Software? Pin
Banks K28-Dec-06 1:22
Banks K28-Dec-06 1:22 
QuestionMissing Namespace or Class Pin
Herboren27-Dec-06 18:02
Herboren27-Dec-06 18:02 
GeneralRe: Missing Namespace or Class Pin
prasad_som27-Dec-06 18:56
prasad_som27-Dec-06 18:56 
GeneralRe: Missing Namespace or Class Pin
Herboren28-Dec-06 0:47
Herboren28-Dec-06 0:47 
<br />
// DevLdr.cpp : Defines the entry point for the console application.<br />
//<br />
<br />
#include "stdafx.h"<br />
<br />
using namespace Microsoft::Win32;<br />
<br />
int _tmain(int argc, _TCHAR* argv[])<br />
{<br />
<br />
	rkey = Registry.CurrentUser;<br />
	//The second parameter tells it to open the key as writable<br />
	rkey1 = rkey.OpenSubKey("Software",true);<br />
<br />
	// Now we create our sub key [assuming you have enough <br />
	// rights to edit this area of the registry]<br />
	RegistryKey rkey2 = rkey1.CreateSubKey("Tweety");<br />
<br />
	//Setting the various values is done using SetValue()<br />
	//I couldn't figure out how to set the value type yet <br />
	rkey2.SetValue("Name","Tweety");<br />
	rkey2.SetValue("Age",24);<br />
	rkey2.Close();<br />
	rkey1.Close();<br />
<br />
	return 0;<br />
}<br />



Error Log

Im still learning Cry | :((
AnswerRe: Missing Namespace or Class Pin
prasad_som28-Dec-06 1:04
prasad_som28-Dec-06 1:04 
GeneralRe: Missing Namespace or Class Pin
Herboren28-Dec-06 19:27
Herboren28-Dec-06 19:27 
AnswerRe: Missing Namespace or Class Pin
prasad_som28-Dec-06 19:35
prasad_som28-Dec-06 19:35 
QuestionNeed help. Pin
bsaksida26-Dec-06 21:57
bsaksida26-Dec-06 21:57 
AnswerRe: Need help. Pin
prasad_som26-Dec-06 22:23
prasad_som26-Dec-06 22:23 
GeneralRe: Need help. Pin
bsaksida26-Dec-06 22:37
bsaksida26-Dec-06 22:37 
AnswerRe: Need help. Pin
prasad_som26-Dec-06 22:51
prasad_som26-Dec-06 22:51 
GeneralRe: Need help. Pin
bsaksida27-Dec-06 0:18
bsaksida27-Dec-06 0:18 
GeneralRe: Need help. Pin
bsaksida27-Dec-06 0:28
bsaksida27-Dec-06 0:28 
GeneralRe: Need help. Pin
prasad_som27-Dec-06 0:34
prasad_som27-Dec-06 0:34 
QuestionAsking about "State Pattern in C++ Applications" Pin
Benang26-Dec-06 17:19
Benang26-Dec-06 17:19 
AnswerRe: Asking about "State Pattern in C++ Applications" Pin
Paul Conrad26-Dec-06 17:54
professionalPaul Conrad26-Dec-06 17:54 
GeneralRe: Asking about "State Pattern in C++ Applications" Pin
Benang26-Dec-06 19:27
Benang26-Dec-06 19:27 
GeneralRe: Asking about "State Pattern in C++ Applications" Pin
Paul Conrad27-Dec-06 15:16
professionalPaul Conrad27-Dec-06 15:16 
Questiondll into exe. Pin
bsaksida26-Dec-06 10:38
bsaksida26-Dec-06 10:38 
QuestionArray help. Pin
bsaksida26-Dec-06 1:29
bsaksida26-Dec-06 1:29 
AnswerRe: Array help. Pin
Dave Doknjas26-Dec-06 12:18
Dave Doknjas26-Dec-06 12:18 

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.