March 26th, 2004 03:19 PM
March 26th, 2004 10:16 AM
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...
March 26th, 2004 07:23 AM
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...
February 12th, 2004 10:00 AM
Yes, I'm trying to remove the last element. Thanks... I'll give it a try. :)
February 12th, 2004 09:42 AM
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...
February 7th, 2004 10:48 PM
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...
February 7th, 2004 09:25 PM
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...
February 6th, 2004 08:46 PM
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 *...
February 6th, 2004 04:46 PM
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...
February 5th, 2004 07:13 AM
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...
February 4th, 2004 09:50 PM
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...
February 4th, 2004 08:23 PM
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...
February 4th, 2004 08:03 PM
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...
February 4th, 2004 04:04 PM
This might be what I need! I'll check it out. Thanks!
February 3rd, 2004 09:05 PM
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...
February 3rd, 2004 12:52 PM
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...
December 18th, 2003 09:52 PM
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...
December 17th, 2003 02:14 PM
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...
November 26th, 2003 01:54 PM
Worked like a charm! Thanks Adam!:)
November 26th, 2003 09:06 AM
Thanks Adam... I'll give it a try...
November 26th, 2003 08:11 AM
BTT... anyone have any ideas?
November 25th, 2003 03:52 PM
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...
November 24th, 2003 02:35 PM
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...
October 20th, 2003 08:38 AM
Thanks Neo.... I ended up going with CRC rather than the MD5. Thanks for the help!:)
October 15th, 2003 10:16 AM
I heard of something called MD5 but I haven't figured out how to implement it yet.