Advertisement

Results for "Author: rabid nerd productions"

4_2005-2006 #153615
Text & HTML Version Email Sending, based on Contest Winner.. WinSock/SMTP

NOTE TO VB5 USERS: Replace is used and would need to be translated using Replace 'Replacements' here at PSC... This code is based on code by: Brian Anderson, Planet Source Code Winner for Simple Mail Testing Program http://www.planet-source-code.com/xq/ASP/txtCodeId.841/lngWId.1/qx/vb/scripts/ShowCode.htm That said, I have improved on that framework by adding OPTIONAL Multipart/Alternative sending capability. Simple Class File enables event- driven status monitoring and can handle sending multiple emails simultaneously.. (Suggested limit 5 since it is not multi-threaded!) Code is commented to try to explain as much as possible, and comments/questions will be answered This code was a potential candidate for a product that sends email to over 1 Million people on a list, but adequate speeds could not be reached. Highest clocked speed with a local (intranet) SMTP server was over 9000/hour, including going through a SQL table and sending to unique emails (SQL parts removed) Enables you to see the SMTP protocol if you mess around with it.. Example (REALLY SIMPLE) interface included.. Since it was intended for high-speed outgoing mail with web-referenced images, file attachments was not implemented... May do so if requested enough... Multipart/Alternative Means that you send TWO versions of the email to the same person within one email.. If they have a reader capable of reading HTML, they will see the HTML. If they have a text-only mail reader, they will see the text version instead.. I would have posted BOTH Source and Sample ZIP, but as many of you know, PSC does not allow that! I have uploaded the sample project to: http://7-10.com/HerbMail.zip Please vote for me, and if you do, please also vote for the author of the code that this was based on, Brian Anderson (see above)!!!

4_2005-2006 #153616
UPDATED! WebBrowser Control Bug in IE 5.5

After developing a full-blown application (just went out to beta) for my employer, I uncovered a bug in IE 5.5 that you may want to know about.

4_2005-2006 #153825
Embed Webpages into your program (1 Line of code to implement!) ((IE Only))

It allows you to embed HTML documents into your software and create HTML documents on the fly, without needing a connection to the internet.. I think it's limited to IE. Also - I have not hit the upper limit of the about:HTML method. HOWEVER, you must URL ENCODE the CRLFs and Spaces. One last thing... You can not edit a page once you put it up using this method, but you could use a BeforeNavigate Sub to capture the URL the person clicked on and set variables that way..

4_2005-2006 #153826
Add and Remove your program to the Add/Remove Programs and Run at Startup lists!! (SMALL CLASS FILE)

Allows you to easily add your program to the Add/Remove programs list, and also add your program to the Run registry key so it starts every time Windows starts! I didn't see code that adds to the Add/Remove Programs bit here, so I made it myself! Though I find the basic registry routines here, I did Enum one of the arguments to make calling them faster! Please Vote!

5_2007-2008 #176133
Text & HTML Version Email Sending, based on Contest Winner.. WinSock/SMTP

NOTE TO VB5 USERS: Replace is used and would need to be translated using Replace 'Replacements' here at PSC... This code is based on code by: Brian Anderson, Planet Source Code Winner for Simple Mail Testing Program http://www.planet-source-code.com/xq/ASP/txtCodeId.841/lngWId.1/qx/vb/scripts/ShowCode.htm That said, I have improved on that framework by adding OPTIONAL Multipart/Alternative sending capability. Simple Class File enables event- driven status monitoring and can handle sending multiple emails simultaneously.. (Suggested limit 5 since it is not multi-threaded!) Code is commented to try to explain as much as possible, and comments/questions will be answered This code was a potential candidate for a product that sends email to over 1 Million people on a list, but adequate speeds could not be reached. Highest clocked speed with a local (intranet) SMTP server was over 9000/hour, including going through a SQL table and sending to unique emails (SQL parts removed) Enables you to see the SMTP protocol if you mess around with it.. Example (REALLY SIMPLE) interface included.. Since it was intended for high-speed outgoing mail with web-referenced images, file attachments was not implemented... May do so if requested enough... Multipart/Alternative Means that you send TWO versions of the email to the same person within one email.. If they have a reader capable of reading HTML, they will see the HTML. If they have a text-only mail reader, they will see the text version instead.. I would have posted BOTH Source and Sample ZIP, but as many of you know, PSC does not allow that! I have uploaded the sample project to: http://7-10.com/HerbMail.zip Please vote for me, and if you do, please also vote for the author of the code that this was based on, Brian Anderson (see above)!!!

5_2007-2008 #176134
UPDATED! WebBrowser Control Bug in IE 5.5

After developing a full-blown application (just went out to beta) for my employer, I uncovered a bug in IE 5.5 that you may want to know about.

5_2007-2008 #176343
Embed Webpages into your program (1 Line of code to implement!) ((IE Only))

It allows you to embed HTML documents into your software and create HTML documents on the fly, without needing a connection to the internet.. I think it's limited to IE. Also - I have not hit the upper limit of the about:HTML method. HOWEVER, you must URL ENCODE the CRLFs and Spaces. One last thing... You can not edit a page once you put it up using this method, but you could use a BeforeNavigate Sub to capture the URL the person clicked on and set variables that way..

5_2007-2008 #176344
Add and Remove your program to the Add/Remove Programs and Run at Startup lists!! (SMALL CLASS FILE)

Allows you to easily add your program to the Add/Remove programs list, and also add your program to the Run registry key so it starts every time Windows starts! I didn't see code that adds to the Add/Remove Programs bit here, so I made it myself! Though I find the basic registry routines here, I did Enum one of the arguments to make calling them faster! Please Vote!

