Kevin Schultz
Kevin Schultz

Reputation: 884

Determine which control is not licensed in VB6

I have a legacy VB6 application that I need to make a simple change to until the replacement application is ready. When compiling, I get an error telling me that one of the controls I have included is unlicensed. IS there an easy way to tell which one? I have already gone through and run vbctrls.reg as well as, registered the ocx files, anibtn32, dbgrid32, gauge32, graph32, grid32, keysta32, mschart, msoutl32, spin32 and threed32.

Any help would be greatly appreciated.

Upvotes: 2

Views: 205

Answers (1)

StayOnTarget
StayOnTarget

Reputation: 12998

One approach is to create a new sample project, and add one control at a time to that project. Run it for each one until you discover which control (or controls) are producing the error.

Upvotes: 2

Related Questions