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

Managed C++/CLI

 
AnswerRe: Running an executable through C++.Net code [modified] Pin
2bee 5-Jun-06 10:23
2bee 5-Jun-06 10:23 
GeneralRe: Running an executable through C++.Net code [modified] Pin
Bob X6-Jun-06 16:57
Bob X6-Jun-06 16:57 
AnswerRe: Running an executable through C++.Net code [modified] Pin
2bee 6-Jun-06 20:54
2bee 6-Jun-06 20:54 
GeneralRe: Running an executable through C++.Net code [modified] Pin
Bob X7-Jun-06 14:41
Bob X7-Jun-06 14:41 
Questioncalling function in unmanaged dll with paramter char** Pin
guestcat5-Jun-06 1:32
guestcat5-Jun-06 1:32 
QuestionC++/CLI and your experience Pin
vassilux@4-Jun-06 7:14
vassilux@4-Jun-06 7:14 
QuestionProblem with VC++ 2003 code Pin
fudicator3-Jun-06 16:21
fudicator3-Jun-06 16:21 
QuestionTemperature conversion Pin
klutez1232-Jun-06 3:28
klutez1232-Jun-06 3:28 
i need to make the conversions to its own function. i was told to use:
void convert_to_f()
void convert_to_c()
as function names.
please help, thank you

#include <iostream.h>

int main()
{
int temp, fahr, cel, f_out, yes, no, choice, c_out;

do
{
cout<<"Please choose one of the following conversions\n";
cout<<"1 - Celcius to Fahrenheit.\n";
cout<<"2 - Fahrenheit to Celcius.\n";
cout<<"Please select at this time: ";
cin>>temp;

switch(temp)
{ case 1:
cout<<"You choose Celcius to Fahrenheit.\n";
cout<<"Please enter the degrees in Celcius: ";
cin>>cel;
f_out = (cel * 1.8) + 32;
cout<<"The degrees converted into Fahrenheit is "<<f_out<<".";
break;

="" case="" 2:
="" cout<<"you="" choose="" fahrenheit="" to="" celcius.\n";
="" cout<<"please="" enter="" the="" degrees="" in="" fahrenheit:="" ";
="" cin="">>fahr;
c_out = (fahr - 32) / 1.8;
cout<<"The degrees converted into Celcius is "<<c_out<<".";
break;
="" default:
="" cout<<"invalid="" choice.";
="" }


="" cout<<"\nwould="" you="" like="" to="" recalculate="" another="" temperature?="" '1'="" for="" yes,="" '0'="" no:="" ";
="" cin="">>choice;
}
while(choice==1);






return 0;

}
AnswerRe: Temperature conversion Pin
Michael Dunn2-Jun-06 7:53
sitebuilderMichael Dunn2-Jun-06 7:53 
QuestionMixed Assembly for a wrapper class Pin
greggor31-May-06 11:39
greggor31-May-06 11:39 
QuestionAbout C++/CLI spec... Pin
Jun Du31-May-06 5:05
Jun Du31-May-06 5:05 
AnswerRe: About C++/CLI spec... Pin
Nemanja Trifunovic31-May-06 6:16
Nemanja Trifunovic31-May-06 6:16 
Questionmaking PictureBox component transparent Pin
9ine31-May-06 4:14
9ine31-May-06 4:14 
QuestionHow to place an edit box and dialog box on a window(SDI)in VC++ dot Net Pin
Ashutosh Bagaria30-May-06 8:00
Ashutosh Bagaria30-May-06 8:00 
QuestionThreading [modified] Pin
satsumatable30-May-06 1:36
satsumatable30-May-06 1:36 
AnswerRe: Threading [modified] Pin
2bee 30-May-06 2:31
2bee 30-May-06 2:31 
GeneralRe: Threading [modified] Pin
satsumatable30-May-06 2:38
satsumatable30-May-06 2:38 
GeneralRe: Threading [modified] Pin
George L. Jackson30-May-06 11:22
George L. Jackson30-May-06 11:22 
QuestionC++/CLI or Native Pin
Sarath C29-May-06 3:26
Sarath C29-May-06 3:26 
AnswerRe: C++/CLI or Native Pin
Milton Karimbekallil29-May-06 7:25
Milton Karimbekallil29-May-06 7:25 
QuestionUse Managed Pin
satsumatable29-May-06 2:07
satsumatable29-May-06 2:07 
AnswerRe: Use Managed Pin
Milton Karimbekallil29-May-06 7:18
Milton Karimbekallil29-May-06 7:18 
Questionhow to search a keyword in all files and folders in c++ [modified] Pin
B.L.MALYADA DEVI28-May-06 23:20
B.L.MALYADA DEVI28-May-06 23:20 
AnswerRe: how to search a keyword in all files and folders in c++ [modified] Pin
Milton Karimbekallil29-May-06 6:52
Milton Karimbekallil29-May-06 6:52 
Questionhow to concatenate 2 .wav files with different frequencies in c++ [modified] Pin
B.L.MALYADA DEVI28-May-06 23:17
B.L.MALYADA DEVI28-May-06 23:17 

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.