Posts

Showing posts from June, 2008

Develoment with Visual C++

I was trying to write a simple dialog program with Visual C++ just to refresh my C++ knowledge and Windows Programming. C++ is the language that I truly wanted to master, but yet I don't really have any time to sit down and to use it to write program, not even in my work, where I'm using C# most of the time because it is easier and faster to develop a program with it. Yet, I still find that it's very fun to write a program with C++ because of all the extra procedures and rules that we need to follow. During the course of writing that simple program, I encountered 2 things that I need to note it down, otherwise I'd have forgotten about it again. 1 - Adding DDX (Data Exchange) member variable that associated with a control when developing the dialog box program What happened previously when I was learning to write a windows application with MFC from Ivor Horton's Beginning Visual C++, I learned about the usage of DDX member. Yet, over here, I couldn't get any v