Making a table..

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vdraceil
    New Member
    • Jul 2007
    • 236

    Making a table..

    Hi everyone..i'm using VB6.0. I hav a project to do which requires a lots of info that has to entered by the user manually.Its like a table with any number of rows n columns(like an excel sheet)..I hav to make one like that in my project for the user to enter..Loading textboxes at runtime is not possible because the length and width of the form is fixed.placing scrollbars for the form and handling all the components will a very huge job..is there any alternative?or does anybody know how to embedd an excel sheet in vb and use the values of its cells?
  • Sick0Fant
    New Member
    • Feb 2008
    • 121

    #2
    Originally posted by vdraceil
    Hi everyone..i'm using VB6.0. I hav a project to do which requires a lots of info that has to entered by the user manually.Its like a table with any number of rows n columns(like an excel sheet)..I hav to make one like that in my project for the user to enter..Loading textboxes at runtime is not possible because the length and width of the form is fixed.placing scrollbars for the form and handling all the components will a very huge job..is there any alternative?or does anybody know how to embedd an excel sheet in vb and use the values of its cells?
    Sounds like a job for a listview (if using VB6). Make sure you set the view property to report.

    Comment

    Working...