rollinup Posted June 26, 2004 Share Posted June 26, 2004 How do you create an email client like Outlook express with VB? I know its hard but I just need a little something to get me started :happy: Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/ Share on other sites More sharing options...
0 session Posted June 26, 2004 Share Posted June 26, 2004 write some codes :) Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2360520 Share on other sites More sharing options...
0 rollinup Posted June 26, 2004 Author Share Posted June 26, 2004 Haha easier said than done ;) Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2360521 Share on other sites More sharing options...
0 _I am Reptar Posted June 26, 2004 Share Posted June 26, 2004 session? said: write some code:):) lol,well said Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2360526 Share on other sites More sharing options...
0 rollinup Posted June 26, 2004 Author Share Posted June 26, 2004 If only I were good at VB then maybe I would :p Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2360528 Share on other sites More sharing options...
0 session Posted June 26, 2004 Share Posted June 26, 2004 buy some books and read then you will be good at VB and can just write some codes! :) //The point is, you don't really expect people to start a thread and ask "How do I make an OE-like program." Someday, someone would create a thread and ask "How do I make a Windows-like OS in notepad?" Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2360533 Share on other sites More sharing options...
0 rollinup Posted June 26, 2004 Author Share Posted June 26, 2004 Well I'm just looking for a little hint here and there ;) I dont need the whole thing done for me by someone Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2360544 Share on other sites More sharing options...
0 aldo Posted June 28, 2004 Share Posted June 28, 2004 Well it sounds like you do ;). To make a very simple program like OE you'd need to: Have some sort of list view which can get the messages off a POP3 server Have reply and compose abilities and be able to send via SMTP And also track which messages have been read. Not really that hard. Learn some POP3 and SMTP commands and see how you get on. Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2371911 Share on other sites More sharing options...
0 Maleboligia Posted July 20, 2004 Share Posted July 20, 2004 (edited) -EDIT- I re-read the topic and realized my post was not applicable. My reply explains how to auto-configure Outlook not create a client like Outlook. Sorry. -EDIT- Edited July 20, 2004 by Maleboligia Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2524243 Share on other sites More sharing options...
0 John Veteran Posted July 21, 2004 Veteran Share Posted July 21, 2004 Title edited Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2528125 Share on other sites More sharing options...
0 anog Posted July 22, 2004 Share Posted July 22, 2004 session? said: //The point is, you don't really expect people to start a thread and ask "How do I make an OE-like program." Someday, someone would create a thread and ask "How do I make a Windows-like OS in notepad?" And.. how do you:whistle:e: Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2539633 Share on other sites More sharing options...
0 Veiva Posted July 22, 2004 Share Posted July 22, 2004 anog said: And.. how do you? :whistle: That was uncalled for! ;) You need a compiler too! Not just notepad! Then you can ask. :yes: :whistle: ;) Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2539650 Share on other sites More sharing options...
0 anog Posted July 22, 2004 Share Posted July 22, 2004 Can you write an OS using VBScript and IE as the "compiler"? :rolleyes: Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2539665 Share on other sites More sharing options...
0 John Veteran Posted July 23, 2004 Veteran Share Posted July 23, 2004 anog said: Can you write an OS using VBScript and IE as the "compiler"? :rolleyes: :rolleyes: OSes need to have bootloaders that take over control of all the hardware. That won't happen while Windows is running, unless you make "virtual" hardware... Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2544660 Share on other sites More sharing options...
0 James Rose Posted July 25, 2004 Share Posted July 25, 2004 Here is an example of a simple SMTP app from VB: SMTP: VB6 SMTP: VB.NET Since I only glanced at these examples I really can't give you any more info. Good luck Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-2551918 Share on other sites More sharing options...
0 Ultra Frosty Posted July 27, 2004 Share Posted July 27, 2004 Ill try it. It seems to be a good project to work on for the week. I program in C#, so I will convert it to VB when I finish it. Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-584244639 Share on other sites More sharing options...
0 Ultra Frosty Posted July 28, 2004 Share Posted July 28, 2004 If you need an idea how to use POP in .NET check this out: http://www.thecodeproject.com/csharp/pop3client.asp Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-584248431 Share on other sites More sharing options...
0 Andareed Posted July 28, 2004 Share Posted July 28, 2004 If you want to get hardcore, you can read up on the SMTP and POP3 protocols here: http://www.faqs.org/rfcs/rfc821.html (Simple Mail Transfer Protocol) http://www.faqs.org/rfcs/rfc1939.html (Post Office Protocol - Version 3) Link to comment https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/#findComment-584250450 Share on other sites More sharing options...
Question
rollinup
How do you create an email client like Outlook express with VB? I know its hard but I just need a little something to get me started :happy:
Link to comment
https://www.neowin.net/forum/topic/182764-vb-creating-an-email-client/Share on other sites
17 answers to this question
Recommended Posts