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

Managed C++/CLI

 
GeneralNon-unicode to Unicode Pin
ilkertanli9-Jun-04 19:25
ilkertanli9-Jun-04 19:25 
GeneralQuick and easy question Pin
Adam Durity9-Jun-04 9:29
Adam Durity9-Jun-04 9:29 
GeneralRe: Quick and easy question Pin
palbano9-Jun-04 16:08
palbano9-Jun-04 16:08 
GeneralConversion of Unmanaged COM in VC++ to Managed VC++ or C# Pin
imran1899-Jun-04 2:55
imran1899-Jun-04 2:55 
GeneralRe: Conversion of Unmanaged COM in VC++ to Managed VC++ or C# Pin
palbano9-Jun-04 5:49
palbano9-Jun-04 5:49 
Generalimage in a window Pin
nyquisttt8-Jun-04 22:15
nyquisttt8-Jun-04 22:15 
GeneralRe: image in a window Pin
palbano9-Jun-04 5:41
palbano9-Jun-04 5:41 
Generalfiles in c++ Pin
reddys8-Jun-04 22:06
reddys8-Jun-04 22:06 
i am creating one file "student.txt" with some fields, and i want to display that file with some fileds and one condition, how to?
-----------------
class student
{
char name[25];
char studentid[25];
chat city[25];
friend istream &operator>>(istream &stream, Student &st);
friend ostream &operator<<(ostream &stream, Student st);
};
ostream &operator<<(ostream &stream, Student st)
{
stream<<st.name <<"\n";
="" stream<<st.studentid="" stream<<st.city<<"\n";
="" return="" stream;
}
istream="" &operator="">>(istream &stream, Student &st)
{
stream>>st.name;
stream>>st.studentid;
stream>>st.city;
cout<<"/n";
return stream;
}
main()
{

Student stud;//student is class
fstream stu_file("Student.txt", ios::in | ios::out|ios::app);

cin>>stud;
stu_file << stud;// saveing in to the file
.........
stu_file.seekg(0, ios::beg);
while(!stu_file.eof())
{
if(!stu_file.eof())
if(stu_file.get(city) == "berlin" )
{
cout<<"Name"<
Generalproblems regarding embedded dlls... Pin
JRacle8-Jun-04 1:27
JRacle8-Jun-04 1:27 
GeneralUsing SetupAPI for installing Ramdrive driver Pin
mtaghiloo7-Jun-04 23:57
mtaghiloo7-Jun-04 23:57 
GeneralCan't compile homework Pin
MisNemesis7-Jun-04 14:55
professionalMisNemesis7-Jun-04 14:55 
GeneralRe: Can't compile homework Pin
Ravi Bhavnani8-Jun-04 10:49
professionalRavi Bhavnani8-Jun-04 10:49 
Generalstring Pin
nyquisttt7-Jun-04 7:13
nyquisttt7-Jun-04 7:13 
GeneralRe: string Pin
Ravi Bhavnani7-Jun-04 7:32
professionalRavi Bhavnani7-Jun-04 7:32 
GeneralRe: string Pin
Ni@m8-Jun-04 10:44
Ni@m8-Jun-04 10:44 
GeneralUsing C++ DLL (from .NET) in C# Pin
choged7-Jun-04 3:19
choged7-Jun-04 3:19 
GeneralRe: Using C++ DLL (from .NET) in C# Pin
eldrago15-Jun-04 0:02
eldrago15-Jun-04 0:02 
Generalcompile error?????helpppp meeee Pin
nthevu6-Jun-04 19:06
professionalnthevu6-Jun-04 19:06 
GeneralRe: compile error?????helpppp meeee Pin
Ni@m8-Jun-04 10:45
Ni@m8-Jun-04 10:45 
GeneralComposite and Builder Dessign Patterns Pin
Arun AC6-Jun-04 7:27
Arun AC6-Jun-04 7:27 
General#include of windows headers Pin
Julien Delezenne5-Jun-04 12:20
Julien Delezenne5-Jun-04 12:20 
GeneralRe: #include of windows headers Pin
palbano5-Jun-04 16:59
palbano5-Jun-04 16:59 
Generallinking managed dll to standard c++ Pin
Emiliano3-Jun-04 23:54
Emiliano3-Jun-04 23:54 
GeneralRe: linking managed dll to standard c++ Pin
cppmanuf25-Jun-04 17:54
cppmanuf25-Jun-04 17:54 
GeneralRe: linking managed dll to standard c++ Pin
Emiliano28-Jun-04 23:59
Emiliano28-Jun-04 23:59 

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.