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

Search:

Type: Posts; User: pbrama

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: Odd Dialog creation... when deleting unused line of code

    Thanks for getting back to me so fast...

    Yes, we can step through all the code without a problem. When we run it in the IDE, it works fine. When we compile it and run the EXE, it moves the...
  2. Re: Odd Dialog creation... when deleting unused line of code

    Well after over a month of work off and on... we are still no further than we were back then. This problem still exists and we can't find it. Even had another experienced C++ programmer look at...
  3. Re: Odd Dialog creation... when deleting unused line of code

    After working on it on and off for the last week, still haven't been able to find what is causing this issue. Decided it was probably time to look into Boundschecker 7 day trial as recommended.
    ...
  4. Re: Odd Dialog creation... when deleting unused line of code

    I've spent ALOT of the past three days going through code trying to find the corruption. As much as I would love to use a program like Boundschecker or Purify... unfortunately it is not in the...
  5. Re: Odd Dialog creation... when deleting unused line of code

    Going to start tackling this problem this weekend. Is it a safe assumption that as I try to find this potential memory issue... that the code that is "passed through" from program start to where...
  6. Re: Odd Dialog creation... when deleting unused line of code

    Thanks for all the great input... I am definitely leaning towards a memory corruption issue... especially because the dialog creation is pretty standard... no additional code for that process. ...
  7. Replies
    21
    Views
    5,540

    Re: Programming Debugging help....

    I understand peoples feelings in regards to the "content" of this program and it's potential intent... but as is evident by soccerstr's post of his programming assignment... it is not his fault, nor...
  8. Odd Dialog creation... when deleting unused line of code

    I ran into a very weird problem and after a lot of trial error, narrowed it down to a single line of code that should NOT be causing this problem...

    A little background....

    We have a very very...
  9. Re: Best way to debug a "Runtime Error - abnormal termination" that takes HOURS to cr

    Creating a log file would be my next step. Was hoping there might be some "unknown to me" tool or compile switch that might give me some debug information I might be able to use to narrow down where...
  10. Best way to debug a "Runtime Error - abnormal termination" that takes HOURS to crash?

    I have an application that all and all works well. I made some simple code changes (moved some lines out of a loop basically) and now the program has decided to crash. Obviously it has...
  11. Replies
    15
    Views
    3,564

    Re: Drag&Drop works in IDE but crashes in EXE

    I had a feeling I was dealing with another v6 issue, especially after getting help with my other issue with the SetSel. I always use the ClassWizard and am not 100% confident in "hand coding"...
  12. Replies
    15
    Views
    3,564

    Re: Drag&Drop works in IDE but crashes in EXE

    Ok, I changed the settings in my IDE project and set NDEBUG and _DEBUG in the preprocessor. Now when I compile and step through the program in the IDE, I get it too to fail too with a message.

    ...
  13. Replies
    15
    Views
    3,564

    Re: Drag&Drop works in IDE but crashes in EXE

    Whoops, sorry... was a bit tired from too many hours working....

    what I meant to say was ON_MESSAGE with WM_DROPFILES.
  14. Replies
    15
    Views
    3,564

    Re: Drag&Drop works in IDE but crashes in EXE

    Thanks for your reply....

    No it crashes whether or not it is a single file or multiple files. I checked all the variables with in the routine and they are in spec.... nothing odd.

    Plus, it...
  15. Replies
    15
    Views
    3,564

    Re: Drag&Drop works in IDE but crashes in EXE

    I realize what a compile does as well as running an application. Yes, there is a bug... realize that too. Could be a coding bug, or could be a VC++ v6 bug.... not sure, as stated.

    I tried...
  16. Replies
    15
    Views
    3,564

    Drag&Drop works in IDE but crashes in EXE

    I have a dialog that accepts a Drag&Drop of a file. I have it working, without a problem, in the IDE while testing. I can compile it without error. But when I try it from the EXE, it crashes...
  17. Replies
    8
    Views
    2,645

    Re: RichEdit and SetSel when tabbing

    Thank you, that fixed the bug.
  18. Replies
    8
    Views
    2,645

    Re: RichEdit and SetSel when tabbing

    WHOOPS!!! Thought it was working. Then it compiled it and ran the EXE and it crashes.

    First off, I had to modify this line to get it to compile correctly:


    ...
  19. Replies
    8
    Views
    2,645

    Re: RichEdit and SetSel when tabbing

    THANKS!!!

    That worked!! Got a love it when things don't work as they are SUPPOSE too!!
  20. Re: Editbox, Read-Only, Display Screwing up when scrolling

    Hmmmm, dang, never thought about that.... that may be the RIGHT way to handle this. Originally needed to allow for editing in the box so it was originally designed with an editbox but when we...
  21. Re: Editbox, Read-Only, Display Screwing up when scrolling

    Yes, you are correct, it is the same problem.... except now, I know what is causing it. Just not sure if it is a bug in VC++ or something else.

    Originally I thought it was some sort of memory...
  22. Editbox, Read-Only, Display Screwing up when scrolling

    We have a multi-line editbox with scrollbars. Because it is used to only display a message, we have it set for READ-ONLY. Problem is, when you scroll it, the lines start overlapping. If you...
  23. Replies
    8
    Views
    2,645

    Re: RichEdit and SetSel when tabbing

    Hmmm, that's what I thought, but it still doesn't work.....

    Here's what I got... I used the ClassWizard and this is what was created....




    BEGIN_MESSAGE_MAP(CMessageDlg, CDialog)...
  24. Replies
    8
    Views
    2,645

    RichEdit and SetSel when tabbing

    I have a dialog that has a RichEdit (called IDC_MESSAGE) in it. If there is something in the RichEdit and you tab into it, it selects everything. What I want to do is put the cursor at the...
  25. Limit what is shown in an editbox without changing data

    Not sure the best way to handle this, even if it can be done....

    Is there a way to "limit" what is shown in an EDITBOX while not physically changing the fields data?

    That is, if I have a...
Results 1 to 25 of 103
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured