Answer Questions
tpkx msoftconf
Hi, I am a relatively new c++ user. I have created a project in Visual C++ Express Ed. and in one of my c++ files, I have #include "msoftcon.h" However, the compiler cannot find the file. I searched my computer for a file with that name but nothing there. Could anyone please tell me how I can get my app to work TIA If the file is not on your machine then the compiler of course not find it. Make sure to have th ...Show All
Dan Miser VC++ Documentation refers to cli/c++ syntax as the "new c++ syntax"
"Visual C++ How to: Create a Windows Forms Application In .NET development, a Windows GUI .... applications in C++ use the .NET Framework classes and other .NET features with the new C++ syntax. For more information, see New C++ Language Features ." Don't want to be overly critical because I am impressed with the VC++8 compiler, ide and work done to increase compliance with C++ standards, but statements containing ...Show All
ykagoma I want to compile xerces-c as Com Object use VC6 & PSDK2003SP1
Google gives me this :- http://groups.google.com/group/microsoft.public.platformsdk.base/browse_frm/thread/686fb0df3fd296f2/7848941543f399ab vinson.zeng wrote: but,i catch compile error message: LINK : fatal error LNK1104: cannot open file "atlthunk.lib" Error executing link.exe. xerces-com.dll - 1 error(s), 0 warning(s) please,somebody help me,thanks! Your PSDK is too new ...Show All
Jason Lau VC++ 6.0 or .NET for DirectX Programming??
<Drunkalot@discussions.microsoft.com> wrote in message news:6b708d7a-91ad-447e-a652-4487fb2ce1d1@discussions.microsoft.com > I'll start programming with directX and need to know what's best... > > Is using Visual C++ 6.0 or the VC++.NET For DirectX programming specifically, I don't think you'll notice much difference. I would prefer VC.NET if only because VC6 is a 7 year old product an ...Show All
Murtuza39 Visual C++: serial communication and MFC
Where can I find a good example of serial communication in Visual C++ and MFC. Thanks for the help Martin. I know that MSCOMM can handle events, but will using HANDLE also handle events I have used HANDLE before but in C, I haven't tried it with C++. It wasn't as in depth as much either. i am providing some links that would be helfull for the answer: learn win32API's http://ms ...Show All
Alexcl cannot debug "Hello world!"
Hi, I created a win32 console application starting with an empty project using Visual Studio 2005. I then added a cpp file and typed in the following code: #include <iostream> using namespace std; int main() { cout << "Hello world!\n"; return 0; } When I try to run the program by pressing "Start Debugging" (F5), a console window appears then I get a popup saying : " ...Show All
g.vollant new, non deprecated version of strcpy exists?
NTray.cpp(412) : warning C4996: 'strcpy' was declared deprecated Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy' Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.' What should I use instead thanks! As the warning message says: "Consi ...Show All
David Friesen VC++ hierarchy information
Like there is for java, is there any place where I can find all the hierarchy information for the classes in VC++ online Also, I was looking through the stream classes and I found that the order of include statements is as follows: (<fstream> and <iostream>) include <istream> includes <istream> includes <ios> I am learning C++ from Stan Lippman's book and it mentions that <fstream> actually inc ...Show All
P.J.Ganesh How to turn off Intellisense processing?
I'm using VSTS July 2005 CTP. I've found that on idle VSTS kicks in Intellisense processing, which often ends up hanging the IDE. I've looked through all options and can't find a place to turn that processing off. Thanks. HimanshuG, What language are you using Changing Intellisense options depends on the language. In general you can go to Tools->Options->Text Editor, find the language you want to custom ...Show All
cocohuang Console::WriteLine's in a GUI
Hey all, I have a nice gui visual studio app, and I've been using console::writeline to view output throughout my program. To be able to view this output, I open a DOS window and pipe my executable file to 'MORE'. Like this: # prog.exe | more This works ok, but 'more' only does a page at a time, so I have to keep hitting --Any Key to Continue--- Is there any other way to view console ouput (without running debug) ...Show All
adi151478 how
This is my first time using Microsoft Visual C++. I have written the coding down for the program. Now how do I use the program Pressing F5 will build the application ( turn what you typed into an executable program ) and start it. If your application does not contain any code to stop it running ( such as waiting for the keyboard ) then it may seem to run and end right away, as it may just run through without p ...Show All
Joe Gradecki Why is strdup() deprecated in VS 2005?
< hyslopc@discussions.microsoft.com > wrote in message news:9a93850c-505b-48c3-bd60-44625db8bbc6_WBRev2_@discussions..microsoft.com ... This post has been edited either by the author or a moderator in the Microsoft Forums: http://forums.microsoft.com You may not care about it, but I do. I don't want to disable the warning because I think the concerns with most of the deprecated functi ...Show All
Jon Davis SaveFileDialog
I am trying to make a SaveFileDialog, I've never made one before so I was trying to. I'm not sure where I'm going wrong, I know that theres streaming involved and stuff like that but I'm getting errors. Heres my code: #pragma once namespace Save { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::IO; using namespace ...Show All
JayneK From Console to Windows
Thank you for taking the time to read my question, which is actually more of a request. I just began learning C++ about a week ago and I understand the basics, being able to compile and run simple console applications. However, the gap between writing console applications and then writing Win32 apps in Visual C++ seems huge to me. The project I am working on requires a computer interface that will use either a parallel or serial port to se ...Show All
GEORGE62 Beta 2 error, Project : error PRJ0003 : Error spawning 'cmd.exe'.
Hi, I've just installed the new visual c++ beta 2, and I get this weird error when compiling a project. ------ Build started: Project: FindWeights, Configuration: Debug Win32 ------ Embedding manifest... Project : error PRJ0003 : Error spawning 'cmd.exe'. Build log was saved at " file://c:\My\Active\FindWeights\Debug\BuildLog.htm " FindWeights - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ===== ...Show All
