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

Search:

Type: Posts; User: stober

Page 1 of 59 1 2 3 4

Search: Search took 0.35 seconds.

  1. Replies
    8
    Views
    1,283

    Re: SetCurrentDirecoryA ignored inside VS

    You must be doing something else wrong because this works ok with vc++ 2010 Express both with and without the debugger


    #include <iostream>
    #include <Windows.h>
    using namespace std;

    int...
  2. Replies
    10
    Views
    15,461

    Re: download and install vc++ 6.0

    Like I said, if you don't want to do GUIs ... But that shouldn't be a problem if you download one of the free resource editors and resource compilers, from here for example.
  3. Replies
    4
    Views
    3,127

    Re: How to read Vc++ MAP file?

    Depends on the compiler. VC++ 2010 the symbols in the map file are mangled, so you have to know how to unmangle them. Microsoft name mangling is pretty complex, but if you're up to the task here's...
  4. Replies
    10
    Views
    15,461

    Re: download and install vc++ 6.0

    Well then I guess you don't know diddly. :) The express version uses the same compiler as all other versions. The difference between versions is the add-on stuff, not the compiler. If you aren't...
  5. Replies
    10
    Views
    15,461

    Re: download and install vc++ 6.0

    Ditch those old vb 6.0 and c++ 6.0 -- they are old, obsolete, and somewhat buggy.

    You can get VB.NET Express and VC++ version 2010 express free for the downoading from Microsoft. You can also get...
  6. Replies
    2
    Views
    1,146

    Change User Name

    I would like to change my display user name to something else (not my real name). Is this possible?
  7. Replies
    2
    Views
    1,156

    how to download fonts to a laser printer

    Anyone know win32 api functions to do this using VC++ 2005 Pro on XP and through the network print drivers. I need to print barcodes but must download the barcode font first.

    Thanks
  8. Replies
    2
    Views
    1,048

    Re: throw in static methods

    Thanks for your answer -- tis not good news and not what I wanted to hear. Guess I'll have to think of some other way to handle the problem.
  9. Replies
    2
    Views
    1,048

    throw in static methods

    using VC++ 2005 pro on XP 2003 server in a service program.

    I have a c++ class that contains both static and non-static methods. The static methods are callback functions that I install in...
  10. Replies
    1
    Views
    801

    Re: How to recover date from server timer?

    assuming you mean an MS-Windows server, if not then ignore this:

    win32 api function GetSystemTime() gets current GMT time, and GetLocalTime() gets local time. Both functions populate a...
  11. Thread: pdb files

    by stober
    Replies
    5
    Views
    1,461

    Re: pdb files

    Thanks for your response. Yes, I do build the exe file, copy the exe to the smart device (an Intermec Mobile 5 wireless using Microsoft ActiveSync). I was hoping someone here has had similar...
  12. Thread: pdb files

    by stober
    Replies
    5
    Views
    1,461

    Re: pdb files

    but that is the correct one. There is only one on my computer's file system. :confused:
  13. Thread: pdb files

    by stober
    Replies
    5
    Views
    1,461

    pdb files

    When I try to load the symbol files (see attached screen shot), right click on the module I want to debug (eu_Login.exe in this case), select "Load Symbols" from the popup menu, browse to the...
  14. Replies
    2
    Views
    1,974

    Re: can not find olepro32.lib

    nevermind. I changed it to use TranslateColor() and it compiles and links ok. :)
  15. Replies
    2
    Views
    1,974

    can not find olepro32.lib

    I'm having a problem similar to the one in this thread. I am using VC++ 2005 Pro, created a Smart Device MFC ActiveX control, call OleTranslateColor() but fails to find the library. I looked in the...
  16. Thread: A question !

    by stober
    Replies
    2
    Views
    849

    Re: A question !

    Yes, certainly you can do it. MFC is nothing more nor less than c++ classes. If you have the huge function in a library then just do normal C/C++ programming to access it. Nothing at all...
  17. Re: How do you build a query in MSAccess programatically ?

    that only executes the query -- you have to call a different function to fetch the results. I have no idea what m_db object is, but since it has an execute method it probably also has fetch methods.
  18. Replies
    1
    Views
    846

    VC++ 2005 debugger tutorial

    Does anyone know of a good tutorial that teaches how to use the debugger in VC++ 2005 IDE ? I already know how to use it but I was asked that question by someone else I know. google spews out a lot...
  19. Replies
    3
    Views
    834

    Re: HSCROLL in CComboBox dropdown

    Thanks for the suggestion. What I failed to mention is that I would like to have a horizontal scroll bar. The screens on wireless devices are only about two inches wide.
  20. Replies
    3
    Views
    834

    HSCROLL in CComboBox dropdown

    using MFC I have a CCombBox whose strings are longer than the dropdown is wide. I can not use owner draw because eVC++ 3.0 or VC++ 2005 for smart devices does not support it. Tried autohscroll but...
  21. Thread: C++ Calculator

    by stober
    Replies
    1
    Views
    1,694

    Re: C++ Calculator

    google "c++ calculator"
  22. Replies
    1
    Views
    729

    Re: Static Link Lib problems

    >> vector<AutonomousElementRegistryEntry> *ptrAutonomousElements;

    why is this a pointer to a vector? The size of a vector is pretty small, allocating it with new is pretty much waste of time...
  23. Replies
    1
    Views
    1,636

    Smart Device ActiveX Controls

    I have VC++ 2005 .NET Pro version. I know how to create ActiveX controls,
    but how do I use them. When I create a new dialog application, right click
    the dialog box and select Insert ActiveX...
  24. Replies
    7
    Views
    1,318

    Re: button event handler

    thank you both for timely responses.
  25. Replies
    7
    Views
    1,318

    button event handler

    I'm using Visual Studio 2005 Pro, and trying my hand at learning C#. I've been writing C and C++ code for quite a few years.

    Problem #1: I put a button on a form that is supposed to exit the...
Results 1 to 25 of 1459
Page 1 of 59 1 2 3 4





Click Here to Expand Forum to Full Width

Featured