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

Search:

Type: Posts; User: Thresher

Page 1 of 4 1 2 3 4

Search: Search took 0.25 seconds.

  1. Replies
    5
    Views
    909

    Ohhh... gotcha! THanks!

    Ohhh... gotcha! THanks!
  2. Replies
    5
    Views
    909

    I probably wasn't clear but the Modal dialog is...

    I probably wasn't clear but the Modal dialog is the Parent and the Child is Modeless... so shouldn't the Parent be able to be on top is one clicks on it? I don't want the Modeless Child dialog on...
  3. Replies
    5
    Views
    909

    Dialog problem/questions

    I have a Modal dialog, Parent, and a button it that'll call a modeless dialog Child. I want to be able to have the Child dialog in the background and bring the Parent into the foreground with, say a...
  4. Replies
    4
    Views
    907

    Yes, I'm trying to remove the last element. ...

    Yes, I'm trying to remove the last element. Thanks... I'll give it a try. :)
  5. Replies
    4
    Views
    907

    vectors and pointers and questions....

    Hi all.... I'm trying to practive & learn about STL and pointers and wrote a little dialog app to help me. It complies but gets an unhandled exception error. Here's my data class..


    class...
  6. Replies
    3
    Views
    638

    It's not really temporary... it's a propriatary...

    It's not really temporary... it's a propriatary data object that holds std::lists of std::lists and the DialogClass2 is just the user interface for it. Once the user saves the data from DialogClass2...
  7. Replies
    3
    Views
    638

    Problem with object scope...?

    I was given a project that has DialogClassA, DialogClassB, and DataClass1 and they're setup like this. DialogClassA's ctor uses "new" to instantiates an obj of DialogClassB (even though it's not...
  8. Replies
    2
    Views
    519

    OMG!:eek: Thanks for the reply. I think I see...

    OMG!:eek: Thanks for the reply. I think I see my error... I never declared a ptr to the ObjClass in my ADlgCLass code like this:


    Class ADlgClass: public ....
    {
    private: ObjClass *...
  9. Replies
    2
    Views
    519

    Dynamic Global object question

    This is probably straight forward but I can't quite think of how to go about this....

    I have a dialog class ADlgClass that uses an object from ObjClass to hold std::lists full of data. I don't...
  10. Replies
    4
    Views
    910

    Re: Re: TreeControl bug?

    So can you think of a work-around for this? Because the TreeControl TVN_ONCLICK is called before EN_KILLFOCUS for the Edit box I'm getting an undeseriable result by mixing different TreControl data...
  11. Replies
    4
    Views
    910

    TreeControl bug?

    My Dialog has a tree control and an edit control, in
    a configuration window type setup.

    The problem I am having is that when I click on another
    item in the TreeControl, the KillFocus event for...
  12. I would but the editbox is a float and not a...

    I would but the editbox is a float and not a string. I just need to grab the data in one editbox before the focus changes and when calling UpdateData(true) in OnKillFocus for the edit box I get...
  13. Can UpdateData(true) be called for only 1 var?

    To redefine an earlier problem.... I have a GUI with multiple edit boxes and a TreeControl. When the user clicks from the Editbox(s) to the TreeControl I need the updated info from the EditBox but...
  14. Replies
    8
    Views
    1,201

    This might be what I need! I'll check it out. ...

    This might be what I need! I'll check it out. Thanks!
  15. Replies
    8
    Views
    1,201

    OK... I'll try. When a user has items expanded...

    OK... I'll try. When a user has items expanded in the treecontrol...say Item1 & Item2 and in the focus is in EditBox#3 on the dialog....say I just entered a "100" in EditBox#3 for Item1 in the...
  16. Replies
    8
    Views
    1,201

    Need help with GUI validation problem...

    I have a dialog box with a tree control and 10 edit boxes that hold strings. (The strings represent floats & ints in the underlying data). Items on the Treecontrol(1,2... n) has 10 edit boxes. The...
  17. Replies
    3
    Views
    762

    Well.... I was storing the checksum as an...

    Well.... I was storing the checksum as an unsigned char checksum[16] and had a few problems... like I tried to copy it using strcpy (w/o casting it.. &#$%#) and I was wondering if I should just store...
  18. Replies
    3
    Views
    762

    MD5 checksum help!

    I'm trying to use MD5 to calculate a checksum of a file an object was created from, and then store the file's checksum in the object for comparison later... and I'm having a problem that may be the...
  19. Replies
    7
    Views
    1,780

    Worked like a charm! Thanks Adam!:)

    Worked like a charm! Thanks Adam!:)
  20. Replies
    7
    Views
    1,780

    Thanks Adam... I'll give it a try...

    Thanks Adam... I'll give it a try...
  21. Replies
    7
    Views
    1,780

    BTT... anyone have any ideas?

    BTT... anyone have any ideas?
  22. Replies
    7
    Views
    1,780

    Thanks for the help... but it's still not...

    Thanks for the help... but it's still not working. It does removed the trailing zeros (2.60 becomes 2.6) but now this code...



    m_sMaxRange.Format("%3.2g",(Cd->getMaxRange()));



    ... when...
  23. Replies
    7
    Views
    1,780

    CString format question...

    I'm trying to get a float formatted to a CString and displayed in an Edit box. So I'm going to do it like
    m_sStrRange.Format("%3.2f", m_fRange); but I don't want to show trailing zeros. That is if...
  24. Replies
    4
    Views
    806

    Thanks Neo.... I ended up going with CRC rather...

    Thanks Neo.... I ended up going with CRC rather than the MD5. Thanks for the help!:)
  25. Replies
    4
    Views
    806

    I heard of something called MD5 but I haven't...

    I heard of something called MD5 but I haven't figured out how to implement it yet.
Results 1 to 25 of 85
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured