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

Managed C++/CLI

 
GeneralRe: Sleep() broken? Pin
2bee 12-Mar-06 23:45
2bee 12-Mar-06 23:45 
GeneralRe: Sleep() broken? Pin
Cedric Moonen12-Mar-06 23:57
Cedric Moonen12-Mar-06 23:57 
GeneralRe: Sleep() broken? Pin
theDawckta13-Mar-06 13:29
theDawckta13-Mar-06 13:29 
GeneralRe: Sleep() broken? Pin
Cedric Moonen13-Mar-06 19:57
Cedric Moonen13-Mar-06 19:57 
Question[OpenGL] Help needed!Listen to my problem please... Pin
carlsoncarlson10-Mar-06 16:45
carlsoncarlson10-Mar-06 16:45 
QuestionHandling Arrays inside the Structures in VC++ Pin
Sangeetha.R9-Mar-06 23:49
Sangeetha.R9-Mar-06 23:49 
AnswerRe: Handling Arrays inside the Structures in VC++ Pin
2bee 10-Mar-06 1:31
2bee 10-Mar-06 1:31 
QuestionC++ Console Applications Pin
Dreamspeeder9-Mar-06 22:36
Dreamspeeder9-Mar-06 22:36 
Can anyone point me to some reading material or examples that would allow me to change a simple test menu program like this:

<br />
#include <iostream><br />
using namespace std;<br />
<br />
void main()<br />
{<br />
	int iChoice;<br />
<br />
	cout << "Choose one... " << endl << endl;<br />
	cout << "1. First" << endl;<br />
	cout << "2. Second" << endl;<br />
	cout << "3. Third" << endl;<br />
	cout << "4. Fourth" << endl << endl;<br />
<br />
	cin >> iChoice;<br />
<br />
	switch (iChoice)<br />
	{<br />
		case 1:<br />
			if (iChoice == 1)<br />
				cout << "First" << endl;<br />
			break;<br />
		case 2:<br />
			if (iChoice == 2)<br />
				cout << "Second" << endl;<br />
			break;<br />
		case 3:<br />
			if (iChoice == 3)<br />
				cout << "Third" << endl;<br />
			break;<br />
		case 4:<br />
			if (iChoice == 4)<br />
				cout << "Fourth" << endl;<br />
			break;<br />
		default:<br />
			cout << "Not a valid choice." << endl;<br />
	}<br />
}<br />


into a console application that uses the up and down arrows to make a selection inside of the menu box instead of typing in "1" and then "Enter"? I would like to be able to open the program with the list of options inside of a colored box and output the result into another colored box.

-- modified at 4:36 Friday 10th March, 2006
AnswerRe: C++ Console Applications Pin
toxcct9-Mar-06 22:54
toxcct9-Mar-06 22:54 
GeneralRe: C++ Console Applications Pin
Dreamspeeder10-Mar-06 7:00
Dreamspeeder10-Mar-06 7:00 
GeneralRe: C++ Console Applications Pin
georgeraafat10-Mar-06 13:34
georgeraafat10-Mar-06 13:34 
GeneralRe: C++ Console Applications Pin
Saksida Bojan10-Mar-06 19:29
Saksida Bojan10-Mar-06 19:29 
Question.Net Remoting Memory Horror (IPC channel) Pin
2bee 9-Mar-06 20:28
2bee 9-Mar-06 20:28 
Question[Message Deleted] Pin
cusack9-Mar-06 17:48
cusack9-Mar-06 17:48 
AnswerRe: problem in tis few question !!! Pin
Cedric Moonen9-Mar-06 20:26
Cedric Moonen9-Mar-06 20:26 
GeneralRe: problem in tis few question !!! Pin
cusack10-Mar-06 18:42
cusack10-Mar-06 18:42 
AnswerRe: problem in tis few question !!! Pin
toxcct9-Mar-06 23:48
toxcct9-Mar-06 23:48 
GeneralV2.1 Pin
Trollslayer10-Mar-06 7:44
mentorTrollslayer10-Mar-06 7:44 
GeneralRe: V2.1 Pin
toxcct10-Mar-06 22:21
toxcct10-Mar-06 22:21 
AnswerRe: problem in tis few question !!! Pin
Professor Sharada Ulhas10-Mar-06 10:49
Professor Sharada Ulhas10-Mar-06 10:49 
GeneralRe: problem in tis few question !!! Pin
cusack10-Mar-06 18:47
cusack10-Mar-06 18:47 
GeneralRe: problem in tis few question !!! Pin
Saksida Bojan10-Mar-06 19:25
Saksida Bojan10-Mar-06 19:25 
Questionconst char __gc[] to const char [] Pin
Fu Manchu9-Mar-06 14:58
Fu Manchu9-Mar-06 14:58 
AnswerRe: const char __gc[] to const char [] Pin
Michael Dunn10-Mar-06 6:47
sitebuilderMichael Dunn10-Mar-06 6:47 
Questioncross-include two classes Pin
shaohao9-Mar-06 4:24
shaohao9-Mar-06 4:24 

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.