Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

List of Available ActiveX controls with functionality descriptions.

Status
Not open for further replies.

joel009

Programmer
Jul 7, 2000
272
US
Need to find a catalogue or list of availabel ActiveX controls with some type of description.

I am trying to duplicate the Access Subform created by the wizard that displays multiple instances and will allow you to add/update/delete the info.

Attempted to use the datarepeater but I am having so much trouble I thought there had to be something available but don't know where to look.

Thanks,

Joel
 
do you mean the list currently installed on your machine? because there least a couple million of them 3rd party(made by people using VB, or other languages) ActiveX controls arnt just premade plugins that only microsoft has, so do you mean all the ones you currently have, or sugestions for ones that may help that you may not have.

also what is the "datarepeater"?
 

Joel, did you try the DataGrid?

From the Components panel, select "Microsoft DataGrid Control 6.0 ..."

It is the closest thing I found to the Access subforms. However, the Access subforms allow you to put a combo box in a cloumn so that the user can select from a pre-determined list of values. I just started looking at the DataGrid control so I'm not sure if it has this capability. Does anyone know?
 
for comboBox controls (and other) i use the MSflexgrid control adpated to include relevant options.

an example of this is to superimpose a populated combo box over a specific flexgrid.textMatrix location and on exiting the combobox make in invisible and put the contents into the previous cell in the flexgrid. - this same method is done to enter data via maskedEdit control and textBox controls.

takes a little tinkering but when it's wrapped up it has all the functionality of the flexgrid plus whatever you require!
m [sig]<p> Mark Saunders
 

Wow, this seems to be a lot of work. It might be worth looking into 3rd party solutions!!! [sig][/sig]
 
This is the 3rd time I've replied. Hope this one goes.

Thanks everyone for the input.

I've actually got the datarepeater working fairly well and it compares to the Access subform.

I'll check the references also as it could use some improvement.
[sig][/sig]
 

Joel,

Do you use it to update the database or just to view data. I created a simple app to use the DataRepeater in conjunction with the Northwind Products table. It displays the data but when I make changes on the screen, the database table remains unchanged.

Any thoughts? [sig][/sig]
 
VB400,
My requirements changed so I had to convert the datarepeater to a dataenvironment vs adodc.
I created a sub 'refreshdatatrepeater the closed the recordset then opened using the required sql and the datarepeater displayed the current record set.
The thing is tricky, to edit the record I call a sub in the activeX control, usually on the keyup, and update the referenced table directly, and keeping the new value in the display. To add/del I do it from the form the control sits in and then call the refresh procedure.
To navigate I reference the absolute position and the current record in the recordset.
Hope this helps.

Joel009
[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top