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

Search:

Type: Posts; User: ebraak

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    2,671

    Re: Edit and continue in VS2013

    No, unfortunately it's still not working.

    Whenever I change my code while debugging I either get this message:

    http://s1379.photobucket.com/user/eriik1976/media/source_zpsixni4brs.png.html
    ...
  2. Replies
    2
    Views
    2,671

    Edit and continue in VS2013

    Hi,

    I recently switched to VS2013 and for some reason edit+continue (in debugging mode) is no longer working.
    In VS2010, whenever I changed code in debugging mode, Alt+F10 would make Visual...
  3. Replies
    2
    Views
    891

    Re: Stretch CView for ulta-high res screens

    Wonderful!
    Thank you very much!
    It appears that in upgrading from v6.0 to VS2013 the DPI setting was unjustly changed to "High DPI aware".
    I have now changed the setting, so hopefully this will...
  4. Replies
    2
    Views
    891

    Stretch CView for ulta-high res screens

    Hi,

    I recently moved a program from an old version of Visual Studio (6.0) to a new one (VS2010).
    The program is a CView.
    Now, some people who have tried to run it on ultra-high res screens have...
  5. Thread: Multithreading

    by ebraak
    Replies
    5
    Views
    1,365

    Multithreading

    Hi everyone,

    I would like to learn how to Multithread in C++, however, I don't really know where to start.
    As I understand it, Boost is the easiest to use to accomplish this?
    Or should I be...
  6. Thread: Out of memory

    by ebraak
    Replies
    6
    Views
    1,191

    Re: Out of memory

    This is a 32 bit program.
    If I upgrade it to 64 bit, I assume that users with 32 bit systems won't be able to use the software anymore?
    Is it maybe possible to get around this issue by...
  7. Thread: Out of memory

    by ebraak
    Replies
    6
    Views
    1,191

    Out of memory

    Hi,

    I have a program that's very memory intensive and I have run across a "Out of memory" error, while actually I have plenty of free memory.

    It is a Win32 application running on Windows 7.
    ...
  8. Replies
    6
    Views
    4,778

    Resetting an array

    Hi,

    Is there some quick way of resetting the contents of an existing array to 0?
    Just to be clear, I'm not initializing the array, it already exists, has content and needs to be reset at 0.
    Is...
  9. Communication between two programs via registry?

    Hi,

    I'm trying to set up some basic communication between two programs via the registry.

    For this I would like to use the functions



    int value=10;
    CString strSection="Data";
  10. Replies
    2
    Views
    1,426

    How to create an edit box in a CView

    I'm trying to create an edit box in a CView.
    So far, this is how far I've gotten:

    http://i.imgur.com/e84Vh1H.png

    With this code



    // .h
  11. Replies
    4
    Views
    5,425

    Re: URLDownloadToFile() not working?

    Well, the code is pretty basic:

    CString savetodisc=GetFilePathForProgram()+CString("thefile.txt");
    CString downloadlocation=CString("http://www.mywebsite.com/thefile.txt");
    HRESULT...
  12. Replies
    4
    Views
    5,425

    URLDownloadToFile() not working?

    Hi,

    In a program I've written I'm using the code URLDownloadToFile(NULL,source_location,target_location,0,NULL) to download a small file from source_location on the internet to target_location on...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured