Click here to Skip to main content
15,920,632 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralGetObject Issues Pin
Carlos Mariano28-May-04 1:32
Carlos Mariano28-May-04 1:32 
GeneralRe: GetObject Issues Pin
Dave Kreskowiak28-May-04 3:11
mveDave Kreskowiak28-May-04 3:11 
GeneralRe: GetObject Issues Pin
Carlos Mariano2-Jun-04 23:12
Carlos Mariano2-Jun-04 23:12 
GeneralRe: GetObject Issues Pin
Dave Kreskowiak3-Jun-04 1:24
mveDave Kreskowiak3-Jun-04 1:24 
GeneralRe: GetObject Issues Pin
Carlos Mariano3-Jun-04 5:51
Carlos Mariano3-Jun-04 5:51 
GeneralRe: GetObject Issues Pin
Dave Kreskowiak3-Jun-04 12:13
mveDave Kreskowiak3-Jun-04 12:13 
GeneralGetting Email Address Pin
Member 112651927-May-04 16:44
Member 112651927-May-04 16:44 
GeneralRe: Getting Email Address Pin
Dave Kreskowiak28-May-04 2:53
mveDave Kreskowiak28-May-04 2:53 
Where is the address going to come from?

There only thing your going to be able to do to accomplish this is write your own mail server service that run locally on the machine. This sounds like alot of work to do something seemingly so simple, but I'll explain why it needs to be done this way.

If you write an extension to Outlook, your idea will only work for Outlook. It will NOT work for Eudora, Navigator, or any other email package. So you need something to sit between ALL the possible mail clients (except web mail like Yahoo or Google mail!). Plus, writing an extension for Outlook is not that easy and you'll have to write an assembly inside of a COM Callable Wrapper.

The best solution is to write a mail server service that runs on the local machine. Outlook, or any other mail package, will be setup to get/send it's mail from 127.0.0.1 (the local IP for the machine). You can use any ports you want to the POP3 and SMTP listeners, but usually the port numbers used are going to be in the thousands range somewhere. For example, your POP3 server will listen on port 2525 and the SMTP server will listen on 2626. Outlook will send and retrieve it's mail from this server. Your server will then take these messages and do whatever processing it needs to, like get the to/from addresses and store them in a database. It will then have to relay the messages to the REAL mail server on it's normal ports.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralSimple Syntax Question Pin
eggie527-May-04 13:28
eggie527-May-04 13:28 
GeneralRe: Simple Syntax Question Pin
Aaron Eldreth27-May-04 14:49
Aaron Eldreth27-May-04 14:49 
GeneralRe: Simple Syntax Question Pin
Anonymous27-May-04 14:51
Anonymous27-May-04 14:51 
GeneralVarPtr Function Pin
Pugman81227-May-04 12:29
Pugman81227-May-04 12:29 
GeneralRe: VarPtr Function Pin
Dave Kreskowiak28-May-04 2:37
mveDave Kreskowiak28-May-04 2:37 
GeneralData type conversion help needed when Using a VC++ dll with VB.NET Pin
Freddie Code27-May-04 12:23
Freddie Code27-May-04 12:23 
GeneralInVisble specify Column in ListView Ctrl Pin
skoizumi2911027-May-04 11:57
sussskoizumi2911027-May-04 11:57 
GeneralRe: InVisble specify Column in ListView Ctrl Pin
Dave Kreskowiak28-May-04 2:11
mveDave Kreskowiak28-May-04 2:11 
GeneralRe: InVisble specify Column in ListView Ctrl Pin
skoizumi2911028-May-04 15:02
sussskoizumi2911028-May-04 15:02 
GeneralSelecting a value from a combo box using code Pin
mincefish27-May-04 3:40
mincefish27-May-04 3:40 
GeneralRe: Selecting a value from a combo box using code Pin
Dave Kreskowiak27-May-04 4:26
mveDave Kreskowiak27-May-04 4:26 
GeneralRe: Selecting a value from a combo box using code Pin
mincefish27-May-04 6:10
mincefish27-May-04 6:10 
GeneralInterfacing COM Port with PC Pin
Lameta27-May-04 2:46
Lameta27-May-04 2:46 
GeneralRe: Interfacing COM Port with PC Pin
Dave Kreskowiak27-May-04 3:26
mveDave Kreskowiak27-May-04 3:26 
GeneralRe: Interfacing COM Port with PC Pin
Prerak28-May-04 2:50
Prerak28-May-04 2:50 
GeneralInterfacing COM Port with PC Pin
Lameta27-May-04 2:42
Lameta27-May-04 2:42 
GeneralRe: Interfacing COM Port with PC Pin
Dave Kreskowiak27-May-04 2:50
mveDave Kreskowiak27-May-04 2:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.