Results 1 to 6 of 6

Thread: [VB6] Create a TaskPane For Ms Office : Excel - Word - Access - PowerPoint - Outlook

Threaded View

  1. #1

    Thread Starter
    Banned
    Join Date
    May 2020
    Location
    https://t.me/pump_upp
    Posts
    42

    [VB6] Create a TaskPane For Ms Office : Excel - Word - Access - PowerPoint - Outlook

    1/ About 2 years ago I wrote 1 AddIns Taskpane on VB6 which is very good for 32-bit Office. But when I copy to another computer, it gives me an error of missing libraries. I find the relevant libraries. Copy through Regsvr32 but still can't use it ... after a while I switched to Ms Office 64 bit, it was completely unusable on VB6 machine Because UserControl.ocx written on VB6 is 32 bit, so I give it up and don't use it anymore.

    2/ Recently due to need and I'm self-studying Delphi, so I wrote a small function using ActiveX COM that connects to UserControl.ocx and works well when you write OCX as VB6 copy to another computer attached. DriverTaskPane.dll written by me works fine without any missing library error

    3/ I uploaded it here to share it with anyone who needs it
    4/ To use it do the following:

    - on VB6 you design a UserControl.ocx and what you write in it depends on your usage needs

    - Download 2 libraries I wrote including 32 and 64 bit

    32 is only used for *.OCX 32 bit and 64 is only used for *.OCX 64 bit

    - From VBA declare to use as follows:
    Code:
    Sub ShowTaskPane()
        Dim CTP As Object
        Set CTP = CreateObject("DriverTaskPane.cTaskPane")
        With CTP.CreateCTP("VB6.UserControl1", "My Caption") ''VB6.UserControl1 = UserControl.OCX
            .DockPosition = msoCTPDockPositionRight
            .Visible = True
       End With
       Set CTP = Nothing
    End Sub
    after running the code it will show your From UserControl in TaskPane Excel

    5/ DriverTaskPane.dll supports all programming languages that support writing ActiveX and creating UserControl.ocx according to Ms.

    6/ Support for Use for Ms Office: Excel - Word - Access - PowerPoint - Outlook

    7/ You only need to write 1 UserControl.ocx to use it for Excel - Word - Access - PowerPoint - Outlook

    https://github.com/KieuManh366377/Dr...OMTaskPane.rar

    (I don't know English - Google translate and I didn't learn to program, but I learned from Google myself, so the sentences will not be correct, if there is anything wrong, please forgive me)
    Last edited by PhuongNam; Jan 3rd, 2023 at 07:56 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width