Click here to Skip to main content
15,891,253 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionsetting properties for mail Pin
Pardhu_M16-Jun-09 1:42
Pardhu_M16-Jun-09 1:42 
AnswerRe: setting properties for mail Pin
Stuart Dootson16-Jun-09 2:42
professionalStuart Dootson16-Jun-09 2:42 
Questionadd value to node.. Pin
p_196016-Jun-09 0:13
p_196016-Jun-09 0:13 
AnswerRe: add value to node.. Pin
CPallini16-Jun-09 0:25
mveCPallini16-Jun-09 0:25 
QuestionDisplaying Special symbols on the dialog window. Pin
aravind.sn15-Jun-09 23:34
aravind.sn15-Jun-09 23:34 
AnswerRe: Displaying Special symbols on the dialog window. Pin
Stuart Dootson15-Jun-09 23:54
professionalStuart Dootson15-Jun-09 23:54 
GeneralRe: Displaying Special symbols on the dialog window. Pin
aravind.sn16-Jun-09 0:01
aravind.sn16-Jun-09 0:01 
GeneralRe: Displaying Special symbols on the dialog window. Pin
Stuart Dootson16-Jun-09 0:06
professionalStuart Dootson16-Jun-09 0:06 
GeneralRe: Displaying Special symbols on the dialog window. Pin
aravind.sn16-Jun-09 2:32
aravind.sn16-Jun-09 2:32 
QuestionMSXML::IXMLDOMNodeListPtr Pin
p_196015-Jun-09 21:32
p_196015-Jun-09 21:32 
AnswerRe: MSXML::IXMLDOMNodeListPtr Pin
CPallini15-Jun-09 21:50
mveCPallini15-Jun-09 21:50 
AnswerRe: MSXML::IXMLDOMNodeListPtr Pin
Stuart Dootson15-Jun-09 22:38
professionalStuart Dootson15-Jun-09 22:38 
QuestionXmlnode value.. Pin
siva45515-Jun-09 21:19
siva45515-Jun-09 21:19 
AnswerRe: Xmlnode value.. Pin
CPallini15-Jun-09 22:04
mveCPallini15-Jun-09 22:04 
Questionhow to retive body of Lotus Notes mail. Pin
santhosh-padamatinti15-Jun-09 21:18
santhosh-padamatinti15-Jun-09 21:18 
AnswerRe: how to retive body of Lotus Notes mail. Pin
Pardhu_M16-Jun-09 1:48
Pardhu_M16-Jun-09 1:48 
GeneralRe: how to retive body of Lotus Notes mail. Pin
raghava56016-Jun-09 22:09
raghava56016-Jun-09 22:09 
Questionrequired equivalent VC++ MFC functions ordinal number Pin
Member 372149115-Jun-09 20:01
Member 372149115-Jun-09 20:01 
AnswerRe: required equivalent VC++ MFC functions ordinal number Pin
«_Superman_»15-Jun-09 20:14
professional«_Superman_»15-Jun-09 20:14 
QuestionReg. Error C2440 in visual studio 2008.... Pin
Rakesh515-Jun-09 19:44
Rakesh515-Jun-09 19:44 
AnswerRe: Reg. Error C2440 in visual studio 2008.... Pin
«_Superman_»15-Jun-09 19:51
professional«_Superman_»15-Jun-09 19:51 
AnswerRe: Reg. Error C2440 in visual studio 2008.... Pin
Stuart Dootson15-Jun-09 22:05
professionalStuart Dootson15-Jun-09 22:05 
QuestionPreTranslateMessage in ActiveX Control Class Pin
Nishad S15-Jun-09 19:43
Nishad S15-Jun-09 19:43 
QuestionFunction Call in C++ (Newbie question) Pin
Rajdeep.NET15-Jun-09 18:46
Rajdeep.NET15-Jun-09 18:46 
Hello friends,

I am new to this forum and this is my first question here. Actually, I am a .NET programmer. However, nowadays am a terrible fan of C++ since the language is machine+soft/hardware independent. I needed some help for function calling code, which I had written in C# and now am trying to convert it to C++ (note: Its not VC++, just C++, the code of which is compiled in Borland compiler or C-free and not Visual Studio)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        public void function01()
        {
            Console.WriteLine("Hi, I am function 01, now calling function 02"); // Prints message
            function02(); // calls function02
        }
        public void function02()
        {
            function01(); // calls function01
        }
        public static void Main()
        {
            Program p = new Program();
            p.function01();
        }
    }
}


Now, I need the C++ version of this. Can anybody in the forum please explain me the C++ code of this. I mean, implementing the function call concept in C++. I hope its aint that easy as is in the case of C#.

Hope to hear from you guys soon,
Happy Programming,
Rajdeep.NET Big Grin | :-D

Always ready to help (if possible, often I am a NooB!) and be helped!

AnswerRe: Function Call in C++ (Newbie question) Pin
«_Superman_»15-Jun-09 18:55
professional«_Superman_»15-Jun-09 18:55 

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.