6_2008-2009 #198651
Text & HTML Version Email Sending, based on Contest Winner.. WinSock/SMTP

NOTE TO VB5 USERS: Replace is used and would need to be translated using Replace 'Replacements' here at PSC... This code is based on code by: Brian Anderson, Planet Source Code Winner for Simple Mail Testing Program http://www.planet-source-code.com/xq/ASP/txtCodeId.841/lngWId.1/qx/vb/scripts/ShowCode.htm That said, I have improved on that framework by adding OPTIONAL Multipart/Alternative sending capability. Simple Class File enables event- driven status monitoring and can handle sending multiple emails simultaneously.. (Suggested limit 5 since it is not multi-threaded!) Code is commented to try to explain as much as possible, and comments/questions will be answered This code was a potential candidate for a product that sends email to over 1 Million people on a list, but adequate speeds could not be reached. Highest clocked speed with a local (intranet) SMTP server was over 9000/hour, including going through a SQL table and sending to unique emails (SQL parts removed) Enables you to see the SMTP protocol if you mess around with it.. Example (REALLY SIMPLE) interface included.. Since it was intended for high-speed outgoing mail with web-referenced images, file attachments was not implemented... May do so if requested enough... Multipart/Alternative Means that you send TWO versions of the email to the same person within one email.. If they have a reader capable of reading HTML, they will see the HTML. If they have a text-only mail reader, they will see the text version instead.. I would have posted BOTH Source and Sample ZIP, but as many of you know, PSC does not allow that! I have uploaded the sample project to: http://7-10.com/HerbMail.zip Please vote for me, and if you do, please also vote for the author of the code that this was based on, Brian Anderson (see above)!!!

6_2008-2009 #198652
UPDATED! WebBrowser Control Bug in IE 5.5

After developing a full-blown application (just went out to beta) for my employer, I uncovered a bug in IE 5.5 that you may want to know about.

6_2008-2009 #198861
Embed Webpages into your program (1 Line of code to implement!) ((IE Only))

It allows you to embed HTML documents into your software and create HTML documents on the fly, without needing a connection to the internet.. I think it's limited to IE. Also - I have not hit the upper limit of the about:HTML method. HOWEVER, you must URL ENCODE the CRLFs and Spaces. One last thing... You can not edit a page once you put it up using this method, but you could use a BeforeNavigate Sub to capture the URL the person clicked on and set variables that way..

6_2008-2009 #198862
Add and Remove your program to the Add/Remove Programs and Run at Startup lists!! (SMALL CLASS FILE)

Allows you to easily add your program to the Add/Remove programs list, and also add your program to the Run registry key so it starts every time Windows starts! I didn't see code that adds to the Add/Remove Programs bit here, so I made it myself! Though I find the basic registry routines here, I did Enum one of the arguments to make calling them faster! Please Vote!

7_2009-2012 #221169
Text & HTML Version Email Sending, based on Contest Winner.. WinSock/SMTP

NOTE TO VB5 USERS: Replace is used and would need to be translated using Replace 'Replacements' here at PSC... This code is based on code by: Brian Anderson, Planet Source Code Winner for Simple Mail Testing Program http://www.planet-source-code.com/xq/ASP/txtCodeId.841/lngWId.1/qx/vb/scripts/ShowCode.htm That said, I have improved on that framework by adding OPTIONAL Multipart/Alternative sending capability. Simple Class File enables event- driven status monitoring and can handle sending multiple emails simultaneously.. (Suggested limit 5 since it is not multi-threaded!) Code is commented to try to explain as much as possible, and comments/questions will be answered This code was a potential candidate for a product that sends email to over 1 Million people on a list, but adequate speeds could not be reached. Highest clocked speed with a local (intranet) SMTP server was over 9000/hour, including going through a SQL table and sending to unique emails (SQL parts removed) Enables you to see the SMTP protocol if you mess around with it.. Example (REALLY SIMPLE) interface included.. Since it was intended for high-speed outgoing mail with web-referenced images, file attachments was not implemented... May do so if requested enough... Multipart/Alternative Means that you send TWO versions of the email to the same person within one email.. If they have a reader capable of reading HTML, they will see the HTML. If they have a text-only mail reader, they will see the text version instead.. I would have posted BOTH Source and Sample ZIP, but as many of you know, PSC does not allow that! I have uploaded the sample project to: http://7-10.com/HerbMail.zip Please vote for me, and if you do, please also vote for the author of the code that this was based on, Brian Anderson (see above)!!!

7_2009-2012 #221170
UPDATED! WebBrowser Control Bug in IE 5.5

After developing a full-blown application (just went out to beta) for my employer, I uncovered a bug in IE 5.5 that you may want to know about.

7_2009-2012 #221379
Embed Webpages into your program (1 Line of code to implement!) ((IE Only))

It allows you to embed HTML documents into your software and create HTML documents on the fly, without needing a connection to the internet.. I think it's limited to IE. Also - I have not hit the upper limit of the about:HTML method. HOWEVER, you must URL ENCODE the CRLFs and Spaces. One last thing... You can not edit a page once you put it up using this method, but you could use a BeforeNavigate Sub to capture the URL the person clicked on and set variables that way..

7_2009-2012 #221380
Add and Remove your program to the Add/Remove Programs and Run at Startup lists!! (SMALL CLASS FILE)

Allows you to easily add your program to the Add/Remove programs list, and also add your program to the Run registry key so it starts every time Windows starts! I didn't see code that adds to the Add/Remove Programs bit here, so I made it myself! Though I find the basic registry routines here, I did Enum one of the arguments to make calling them faster! Please Vote!

Languages
Top Categories
Global Discovery