Input wanted: 3rd Party Products
When it come to 3rd party products you use when developing applications, other than Visual Studio, what are the tools or libraries you use? This question is aimed at developers - not at those selling a...
View ArticleDll Application Error
===============Program=============== --->Main.cpp<--- Code: --------- #include "Dll_VitexMaths.h" #include void SimpleMaths(); int main() { /* Check For Memory Leaks */...
View Articleif/else statement
Attachment 34969 (http://forums.codeguru.com/attachment.php?attachmentid=34969)Attachment 34971 (http://forums.codeguru.com/attachment.php?attachmentid=34971) I'm a student and I have no clue what's...
View ArticleA few questions about my project
Hello all. I am new to C++ programming and using Microsoft Visual Studio as my IDE. My first problem is I am unable to find the "Win32" template under C++ in the Microsoft Visual Studio 2017 Community...
View ArticleProblem while retrieving Variant of Safearrays (from COM method)
I have a COM method that should return an array. The COM object has other methods which I can access and retrieve info from, but I'm having problems when trying to get the info inside that array. The...
View ArticleI need thread sychronization help
Skill Level: intermediate/novice C++ programmer OS: Windows 10 IDE: Visual Studio Community 2017 Hello. I don't know much about threaded programming, and I am trying to write a win32 program that uses...
View Article[RESOLVED] I need thread sychronization help
Skill Level: intermediate/novice C++ programmer OS: Windows 10 IDE: Visual Studio Community 2017 Hello. I don't know much about threaded programming, and I am trying to write a win32 program that uses...
View ArticleWinsock Problem!!
Hello guys, I'm not new to C++ , but recently I jumped over to Network programming and I'm testing some stuff out. I compiled both codes Client/Server and everything compiled just fine, but after...
View ArticlePassing some parameters from 64bit exe to 32bit dll?
The caveat is that it works, you can call over from 64bit exe to 32bit dll... I need to use a 32bit dll in that case is that I need to use that dll to hook a 32bit program. And now I want to supply...
View ArticleProgramming_Game_Memoryspiel_Problem
Hello, I am learning C++ with QT and have a problem for a task which requests to add an Button named "Schummeln" that opens for a certain time the not opened pictures. After then the pictures should...
View ArticleAdditional operation failed
Ok i'm new to this win32 api.So as my first app is a calculator.When i input first number on first editbox and second number on second editbox when i click calculate button it should do addition...
View ArticleGetDC(null) sanity check...Will this DC ever get released?
I'm running some legacy code that eventually fails on GetDC(null). It will return NULL with GetLastError() returning 0. The documention I've read says that the culprit is a GDI resource leak somewhere....
View Articleshipping calculator help
Here is the assignment Shipping Calculator: Global Courier Services will ship your package based on how much it weighs and how far you are sending the package. Packages above 50 pounds will not be...
View Article[RESOLVED] shipping calculator help
Here is the assignment Shipping Calculator: Global Courier Services will ship your package based on how much it weighs and how far you are sending the package. Packages above 50 pounds will not be...
View Articleint variable not working in if-else statement
Here is the code: else { if (month == 4 || month == 6 || month == 9 || month = 11) { if (day <= 30) { return true; } else { return false; Here is the error: (266): warning C4305: '=': truncation...
View ArticleKnow the direction of the navigation on a dialog
I´m developing an Application that I need to know if the user is going forward or backward on a dialog. For exemple: Supouse I have a dialog with ten edit boxes. The focus is on the 5th Edit. So the...
View ArticleNeed help with aterik loops
Basically I need to use loops to print the letters "T" "O" and "L". the program ask for a size and the letters. Any help would be appreciated. Code: --------- #include using namespace std; int main() {...
View ArticleFinding Filename of activated document
Hello, I have an MDI application which shows all the opened documents under the Window Menu. The user can switch the view from one document to another by just clicking on the document. How can I...
View Article[RESOLVED] Know the direction of the navigation on a dialog
I´m developing an Application that I need to know if the user is going forward or backward on a dialog. For exemple: Supouse I have a dialog with ten edit boxes. The focus is on the 5th Edit. So the...
View ArticleHow To Terminate a Running Code without exiting the program in MFC with...
Hi Everybody i am using visual Studio 2010 and i have a GUI. i have a button named "Calibrate". when i press this button, a process starts that it takes 30 seconds. sometimes in the middle of this...
View Article