Software Development Network Logo
  • Smart Devicet
  • Visual C#
  • .NET Development
  • Game Technologies
  • Visual C++
  • Windows Forms
  • Audio and Video
  • Microsoft ISV
  • IE Development
  • Visual Basic
  • Visual Studio
  • Visual FoxPro
  • SQL Server
  • VS Team System
  • Windows Vista

Software Development Network >> Visual C++

Visual C++

New Question

Class / Member Class relationship
am new bee, What is wrong with the following function. compile no error. but its not working at all. bascially from a variable i
From Hex to c++
C3673: class does not have a copy-constructor
fatal error RC1107: invalid usage; use RC /? for Help
3rd party HTTP GET/POST class for MFC
Visual Studio fails to perform incremental builds
Regular expressions for VC6?
what is the difference between a fatal error and a "non-fatal" error?
Search for values of data in .ini file

Top Answerers

ALFKI
Bolugbe
shafiqm
sagan69
Mike Chapman
sajithpt
TrevorW
billqu
Gurpreet Singh Gill
ninam
sitemap
Only Title

Answer Questions

  • New-Bee unresolved external symbols

    id like to start off with i have no idea what i am doing i got this code from a winsock tutorial to give me a base structure for my program i am trying to connect to a pop3 server and check how many emails there are in an acount (irrelavant because i cant even get this to compile) anyway here is my code #include <windows.h> #include <winsock.h> #include <stdio.h> #define NETWORK_ERROR -1 #define NETWORK_OK 0 void ReportError( int , const char *); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszArgs, int nWinMode); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszArgs, int nWinMode) { WO ...Show All

  • Samoyed need a help regarding dwmapi.dll and DwmExtendFrameIntoClientArea function

    Dear All, My compiled code asking dwmapi.dll, which is nowhere to find on my windows XP box. using dependency walker, it reports that the "c:\windows\system32\urlmon.dll" is looking for this dll, and the function name is DwmExtendFrameIntoClientArea. I searched internet, and some people say that the IE7 is making this problem. and I am kind of agree, and I have it on my machine. So I need this dll badly, or somebody can give me a way to un-install IE7 quickly Thanks a lot. rcen Thats fine for yourself. The problem is this is propogating everywhere with Microsoft updates and needs to be corrected by Microsoft. I am not going to start delivering fake dlls to all of our company PCs by hand. ...Show All

  • Luis Esteban Valencia Mu&amp;#241;oz display video as wallpaper (Directshow)

    Hello! I display a webcam live stream (.asf) with DirectShow, but now i want to display it as wallpaper! Does anybody know what i have to do Maybe IID_IOverlay S. Monecke PS: Sry. My english isn't so good^^ Hello Re: display video as wallpaper (Directshow) Such questions are outside the scope of this forum - for the scope of the VC Language forum please look at: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=789657&SiteID=1 For such issues please use an appropriate newsgroup, potentially one at http://msdn.microsoft.com/newsgroups . OTP Thanks Damien ...Show All

  • glynnd Disapearing Colour window

    I am using VS8 with SP1 and when i try and edit an icon or bitmap resource the colour window/toolbox disapears after it has been clicked on e.g. selecting a colour. Once it has gone it is very dificult to get it to reapear. I have the window to normally dock and when I have managed to get it to float it still disapears. Any suggestions Reagards Robin That doesn't work as I think as far as VS2005 is concerned it is visible. the only way I can get it to repear is by clicking on another source window and re clicking on the window containing the graphic to be edited. you can right-click on the edit window and choose "show colors window" in the p ...Show All

  • GSK_phili Abstract class object

    i hav read in all books dat we cant create object of abstract classes.. . and reasons like they are too abstract to create an object.. .. i want to know more of these reasons why we cant create objects...... . . . . manish Nevermind about the memory stuff, I think the best answer is like what Marius indicated, the language designed to be so. Hi An abstract class is one that has atleast one pure virtual methods. Normally when an object of a class is created, the vtable is filled in with the address of the virtual methods, which is one of the reasons why an object for an abstract class cannot be created. Assuming that the related vtable entry is filled with null, this would cause a exceptio ...Show All

  • Becool Application not running on test machine despite providing redists

      I am encountering a strange error. I am trying to run an application in a test machine(VS2005 is NOT installed on it).I am getting error " This application has failed to start because the application configuration is incorrect  " The application was built in release mode. I am using MFC as a shared dll and The application folder includes redists -- mfcm80.dll;mfc80.dll;msvcm80.dll;msvcp80.dll;msvcr80.dll;Microsoft.VC80.MFC.manifest;Microsoft.VC80.CRT.manifest I am using functions from msi.lib in my applications. This  application runs fine on my machine (has VS2005 installed). Why is this happening   http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=398802&am ...Show All

  • CraigC How to make a compiler link with __CxxFrameHandler instead of __CxxFrameHandler3

    How to make a compiler link with __CxxFrameHandler instead of __CxxFrameHandler3. Is there is any option available. We are developing printer drivers for Vista Operating system, for the XPS print path, using PT/PC support. Problem: Though we could install the binaries on the Vista OS, we were not able to install the Vista binary set on a XP operating system. We have installed the .Net3.0 on XP Operating system. Issue: On investigation, we found that one of our DLL was referring to some functions like : * strcat_s, * _itow_s, * __CxxFrameHandler3, * _except_handler4_common The issue is that the above functions "are not" exported by MSVCRT.DLL available on XP SP2 OS. Build Setup: We are currently building the dll ...Show All

  • Umeshgopal C++ design capabilities

    I want to create software that allows the end-user to create multiple copies of their own buttons on a scanned map which buttons can be rotated 360 degrees and linked to a database. I thus need libraries of code for rotate and also zoom functionality that I can incorporate. Can I get this done with C++ or any of the other Visual Studio programs If not, what software do you recommend I'll check out this DirectX SDK. I understand that C++ is a programming language but I don't want to waste a lot of time trying to learn a programming language that ultimately won't get me to where I want to get to. Not being knowledgeable in what are contained in C++ libraries is the reason I was consulting those of you who ...Show All

  • AdrianWoods Text field question

    Hi Folks; I have a text field that gets its contents from a SetDlgItemText call. The text goes beyond the length of my text field so I was wondering if anyone can point me to a list of flags so that I may allow the user to read to the end of the text field. That did the trick. Thanks again! A text field, as in a label Consider replacing it with a read only edit box. That way the user can select the entire content. Again I confess my ignorance. Is there a website that has the flags necessary to accomplish this I'm writing my resource file by hand. Please remember to tag comments as answers if someone is able to help you. This makes it easier to see who's getting help, and who's not, as well as improve search resu ...Show All

  • Rick Hill PSDK/calc-sample, please.

    Below is error when I try to build sample project: Calculator. I have VC++ express edition and sample is for that version of C++. I also have PSDK which I wanted to integrate with VC++ express edition by following instructions; but wanted to be sure VC++ express edition is working (which it is not) by using simple sample projects. Thank you very much for any assistance to get this sample project to run/compile. I plan to use VC++ instead of fortran for my research so I and other students/scientists may have a graphical user interface and ease of entering code. Assembly language was no fun but I got thru that. I would be grateful if anyone could point me to sample code to use in VC++ express edition (with PSDK integrated ...Show All

  • piknik Inverse Abel transform

    Hi, I was wondering if anybody knew of any visual c++ code to transform an array of values into an array of radial densities (inverse Abel transform). I'm trying to create radial concentrations of an object from single x-ray projections. Thanks, Mark This is not a numerical recipes forum--please use this forum for Visual C++ issues only. You may try searching the web. ...Show All

  • dwatrous How do I export an operator from a dll?

    I have built a 2D vector class and I moved it into a dll, I have added the export symbol before the class so all of the functions of this class were exported from the dll without any problems. but I have a problem with exporting a operator which is a friend of the class: this is the header file of the class #ifdef V2DDLL_EXPORTS #define V2DDLL_API __declspec ( dllexport ) #else #define V2DDLL_API __declspec(dllimport) #endif class V2DDLL_API V2D { ... friend V2D operator * ( const V2D &, double scalar); friend V2D operator * ( double scalar, const V2D &); friend V2D operator / ( const V2D &, double scalar); friend V2D operator / ( double scalar, const V2D & ...Show All

  • zoki977 IMPLEMENT_DYNAMIC() error

    I am creating a class object that is inherited from COleDropTarget. class CTest1 : public COleDropTarget { DECLARE_DYNAMIC(CTest1) public: CTest1(); virtual ~CTest1(); protected: DECLARE_MESSAGE_MAP() }; When I build using "Use MFC in a Shared DLL", it's work fine. but I buid using "Use MFC in a Static Libiary", it's not bulid. I get the following error messages; error C2039: 'classCOleDropTarget' : is not a member of ' COleDropTarget' see declaration of ' COleDropTarget' I use Visual Studio 7.1... help me plz.. Hello Re: IMPLEMENT_DYNAMIC() error I am going to mark this thread as answered since you have not followed up with any further information on your pr ...Show All

  • Driescox Paint form doesn't work

    Hi, I am trying to create an MSN like application, for sending matter I used unmanaged code(it's the requirement :( ...... ) but I want to make a nice user interface by using c++.net. everything seems to be fine until I receive a message, and here is what supposed to happen: The unmanaged code will decode the message and create a new chatForm. (Every connection is handle by different thread) The new created ChatForm will display the received message and also pass any message written in that form back to the unmanaged code. And what actually happen is: The unmanaged code has decode the message correctly and when It call chatForm->show(), the chatform appear once and the paint doesn't want to work correctly. Is it a matter of multit ...Show All

  • Tryst Command Line Parameters with Dialog Based Applications

    I'm creating an MFC dialog based application and I need to be able to pass command line parameters to it. Is this possible with a dialog app Of course it is. To retrieve it use CCommandLineInfo class (or if you like the WinAPI use GetCommandLine function). (Also check the answer you've been given here, http://www.codeguru.com/forum/showthread.php t=398178  - I think it was you, right ) you can also get the command line args by just using the macros __argc and __argv in VC++ senthil Thanks. It works. From MSDN: You can get the command line argument by GetCommandLine function. To convert the command line to an argv style array of strings, call the CommandLineToArgv ...Show All

2345678910111213141516171819

©2008 Software Development Network

powered by phorum