Search found 40 matches

by edwinyzh
Mon Jun 23, 2014 3:08 pm
Forum: madExcept
Topic: Is it possible that Gmail SMTP server will reject?
Replies: 2
Views: 2727

Re: Is it possible that Gmail SMTP server will reject?

I've no idea, but I haven't heard of any such problems yet. In any case, it might make sense to create a "dummy" email account for bug reporting and let it auto forward all emails to your main account. Thanks for the comment. Yes, that's what I'm doing - having a dedicated e-mail account ...
by edwinyzh
Mon Jun 23, 2014 8:16 am
Forum: madExcept
Topic: Suggestion: add a dictated 'Copy to clipboard' button
Replies: 4
Views: 4438

Suggestion: add a dictated 'Copy to clipboard' button

Hi,

I have a suggestion - add a dictated 'Copy to clipboard' button to the first maExcept dialog. I know we can use Ctrl + C, but it's far from obvious to the average users.

I hope you'll consider.

Anyways, is there a way to do that with the current build? Thanks.
by edwinyzh
Sun Jun 22, 2014 1:32 pm
Forum: madExcept
Topic: Is it possible that Gmail SMTP server will reject?
Replies: 2
Views: 2727

Is it possible that Gmail SMTP server will reject?

Hi, So I'm sending stack tracing back from my program via smtp.gmail.com, and now I'm concerned about if Gmail server, when doing security checking, will reject the SMTP connections from my program instances which run on various computers all around the world. Any body has any experience or info on ...
by edwinyzh
Tue Mar 04, 2014 6:24 am
Forum: madExcept
Topic: Sent bug report doesn't include user's supplied reply addr
Replies: 14
Views: 10834

Re: Sent bug report doesn't include user's supplied reply ad

Thanks, the 'reply-to' header field did the work.
by edwinyzh
Wed Jan 15, 2014 12:59 pm
Forum: madExcept
Topic: Sent bug report doesn't include user's supplied reply addr
Replies: 14
Views: 10834

Re: Sent bug report doesn't include user's supplied reply ad

The problem happens on my PC and on all end users' PC's. http://liveditor.com/downloads/LIVEditor_sent_to_madshi.mes http://liveditor.com/downloads/email_header_for_madshi.txt I'll delete the files after you inform me you've downloaded them That seems extremely weird. When looking at "marc <liv...
by edwinyzh
Wed Jan 15, 2014 10:56 am
Forum: madExcept
Topic: Sent bug report doesn't include user's supplied reply addr
Replies: 14
Views: 10834

Re: Sent bug report doesn't include user's supplied reply ad

Hi, I think there is a misunderstanding here, the following are the real info copied from Gmail web, as you can see, Marc is the end user, but the source email address shows below is the one set by me in madExcept, which is not what I'm supposing, what I'm supposing is Marc's own email address showi...
by edwinyzh
Tue Jan 14, 2014 4:22 pm
Forum: madExcept
Topic: Sent bug report doesn't include user's supplied reply addr
Replies: 14
Views: 10834

Re: Sent bug report doesn't include user's supplied reply ad

Hi, as stated above, the sender email I use is something like: myprogram.auto.error.report@mydomain.com

I'll check the default settings sometime later, but is there a workaround no matter what caused this, something like write some code? Thanks.
by edwinyzh
Tue Dec 31, 2013 6:05 am
Forum: madExcept
Topic: Sent bug report doesn't include user's supplied reply addr
Replies: 14
Views: 10834

Re: Sent bug report doesn't include user's supplied reply ad

Sorry for the late reply. the sender email I use is something like: myprogram.auto.error.report@mydomain.com I didn't use another assistant form, but modified some labels of 'ContactForm', for example, Label2 is changed to "your email (if you want reply):", and I don't recall all other cha...
by edwinyzh
Wed Dec 25, 2013 9:41 am
Forum: madExcept
Topic: Sent bug report doesn't include user's supplied reply addr
Replies: 14
Views: 10834

Re: Sent bug report doesn't include user's supplied reply ad

Do or don't? The title says don't, the text says do. The user's email address should be in the bug report header. Sorry, I meant " DO NOT". Yes, the user email is included in the report header, but what I want is that when viewing the bug report emails I can simply click 'Reply' to contac...
by edwinyzh
Tue Dec 24, 2013 5:16 am
Forum: madExcept
Topic: Sent bug report doesn't include user's supplied reply addr
Replies: 14
Views: 10834

Sent bug report doesn't include user's supplied reply addr

Hi,

My program send bug reports using SMTP client through gmail servers. But all the received emails DO NOT include the users reply email addresses. I tested myself several times, I am I've entered the email address when the program asks for it.

What am I maybe missing? Thanks.
by edwinyzh
Thu Jul 25, 2013 8:31 am
Forum: madExcept
Topic: The dialog font size is too small
Replies: 18
Views: 13818

Re: The dialog font size is too small

Commented out the hooking part, it worked, thanks!

Re the font size problem, Windows allows the program to claim its 'DPI aware', this SO questions contains info about it.

I fixed a similar problem with that info for VCL, but I'm not sure how it fits your situation.
by edwinyzh
Thu Jul 25, 2013 3:50 am
Forum: madExcept
Topic: The dialog font size is too small
Replies: 18
Views: 13818

Re: The dialog font size is too small

I'm slightly confused. Is any part of your code using madCodeHook? madExcept.pas should contain no direct reference to madCodeHook, nor any other madExcept related runtime units which are linked into your exe. the madViewerGUI.pas contains madCodeHook, check bellow: // madViewerGui.pas version: 1.0...
by edwinyzh
Wed Jul 24, 2013 8:37 am
Forum: madExcept
Topic: The dialog font size is too small
Replies: 18
Views: 13818

Re: The dialog font size is too small

I finally got around to make the standalone viewer to use a fixed , large font to display the list view items, by creating a HFONT using CreateFont() before the following line: DrawTextW(hDC, PWideChar(s1), Length(s1), r1, c1 or DT_SINGLELINE) //in TExceptionBox.ListViewWndProc() It's far from perfe...
by edwinyzh
Thu Jul 11, 2013 11:17 am
Forum: madExcept
Topic: The dialog font size is too small
Replies: 18
Views: 13818

Re: The dialog font size is too small

Thanks for your help. I'll try that sometime in the near future. At the moment, my urgent task is to integrate madExcept to my app well :) So far I really like its compilation speed and the speed of sending bug report via SMTP, and the fact that the send window works as a standard program and don't ...