The visual-c++ tag has no wiki summary.
1
vote
0answers
35 views
How to initialize or load MCR to speed up the console application
I incorporated C++ shared library generated from MATLAB in a Win32 console application. The MATLAB program takes 2-3 sec to execute in MATLAB but the console application takes 11-12 seconds to ...
-1
votes
0answers
12 views
String^ manipulation involving .txt file in visual c++ 2010 [migrated]
I have a windows form SearchById and i have a class UserRecord(for storing credentials such as name,etc of users)(having instance obj) defined in UserRecord.h .
Now , when I click on Done button on ...
-3
votes
0answers
119 views
Visual C++ coding like a NINJA? [closed]
Please view this short youtube video:
http://www.youtube.com/watch?v=MeqRo6HvtUU
skip to 33 seconds
How to make that "auto-replace" feature in Microsoft's visual c++? So that when I type something ...
-2
votes
1answer
174 views
Passing data between two windows forms using visual c++ 2010 [closed]
So, i have a simple forms application : i have a form 1 (Form1.h) and a second form (Form2.h).
Form1 consists of a simple Add User button(which at this stage does nothing but opens the form2 and ...
2
votes
0answers
47 views
How to format complex number output with negative or zero values [migrated]
Please I need to write a program that takes two complex numbers from the user and output their difference. Complex numbers are those numbers in the form of a+bi, where a and b are real numbers known ...
0
votes
1answer
134 views
Text Classification Implementation
I've been trying to implement a text classification system. It needs to read a text file, and extract the words and the word frequency. So far, I've been planning to parse the words, put them in a ...
2
votes
1answer
139 views
How do I debug a cluster running Microsoft server 2003?
I'm sole developer of a complex critical software system, written in Visual C++ 2005.
It's deployed on a classical Microsoft cluster scenario (active/passive), that has Windows Server 2003 R2.
If a ...
1
vote
1answer
204 views
GDI low on memory
I am fresh to Visual C++. While moving forward in the book "Programming Windows with MFC", I came across GDI (Graphics Device Interface) and use of paint brush. The book says a brush cannot be created ...
2
votes
3answers
684 views
Can I make a good career with VC++ programming? [closed]
I'm addicted to VC++ since 2008, and I begin to work for my current company from 2011 when I graduated in Mathematics. Now I still love VC++, it is a wonderful programming language.
I'm a little ...
1
vote
1answer
434 views
const vs. readonly for a singleton
First off, I understand there are folk who oppose the use of singletons. I think it's an appropriate use in this case as it's constant state information, but I'm open to differing opinions / ...
2
votes
4answers
614 views
If you use MFC how did find it best to learn the concepts?
I'm currently working with C++ MFC applications in Visual Studio 2008. I have spent most of my time up to this point working with Java Swing development which seems to be not quite as involved as ...
7
votes
8answers
2k views
Is anyone doing “real” TDD with Visual-C++, and if yes, how do they do it?
Test Driven Development implies writing the test before the code and following a certain cycle:
Write Test
Check Test (run)
Write Production Code
Check Test (run)
Clean up Production Code
Check test ...
4
votes
2answers
237 views
Can a Code Review help in learning the code-flow and/or technology of a large code-base?
I'm new to VC++, and so am not very familiar with COM, ActiveX, IDL etc. When I mentioned this to my tech-lead, he assigned me the task of doing the code review of files he felt were important, in ...
17
votes
6answers
701 views
Aren't there compilers better at telling the programmer what's wrong in a code?
I have worked a little while with the Microsoft compiler from Visual C++ but I worked a long time with G++, and I remember often having bad times understanding what was wrong in my code with the ...
7
votes
3answers
539 views
Microsoft Terminology: .NET C++ vs. traditional C++
I've recently been working with a team that's using both .NET C++ and pre-.NET C++.
I fully understand the technical differences between the two technologies. However, I sometimes feel like I'm ...
