Software Development Network Logo
  • Visual FoxPro
  • .NET Development
  • Windows Vista
  • Windows Forms
  • Game Technologies
  • Visual C++
  • Visual C#
  • Microsoft ISV
  • SQL Server
  • Visual Basic
  • Architecture
  • Smart Device
  • Windows Live
  • VS Team System
  • Visual Studio

Software Development Network >> Visual C++

Visual C++

New Question

Application does only start on PC with installed Visual Studio
std::exception dtor linker error
DateTimePicker Format changes from Time to Short Date
converting float to string and string to float
Automatic Manifest uses different CRT versions for Debug v. Release
Error running compiled program
ECMA C++/CLI and VC++ 2005
CString::Format issue
error lnk2028: unresolved token
branch hints

Top Answerers

DerekLakin
OICU812
John~
plavun
waynes world
Prashanth Desai
Michael007
mike bel
rSchild
___Michael___
Sourcecode in Thailand
Only Title

Answer Questions

  • Corinne Port in use!

    Hello, I am working with a database program(client-server) developed using visual studio.When i install the program and open the database, i get the error message "Port in use".But this is not the case when i run the program from the visual studio.In my code     m_server.ConnectTemplate(clsid, pDocTemplate, FALSE); Can anybody explain me, whether setting the parameter to TRUE could help in anyway I have very less experience wi ...Show All

  • ZigZak How can I avoid hardcoding using pragma comment?

    When I am compiling a class (Custom class) connecting oracle oci, I am getting this error error LNK2001: unresolved external symbol "int __cdecl OCIErrorGet(void *,unsigned int,unsigned char *,int *,unsigned char *,unsigned int,unsigned int)" In order to suppress that, I need to do #pragma comment(lib, "c:\\oracle\\ora92\\oci\\lib\\msvc\\oci.lib") If I do this, the error is gone. Is there any way to include this library in environment varia ...Show All

  • hussain hammad Ref Class Question

    Hello, I have a question regarding the way intellisense works with ref classes. I have a class like so: public ref class Man abstract sealed     {         public:                public ref class Size             {  &nb ...Show All

  • nhl66pens Add Event Handler Functionality

    When I'm designing menu interactions (similarly in dialogs) I like to define several related menu items in the resource editor, then right click on them to add their event handlers.  Frustratingly, the only option when doing this is to click the "Add and Edit" button, which not only adds the handler function but immediately leaves the resource editor and takes me to the newly added code.  This means that if I'm adding a dozen ...Show All

  • peter a Shortcut to switch between tabs in Visual Studio 2003

    Hi, is there any You mean between open dcouments Use Ctrl+Tab. Switchingbetween other windows with Tabs use Ctrl+PgUp/PgDn ...Show All

  • PrashanthHebbar VS2005 C++ project: linkage errors under MultiThreaded-DLL runtime lib', but compiles fine under Multithreaded-DEBUG dll ?!?

    Hi, I am in the process of moving our development to VS2005 from VS2003. One of our C++ projects now runs properly in debug mode, and in release mode when using the multithreaded-debug-dll runtime libs, but does is fails during linkage when in release more and using the multithreaded-(release)-dll [which it is supposed to]. - The project combines managed and unmanaged code. - The error repeats itself both in the original managed C++ syntax, and ...Show All

  • JVled circular reference in parent/child classes

    I have been trying to understand some code that another guy wrote, and though his code compiles and runs, it seems like it should never have compiled. He has 2 classes. One class is basically the parent, and it includes a pointer to the child it creates. As the child is being created, the parent passes the constructor a "this" pointer, so the child can later access variables in the parent. When I try to duplicate this logic, ...Show All

  • MadBison Get the list of current processes and its information

    I'm getting the list with the current processes running and looking at its information using the Process class on System::Diagnostics namespace. But with ProcessName, I only get the name of the process running. How can I get more information about it, like extension, path, the name of the application (instead of the executable name), the name of the manufacturer Are there any way to get the related process to a specific one Ex: In Photo ...Show All

  • Tom Harpel C++ email using CDO/Mapi in a NT Service

    Hi, I'm trying to get some Exchange Server email support inside a c++ Win32 NT Service. Using CDO as follows: #import <cdo.dll> no_namespace rename( "Folder" , "newFolder" ) rename( "GetMessage" , "newGetMessage" ) I do the usual CoInitializeEx(NULL,COINIT_MULTITHREADED); // email stuff.... CoUninitialize(); The problem is with the old email stuff when I get to Logon, namely... _SessionPtr pSession( "MAPI.Session" );  / ...Show All

  • JP Duplessis Basic DLL Problem, I hope...

    I just got VS Studio 2005 and upon running my first code for my homework I can't get it to compile and was hoping someone may know how to fix this without having to reinstall VS. Thanks in advance! 'HW5.exe': Loaded 'C:\Documents and Settings\charles gray\My Documents\Visual Studio 2005\Projects\HW5\HW5\Debug\HW5.exe', Binary was not built with debug information. 'HW5.exe': Loaded 'C:\WINDOWS\SYSTEM32\NTDLL.DLL', No symbols loaded. 'HW5.exe': L ...Show All

  • Kimse10 PostMessage & ON_MESSAGE(...)

    Hi. when I use form ON_MESSAGE(WM_USER+1,ShowInListBox) in my Code after 2 or 3 Second (Less or More) my Program does Hang! but If I delete ON_MESSAGE(WM_USER+1,ShowInListBox) my Thread work Properly. this my Code: //////////////////////////////////////////////////////////////////////////////////// ........... public: BOOL* GetContinue() {return m_bContinue;} void SetContinue(BOOL* bContinue) {m_bContinue=bContinue;} ... ..... voi ...Show All

  • Tiki_at_YB 3 Beginner Questions: Including DLL's, changing Language and Tutorials

    Hello! Can someone tell me, how i can change the real language of C++ I tried Tools->Options->International Options->Language: Same as Microsoft Windows(and i got a german Windows XP) but it hasen't changed anything, and the menus and so on are still english. My 2nd Question is: how to Include SDL or OpenGL And my 3rd Question: are there any good tutorials for starting programming with Visual C++ and those Windows forms I m ...Show All

  • kebabbert Visual C++ 6 Project with ASM module -> VS2003

    I have a project myself and a friend worked on in Visual C++ 6 some time ago. I am now trying to port this project to Visual C++ v7.1 as part of my move to Visual Studio.Net 2003. One of the module in the file is a .ASM file which was assembled using MASM 6.11 as a custom build. On attempting to assemble this project I am getting the following message: Performing Custom Build Step Microsoft (R) Macro Assembler Version 7.10.3077 Co ...Show All

  • Stuckish Visual C++ windows Application Executable file Crash

    I have a problem, i created a windows application in visual C++ with which i made an executable file and when i open the executable it crashes. Does anyone know how to solve this problem Lilly Compile your application under the debug configuration, and run by pressing F5. the Visual C++ debugger should take you to the source code line where the crash occurs. At that point, diagnose the bug and fix it. ...Show All

  • Ed Maia about " while ( cin >> string) "

    I am studing a famous book called "c++ Primer" by Stanley B.Lippman. and in it, there is a program as follows: #include <string> #include <iostream> #include <vector> using namespace std; void main () { string word; vector < string > text; while ( cin >> word) { text.push_back( word ); } cout << "words read are: \n"; for ( int ix = 0; ix < text.size(); ++ix) { cout ...Show All

757677787980818283848586878889909192

©2008 Software Development Network

powered by phorum