Skip to content
Home » Add Fax: to Phone Numbers in Outlook | การเขียนโปรแกรมการเรียนรู้ด้วยตนเอง ที่เว็บไซต์

Add Fax: to Phone Numbers in Outlook | การเขียนโปรแกรมการเรียนรู้ด้วยตนเอง ที่เว็บไซต์

คุณกำลังพยายามหาข้อมูลเกี่ยวกับหัวข้อการหาเงินออนไลน์หรือไม่? คุณกำลังมองหาหัวข้อที่เหมาะสม Add Fax: to Phone Numbers in Outlook หรือไม่? ถ้าเป็นเช่นนั้นโปรดอ่านบทความนี้ทันที.

Add Fax: to Phone Numbers in Outlook | เรียนรู้การเขียนโปรแกรมออนไลน์ ง่ายที่สุด

[button color=”primary” size=”small” link=”#” icon=”” target=”false” nofollow=”true”]ดูวิดีโอโดยละเอียดด้านล่าง[/button]

รูปภาพที่เกี่ยวข้องกับหัวข้อ วิธีใช้ outlook.

Add Fax: to Phone Numbers in Outlook

Add Fax: to Phone Numbers in Outlook

คุณสามารถดูข้อมูลเพิ่มเติมเกี่ยวกับ เรียนรู้การเขียนโปรแกรมออนไลน์ ง่ายที่สุด ที่นี่: https://brokengroundgame.com/learn-to-program/.

ควรอ่านเนื้อหาที่เกี่ยวข้องกับหัวข้อAdd Fax: to Phone Numbers in Outlook.

วิธีใช้มาโครเพื่อซ่อนหมายเลขแฟกซ์ในสมุดที่อยู่ของ Outlook ..

brokengroundgame หวังว่าข้อมูลในบทความนี้จะมีคุณค่ามากสำหรับคุณ. ขอแสดงความนับถือ.

การค้นหาที่เกี่ยวข้องกับหัวข้อAdd Fax: to Phone Numbers in Outlook.

วิธีใช้ outlook

outlook,Software,Microsoft Outlook (Software)

#Add #Fax #Phone #Numbers #Outlook

Add Fax: to Phone Numbers in Outlook

1 thought on “Add Fax: to Phone Numbers in Outlook | การเขียนโปรแกรมการเรียนรู้ด้วยตนเอง ที่เว็บไซต์”

  1. The get this macro to work also on the subfolders.

    Public Sub HideFaxNumbers()
        Dim objOL As Outlook.Application
        Dim objNS As Outlook.NameSpace
        Dim objContact As Outlook.ContactItem
        Dim objItems As Outlook.Items
        Dim objContactsFolder As Outlook.MAPIFolder
        Dim obj As Object
        Dim olfax As String
     
        On Error Resume Next
     
        Set objOL = CreateObject("Outlook.Application")
        Set objNS = objOL.GetNamespace("MAPI")
        Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
        
        
        Set objFolders = objContactsFolder.Folders
        
        For Each objFolder In objFolders
        
            Set objItems = objFolder.Items
           For Each obj In objItems
               'Test for contact and not distribution list
               If obj.Class = olContact Then
                   Set objContact = obj
        
            With objContact
        
                 If .BusinessFaxNumber <> "" Then
                      olfax = .BusinessFaxNumber
                  .BusinessFaxNumber = "Fax: " & olfax
               End If
                 .Save
        
            End With
               End If
        
            Err.Clear
           Next
        
        
        Next
        
     
        
        
        
            
        
     
        Set objOL = Nothing
        Set objNS = Nothing
        Set obj = Nothing
        Set objContact = Nothing
        Set objItems = Nothing
        Set objContactsFolder = Nothing
    End Sub

Leave a Reply

Your email address will not be published. Required fields are marked *