Results 1 to 5 of 5

Thread: Flexgrid solution

  1. #1

    Thread Starter
    Addicted Member Tengkorak's Avatar
    Join Date
    Nov 2006
    Posts
    240

    Flexgrid solution

    Hi..

    In Visual basic 6 I often use Flexgrid component, I see that in VB.NET these components are not available. Component should I use instead of Flexgrid. What do I need to call Flexgrid componet (VB6 Version) into the project. NET from COM.

  2. #2
    Randalf the Red honeybee's Avatar
    Join Date
    Jun 2000
    Location
    off others' brains
    Posts
    4,345

    Re: Flexgrid solution

    VS.Net provides more advanced components in place of the FlexGrid, such as the DataGrid. Why not use them?

    .
    I am not a complete idiot. Some parts are still missing.
    Check out the rtf-help tutorial
    General VB Faq Thread
    Change is the only constant thing. I have not changed my signature in a long while and now it has started to stink!
    Get more power for your floppy disks. ; View honeybee's Elite Club:
    Use meaningfull thread titles. And add "[Resolved]" in the thread title when you have got a satisfactory response.
    And if that response was mine, please think about giving me a rep. I like to collect them!

  3. #3

    Thread Starter
    Addicted Member Tengkorak's Avatar
    Join Date
    Nov 2006
    Posts
    240

    Re: Flexgrid solution

    I think that the datagrid on. NET datagrid are almost the same as VB6.
    Because I want to enter the data without being connected to the database and as far as I know all that there on components are FlexGrid.

    Flexgrid I usually use to input data on the purchase of goods. be a code of goods, name and amount of goods.

    What do you think if you use flexgrid from VB6 to. NET?

  4. #4
    Randalf the Red honeybee's Avatar
    Join Date
    Jun 2000
    Location
    off others' brains
    Posts
    4,345

    Re: Flexgrid solution

    Not advised. The biggest problem is it is a COM component, so you will likely have issues with performance, deployment and possibly memory management. Second problem is once you start working with the DotNet grid, you will want to throw away the FlexGrid.

    Check out the various data binding samples on the internet or on this forum itself (tutorials/codebanks). What you are trying to achieve can be done by using an empty dataset connected to the grid. Every time you want to enter data, you add a row to the grid and enter your data in it. The dataset need not be bound to a database.

    .
    I am not a complete idiot. Some parts are still missing.
    Check out the rtf-help tutorial
    General VB Faq Thread
    Change is the only constant thing. I have not changed my signature in a long while and now it has started to stink!
    Get more power for your floppy disks. ; View honeybee's Elite Club:
    Use meaningfull thread titles. And add "[Resolved]" in the thread title when you have got a satisfactory response.
    And if that response was mine, please think about giving me a rep. I like to collect them!

  5. #5

    Thread Starter
    Addicted Member Tengkorak's Avatar
    Join Date
    Nov 2006
    Posts
    240

    Re: Flexgrid solution

    thank you @Honeybee
    this makes me excited to keep learning VB.NET

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