Dave, done deal! --hsm
Hugh S Myers
Posts
-
email confirmation -
A problem with email verificationQuite some time ago I posted the following: regardless of the number of times I attempt to confirm my email address hsmyers@gmail.com nothing happens. no email shows up---nothing---nada---zilch. i really dislike the various messages you display for those in this situation. please fix... Dave Auld responded and possibly tinkered under the hood, but between the two us we've never had success. To be clear, he sent me email directly with no problem. The fail seems confined to the autosend confirmation process. I wonder if we can't capture the output and examine it to see why it never hits my account---keeping in mind that I watch both incoming and spam boxes... BTW I also don't receive the 'E-mail me if someone replies to this message' autosend either. So something seems broken? --hsm
-
email confirmationDave is there a way to do the equivalent of a trace route on the confirmation email. I use gmail and can view my spam folder as well as the new message folder and as far as I can tell I'm not getting the confirmation request. In lieu of that perhaps you could just manually throw the switch that says 'email confirmed'? --hsm
-
email confirmationregardless of the number of times I attempt to confirm my email address hsmyers@gmail.com nothing happens. no email shows up---nothing---nada---zilch. i really dislike the various messages you display for those in this situation. please fix...
-
Your "Is your email address OK?" mechanism is brokenAt least in my case. No matter what Option I choose, nothing happens. If I as for an email, no email appears. If I choose the other option, nothing happens. Since this in no way interferes with my use of the site, this isn't horribly critical, but it is annoying as hell. Could someone fix this? --hsm hsmyers@gmail.com
-
Doxygen?This is admittedly a sort of meta question but does anyone know if the Doxygen list is down or the moderator on vacation? It has been more than 48 hours and nothing has gotten through the moderation barrier. I'm wondering if anyone is home? --hsm p.s. and now back to your regular programming...
-
Top margin in CEditViewFor those with the same problem, a tentative answer is to set the rectangle in the CEdit control:
void CPGNTextView::SetTopMargin() { CEdit &theEdit = GetEditCtrl(); CRect r; theEdit.GetRect(&r); TRACE("t=%d l=%d b=%d r=%d\n",r.top,r.left,r.bottom,r.right); r.top = TOP_MARGIN; theEdit.SetRect(&r); TRACE("t=%d l=%d b=%d r=%d\n",r.top,r.left,r.bottom,r.right); }
And then to do it again in WM_SIZE and WM_SETFONT handlers. Seems like overkill, but the CEdit control loses this information every chance it gets so you just have to help it along so to speak. --hsm -
Top margin in CEditViewI just looked. Two problems occur to me; first, this is for a CRichEditView, not a CEditView. The other problem is that this would allow control of the space above a paragraph--- not the space above the page. Perhaps I'm missing something? --hsm
-
Top margin in CEditViewMuch thanks, I'll take a look. --hsm
-
Top margin in CEditViewIt's clear how to set right and left margins in an instance of CEditView. Is there a way to effectively set a top margin? --hsm
-
What language???IBM 360 assembler Lisp C To be fair, I'd point out that the reason the 'Lisp' is the answer to 2. is that it took me a while to wrap my head around the difference between procedural languages versus functional languages, not because of 'Crunch Time' or the like... --hsm