Results 1 to 15 of 15

Thread: Pulling check box info from Word to Excel

Hybrid View

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2005
    Posts
    8

    Re: Pulling check box info from Word to Excel

    so it doesn't like the OLEObject protion of that code string you gave me earlier. "Method or data member not found" am I missing something else?

  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Pulling check box info from Word to Excel

    This is what I got, but the dumb InlineShape is giving me problems getting its text property.
    VB Code:
    1. Sub Macro1()
    2.     'Behind a word document
    3.     'Add a reference to MS Excel xx.0 Object Library
    4.     Dim oXlApp As New Excel.Application
    5.     Dim oWb As Excel.Workbook
    6.    
    7.     Set oXlApp = CreateObject("Excel.Application")
    8.    
    9.     Set oWb = oXlApp.Workbooks.Open("C:\Book1.xls")
    10.     oXlApp.Visible = True
    11.     'oWb.Sheets(1).Cells.Range("F2").Value = ActiveDocument.InlineShapes("CheckBox1").TextEffect.Text
    12.  
    13. End Sub
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3

    Thread Starter
    New Member
    Join Date
    Mar 2005
    Posts
    8

    Re: Pulling check box info from Word to Excel

    !!!!! i did it! finally got it figured out! here is the change....

    VB Code:
    1. Private Sub txtPONum_Change()
    2.     Dim oXlApp As New Excel.Application
    3.     Dim oWb As Excel.Workbook
    4.    
    5.     Set oXlApp = CreateObject("Excel.Application")
    6.    
    7.     Set oWb = oXlApp.Workbooks.Open("C:\test\test.xls")
    8.     oXlApp.Visible = True
    9.     oWb.Sheets(1).Cells.Range("F2").Value = txtPONum.Text
    10.    
    11. End Sub

    Thanks so much for you help!

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Pulling check box info from Word to Excel

    No prob, but where's the checkbox?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

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