FlexGrid Control in VS .Net 2003

F

fripper

I have just purchased a new system and am moving stuff off the old machine
to the new ... including reinstalling VS .Net 2003 and several VB programs I
had written. One of the programs uses a FlexGrid control but after moving
it to the new machine that control is gone! I cannot remember how I set-up
the flex control ... it is not a standard VB 2003 control. The program (on
the old machine) has references to AxMSComCtl2, AxMSFlexGridLib, MSComCtls
and MSFlexGridLib ... but after moving the program over to the new machine
those references are gone and a reference to something called adodb has been
added. I see these references under the References node in Solution
Explorer. If someone has suggestions for how to establish references to
these control/libraries on the new machine I would appreciate it ... they
don't show up in the Project > Add References menu.

Thanks very much.
 
T

tomb

fripper said:
I have just purchased a new system and am moving stuff off the old machine
to the new ... including reinstalling VS .Net 2003 and several VB programs I
had written. One of the programs uses a FlexGrid control but after moving
it to the new machine that control is gone! I cannot remember how I set-up
the flex control ... it is not a standard VB 2003 control. The program (on
the old machine) has references to AxMSComCtl2, AxMSFlexGridLib, MSComCtls
and MSFlexGridLib ... but after moving the program over to the new machine
those references are gone and a reference to something called adodb has been
added. I see these references under the References node in Solution
Explorer. If someone has suggestions for how to establish references to
these control/libraries on the new machine I would appreciate it ... they
don't show up in the Project > Add References menu.

Thanks very much.
FlexGrid is from VB6, the reference is added from the COM tab.

Tom
 
C

Cor Ligthert [MVP]

Fripper,

Be aware that we did not ever see anybody succeeding to use the flexgrid
without any problem in VBNet.

Try the datagrid instead.

Just as advice.

Cor
 
F

fripper

Tom:

These reference names do not appear in the list presented by the COM tab ...
are they hidden in there under some other name?

Thanks.
 
H

Herfried K. Wagner [MVP]

fripper said:
I have just purchased a new system and am moving stuff off the old machine
to the new ... including reinstalling VS .Net 2003 and several VB programs
I had written. One of the programs uses a FlexGrid control but after
moving it to the new machine that control is gone! I cannot remember how
I set-up the flex control ... it is not a standard VB 2003 control. The
program (on the old machine) has references to AxMSComCtl2,
AxMSFlexGridLib, MSComCtls and MSFlexGridLib ... but after moving the
program over to the new machine those references are gone and a reference
to something called adodb has been added.

PRB: Errors When You Use Visual Basic 6.0 Controls in Visual Basic .NET
<URL:http://support.microsoft.com/?scid=kb;EN-US;318597>
 
G

Guest

The flesgrisd came with VB6 not VS 2003. Suggest you either change it to use
the new datagrid or reinstall VB6.
 
T

Terry Olsen

Seems to me it would be much easier to use a DataTable to hold the data and
a DataGrid to display the table. I used to use the FlexGrid in VB6 but find
the DataGrid much, much easier.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top