Hallo Zusammen,
Ich importiere alle meine Outlook Kontakte wie folgt:
Nun würde ich gerne bei Contact1.BusinessTelephoneNumber, Contact1.MobileTelephoneNumber und Contact1.HomeTelephoneNumber alle Leerzeichen löschen.
Ich hab es schon so probiert:
Contact1.MobileTelephoneNumber.replace (" ", "")
Jedoch kommt der Fehler:
System.NullReferenceException: "Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt."
kann mir jemand helfen?
Ich importiere alle meine Outlook Kontakte wie folgt:
VB.NET-Quellcode
- Sub kontakte()
- ListBox1.Items.Clear()
- Dim p() As Process = Process.GetProcessesByName("Outlook")
- If p.Length = 0 Then
- Dim ExterneAnwendung As New System.Diagnostics.Process()
- ExterneAnwendung.StartInfo.FileName = "outlook.exe"
- ExterneAnwendung.Start()
- End If
- ' Create Outlook application.
- Dim oApp As Outlook.Application = New Outlook.Application()
- Dim contact As Object
- ' Get NameSpace and Logon.
- Dim oNS As Outlook.NameSpace = oApp.GetNamespace("mapi")
- oNS.Logon("Outlook", Missing.Value, False, True)
- Dim oContacts As Outlook.MAPIFolder = oNS.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts)
- Dim oItems As Outlook.Items = oContacts.Items
- Dim oAppt As Outlook.ContactItem = oContacts.Items.GetNext
- Dim contactscounter = oContacts.Items.Count
- Dim i As Integer
- 'For Each Contact In oItems
- For Each Contact1 As Outlook.ContactItem In oItems
- If Contact1.FileAs = "" Then
- Else
- ListBox1.Items.Add(Contact1.FileAs & " ;" & Contact1.BusinessTelephoneNumber & "%" & Contact1.MobileTelephoneNumber & "ç" & Contact1.HomeTelephoneNumber & "*" & Contact1.LastName & "=" & Contact1.FirstName & "]")
- End If
- Next
- ' Log off.
- oNS.Logoff()
- ' Clean up.
- oApp = Nothing
- oNS = Nothing
- oItems = Nothing
- oAppt = Nothing
- End Sub
Nun würde ich gerne bei Contact1.BusinessTelephoneNumber, Contact1.MobileTelephoneNumber und Contact1.HomeTelephoneNumber alle Leerzeichen löschen.
Ich hab es schon so probiert:
Contact1.MobileTelephoneNumber.replace (" ", "")
Jedoch kommt der Fehler:
System.NullReferenceException: "Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt."
kann mir jemand helfen?