Results 1 to 5 of 5

Thread: excel spreadsheet tranferred to a data grid

  1. #1

    Thread Starter
    Member
    Join Date
    May 2002
    Posts
    52

    Unhappy excel spreadsheet tranferred to a data grid

    I need help with code to import a specific sheet into a datagrid. The .xls file is at C:\test.xls. But only need to pull "sheet1" to the grid. I know this is probably a simple task but Im new and stuck here. Thanx for help!!!


    Brian

  2. #2

    Thread Starter
    Member
    Join Date
    May 2002
    Posts
    52
    ANY IDEAS ANYONE?

  3. #3
    New Member
    Join Date
    Jan 2006
    Posts
    3

    Re: excel spreadsheet tranferred to a data grid

    I also want to know...

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

    Re: excel spreadsheet tranferred to a data grid

    Welcome to the forums.

    Have you tried searching yet? I have many many code examples with Excel. Try a search for Excel and posts by me.
    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

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

    Re: excel spreadsheet tranferred to a data grid

    Seeing how its slow tonight I will write something for you.
    VB Code:
    1. Option explicit
    2. 'Add a reference to ms excel xx.0 object library
    3. Private sub command1_click()
    4.     dim oApp as excel.application
    5.     dim oWB as excel.workbook
    6.     set oapp = new excel.application
    7.     set owb = oapp.workbooks.open("C:\MyFile.xls")
    8.     'instead of a msgbox place looping code to iterate
    9.     'through your cell range of data to be entered into your grid.
    10.     Msgbox owb.sheets("Sheet1").Cells(1, 1)
    11.     owb.close
    12.     set owb = nothing
    13.     oapp.quit
    14.     set oapp = nothing
    15. 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

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