Click here to Skip to main content
15,890,947 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Trojen in vb6 application Pin
xcal22-Aug-13 18:54
xcal22-Aug-13 18:54 
AnswerRe: Trojen in vb6 application Pin
Bernhard Hiller22-Aug-13 21:25
Bernhard Hiller22-Aug-13 21:25 
AnswerRe: Trojen in vb6 application Pin
Eddy Vluggen23-Aug-13 2:00
professionalEddy Vluggen23-Aug-13 2:00 
QuestionImport Outlook Contact's email address into Excel Pin
harry.roy22-Aug-13 9:47
harry.roy22-Aug-13 9:47 
AnswerRe: Import Outlook Contact's email address into Excel Pin
Chris Quinn22-Aug-13 23:15
Chris Quinn22-Aug-13 23:15 
GeneralRe: Import Outlook Contact's email address into Excel Pin
BobbyStrain28-Aug-13 15:05
BobbyStrain28-Aug-13 15:05 
GeneralRe: Import Outlook Contact's email address into Excel Pin
harry.roy5-Sep-13 4:08
harry.roy5-Sep-13 4:08 
AnswerRe: SOLVED!!! Pin
harry.roy3-Oct-13 9:30
harry.roy3-Oct-13 9:30 
I solved it with this code, which you can use to pull up the global address book, select a user, and it will display that persons email address (SMTP I think).

VB
Sub GetEmailAddressClean()

Dim cdoSession, cdoAddressBook, olkRecipients, objAddressEntry, objEU, objAE
Dim getValue
CreateObject ("MAPI.Session")
Set cdoSession = CreateObject("MAPI.Session")

cdoSession.Logon "", "", False, False
Set olkRecipients = cdoSession.AddressBook(, "Global Address List", 0, False)



'***********************************************************
'*************** Display Selected Outlook Name *************
'***********************************************************

    For Each objAE In olkRecipients
        MsgBox objAE.AddressEntry.Fields(&H39FE001E)
    Next


End Sub

GeneralRe: SOLVED!!! Pin
BobbyStrain4-Oct-13 5:35
BobbyStrain4-Oct-13 5:35 
GeneralRe: SOLVED!!! Pin
harry.roy4-Oct-13 5:42
harry.roy4-Oct-13 5:42 
QuestionHow to build a number to word translation system using console application in visual basic 2008? Pin
Member 1022469021-Aug-13 21:43
Member 1022469021-Aug-13 21:43 
AnswerRe: How to build a number to word translation system using console application in visual basic 2008? Pin
Tim Carmichael22-Aug-13 1:24
Tim Carmichael22-Aug-13 1:24 
AnswerRe: How to build a number to word translation system using console application in visual basic 2008? Pin
TnTinMn22-Aug-13 16:00
TnTinMn22-Aug-13 16:00 
QuestionObjectListView cell contents changing Issue Pin
Pasan14819-Aug-13 18:29
Pasan14819-Aug-13 18:29 
SuggestionRe: ObjectListView cell contents changing Issue Pin
TnTinMn20-Aug-13 5:36
TnTinMn20-Aug-13 5:36 
AnswerRe: ObjectListView cell contents changing Issue Pin
Bernhard Hiller20-Aug-13 21:26
Bernhard Hiller20-Aug-13 21:26 
Questiondisplay images from a database as windows explorer Pin
Member 928309113-Aug-13 9:13
Member 928309113-Aug-13 9:13 
AnswerRe: display images from a database as windows explorer Pin
Eddy Vluggen14-Aug-13 6:11
professionalEddy Vluggen14-Aug-13 6:11 
QuestionNew to WPF. Getting frustrated Pin
beastmp1313-Aug-13 6:34
beastmp1313-Aug-13 6:34 
AnswerRe: New to WPF. Getting frustrated Pin
xcal13-Aug-13 7:03
xcal13-Aug-13 7:03 
GeneralRe: New to WPF. Getting frustrated Pin
beastmp1313-Aug-13 7:12
beastmp1313-Aug-13 7:12 
GeneralRe: New to WPF. Getting frustrated Pin
xcal13-Aug-13 7:23
xcal13-Aug-13 7:23 
GeneralRe: New to WPF. Getting frustrated Pin
beastmp1313-Aug-13 7:37
beastmp1313-Aug-13 7:37 
GeneralRe: New to WPF. Getting frustrated Pin
xcal13-Aug-13 8:22
xcal13-Aug-13 8:22 
GeneralRe: New to WPF. Getting frustrated Pin
beastmp1313-Aug-13 11:30
beastmp1313-Aug-13 11:30 

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.