Results 1 to 18 of 18

Thread: MSFlexGrid Wizard

  1. #1

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    MSFlexGrid Wizard

    Ok, I am at a complete loss as to where the MSFlexGrid Wizard is or how to use it. Dglienna posted an example for me a few days ago, but that was after using the wizard and I still don't know where it is.

    Also, what other controls are similar to the flex grid? I am looking for one that gives the same effect as iTunes and selects the entrie row when you select 1 item in the row (although I bet that needs to be coded in). And I need to be able to have fields in the grid be editable, but not all of them. Are there other controls out there that can accomplish this?
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  2. #2
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: MSFlexGrid Wizard

    I've never used the wizard, just learned here and on my own. Search for floating textbox, and you will find samples that let you edit cells. And about selecting the row column:

    Look at the properties.

    AllowBigSelection Property Example
    The following code example allows an entire column or row to be selected when the user clicks on the header.
    VB Code:
    1. Sub Form1_Load ()
    2.    MSHFlexGrid1.AllowBigSelection =True
    3. End Sub

  3. #3

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    Hmmmm... Okay, then can you point me to a tutorial or something. Nevermind: "Google is my friend"

    I'll go re-read the comments in that mini-app you posted for me. I thought those were generated by the Wizard, so I ignored them.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  4. #4
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: MSFlexGrid Wizard

    Search vbf for "floating textbox" and you will see szlamany's posts that got me started last year. For my main project, I just use a few text files, but display all my info in textboxes, and print it to an rtb using tables generated in Word and saved as rtf.

  5. #5

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    Quote Originally Posted by dglienna
    ... For my main project, I just use a few text files, but display all my info in textboxes, and print it to an rtb using tables generated in Word and saved as rtf.
    Maybe I am tied, but you totally lost me there.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  6. #6
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: MSFlexGrid Wizard

    I use the floating text box to enter and edit data, and then print it out into Word documents, and replace tags using a richtextbox. This gets 45 fields and an image printed into nice boxes that are supplied by Word (they call them tables)

  7. #7

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    I guess I am missing the point of including a word document and RTB. Maybe I should read up on how to use the floating text box/flex grid first. That might help me understand what your talking about.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  8. #8

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    dglienna, back in the day when you knew about at much as I do now:
    http://www.vbforums.com/showthread.p...oating+textbox

    I'm still kinda lost. I guess I should go play with stuff instead just expecting to understand it after readin about it. I'll post in a little while if I am still lost.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  9. #9
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: MSFlexGrid Wizard

    Yup, I got about 1/5 of the way into my program, and found out that there might be better ways than to use a console app and write to the screen (like I did for the previous version in QB). I was using all this data that was stored in arrays, and needed a way to show it to the user. It worked out very well. I here they took them out of Net, though.

  10. #10

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    Now that we are quite off the subject: Anyone know where I can find the wizard?
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  11. #11

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    I figured out how to select by column:
    VB Code:
    1. .SelectionMode = flexSelectionByRow
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  12. #12
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: MSFlexGrid Wizard

    You use flx.textmatrix(row,col) to select/change a cell.

  13. #13

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    I know that. Like I'm sure you know by now, I am trying to make it like iTunes and I needed a way to force the user to select a row at a time and this does it for me without me doing any extra coding.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  14. #14

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    I'm still wondering if anyone knows where I can find the MSFlexGrid Wizard.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  15. #15
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: MSFlexGrid Wizard

    Post #2. Lets you select a row or column by clicking on the heading. If you want the user to select a cell, then you'd have to do it programmatically.

  16. #16
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: MSFlexGrid Wizard

    The only flexgrid wizard is actually a Data Form wizard, used with ADO Data Access. I just found it in the help section, searching for MSFLEXGRID WIZARD.

  17. #17

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: MSFlexGrid Wizard

    Quote Originally Posted by dglienna
    Post #2. Lets you select a row or column by clicking on the heading. If you want the user to select a cell, then you'd have to do it programmatically.
    Yeah, but I need to be able to do it when they click any cell. And I figured out how to do it, and I posted it incase anyone else was wondering.

    Quote Originally Posted by dglienna
    The only flexgrid wizard is actually a Data Form wizard, used with ADO Data Access. I just found it in the help section, searching for MSFLEXGRID WIZARD.
    I finally got ADO 2.8, but I'm still not sure what to do with it. I guess I could go check out those examples you gave me that I couldn't get to work before.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  18. #18
    New Member
    Join Date
    Nov 2010
    Location
    Bellingham, WA
    Posts
    10

    Re: MSFlexGrid Wizard

    MSFlexgrid wizard is a component. Project/components/MSFlexgrid wizard

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