CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2009
    Posts
    6

    Replacing flexgrid

    I'm trying to convert a c++ program from visual studio 6 to visual studio 9 and am having difficulties with files that contain a flexgrid active-X extension. The windows crash the program during debug and refuse to display in the resource editor, citing a lack of directX controls. I've read a bit about the problem and it seems that flexgrid was discontinued because of security reasons. What format is most often used to make a grid object, and how, if possible, can I convert the code.

  2. #2
    Join Date
    Feb 2003
    Location
    Iasi - Romania
    Posts
    8,234

    Re: Replacing flexgrid

    It is not possible to "convert" the code.
    Just copy the ActiveX control on the computer and register it in command-line using regsvr32.
    Code:
    regsvr32 msflxgrd.ocx
    Ovidiu
    "When in Rome, do as Romans do."
    My latest articles: https://codexpertro.wordpress.com/

Tags for this Thread

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

Featured