CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Andreas Masur

Page 1 of 80 1 2 3 4

Search: Search took 1.19 seconds.

  1. Re: WANTED C++ Architect for Investment Bank-London-Break into banking

    [Moved thread]
  2. Replies
    9
    Views
    4,272

    Re: Multithreading with sockets

    [Moved thread to appropriate forum]
  3. Replies
    8
    Views
    5,033

    Re: Dialog dimension

    The resource file does not contain absolute coordinates (which would not make much sense). Thus, the top/left for a dialog is 0/0. You can specifically control where it is being displayed by using...
  4. Replies
    9
    Views
    6,200

    Re: Console Multithreading

    Since you are new to C++, start by understanding the basics before dealing with libraries such as Boost or OpenMP which both will raise more questions than anything else.

    Use what comes with your...
  5. Replies
    10
    Views
    5,504

    Re: what is wrong?

    That is certainly a pretty broad question. I do not know your background and thus it is kind of hard to provide specific advice. In case you already know some basics (form a different language for...
  6. Replies
    10
    Views
    5,504

    Re: what is wrong?

    Well...I hope you also understand why the line actually does it...if not, I would suggest reading up on inheritance and constructors... ;)
  7. Replies
    10
    Views
    5,504

    Re: what is wrong?

    The compiler does not find a suitable constructor to create the 'fTest' object. 'fooTest' only has the default constructor (taking no arguments) available. You need to explicitly provide a suitable...
  8. Replies
    11
    Views
    6,135

    Re: Learning C++

    I suggest hiring a professional developer doing the work for you. It sounds to me that you are trying to run before being able to walk. Developing for the XBOX is not like boiling water. There are a...
  9. Replies
    13
    Views
    3,353

    Re: Need Guidelines on VC++ future

    [Merged threads]

    Please do not cross-post your questions to multiple forums. Thanks.
  10. Replies
    6
    Views
    2,202

    Re: Prefferred method of inserting in map

    Yep...that is correct...thanks for correcting me.
  11. Replies
    2
    Views
    3,197

    Re: Visual C++ x64 woes

    Did you compiled the application for x64? Or did you just copy it? One of the main reasons for this error is that there is a mismatch between the application and supporting dll's.....for example, a...
  12. Replies
    7
    Views
    3,839

    Re: ShellExecute problem

    So....the million-dollar-question is....? ;)
  13. Replies
    6
    Views
    2,202

    Re: Prefferred method of inserting in map

    'insert()' will actually fail if the given key already exists within the map.


    The inefficiency happens whenever the key is not yet in the map. If it is in the map, '[]' simply returns a...
  14. Replies
    5
    Views
    4,243

    Re: Is there any danger in doing this?

    I still would have expected to be inlined though...
  15. Replies
    6
    Views
    3,790

    Re: temporarily gaining admin rights

    What for?
  16. Re: MAPIReadNext works well but MAPIReadMail doesn´t work.

    Well....of the top of my head...the third parameter is supposed to be the message id which is allocated by the caller. In your case...you actually pass in some random value.
  17. Re: Could someone please explain "String" to me?

    Despite that you will find tons of resources using your favorite search engine....Wikipedia is your friend: string (C++)... ;)
  18. Re: Console Adds A \n Automatically When Enter Is Pressed

    Actually you can kind of overwrite one line in a console by not allowing the line feed. I do not have an example handy and my memory is quite dark in this area since I have not done it for years...
  19. Replies
    3
    Views
    2,934

    Re: Multidimensional Array

    Take a look at the following FAQ that provides a two-dimensional array including random access via the subscript operator ([]).

    Performance-wise it should pretty much match your C implementation...
  20. Re: Development of 64-bit C/C++ applications. Lessons.

    [Moved thread]
  21. Re: Application open at window startup but showing the wrong path

    You could have found the answer by looking at our FAQ:

    How to get the application directory?
  22. Re: console app works on XP but not on Server 2003 -- bad dependency?

    Just pointing out the obvious....did you install the required packages? And additionally packages your application requires but are not installed on Windows Server 2003 by default?

    Windows Server...
  23. Re: Visual studio 2010, MSVCP90D.dll missing

    No...you are not. Visual Studio 2010 allows to use the VC9.0 toolset (iow the Visual Studio 2008 compiler). This allows you to use the new features of the IDE but still compile the same binary. Note...
  24. Re: error LNK2019: unresolved external symbol

    I actually did not read the thread but did you read through the description of the linker error yet?
  25. Replies
    4
    Views
    4,893

    Re: Threading Question.

    Let me answer with a different question: What is the need of calling 'RegisterWaitFor SingleObject()' in the first place?
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured