CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (5 messages)

#CEdit Message #30586
Well I have some good news!!!!!! I adjusted the stack like you said and that has appeared to fix it!!! Everything works great know. Thanks again for you help!!!!! Jay Perkins
#30435 #CEdit Message #30437
Here is my OnInitDialog……… //***************************************************************************** ************************* //***************************************************************************** ************************* //***************************************************************************** ************************* BOOL CWptEdit::OnInitDialog() { CDialog::OnInitDialog(); CenterDialog(this); m_Jay_Edit.Init("N 00 00.000'","N ## ##.###'"); return TRUE; // return TRUE unless you set the focus to a control } Here is also part of my Header File for my dialog window……. class CWptEdit : public…
#30417 #CEdit Message #30422
#30390 #CEdit Message #30411
Here is the Header and CPP file of "MYEdit". class CFEdit : public CEdit { // Construction public: CFEdit(); CString Mask; //This is the Picture used to format the text CString Incoming; //This is the Typed (NUMBERS ONLY) characters CString CFEdit::Merge_Mask(CString raw,CString Picture); void Init(CString ivalue,CString mask); public: virtual ~CFEdit();…
CEdit Message #30328
I have created an object based off CEdit. I am currently using it in a Dialog Box that was created using App Wizard. I have added some static CString objects in "MyEdit" Object. Every time I try to add characters to a one of my Csting Objects my program Dies.…