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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Where do I install threed32.ocx.

Status
Not open for further replies.

toolsofministry

Programmer
Sep 11, 2002
24
US
Threed32.ocx

I have one on my hard drive but it is not in the right place for VB 6.0 to find it.

I am also getting "Couldn't find installable ISAM
 
Usually .ocx files are in the windows/system32 folder, but they don't have to be. Manually register the .ocx with regsvr32 and windows and VB will know where it is. Thanks and Good Luck!

zemp
 
Note:

With the Threed controls you'll require a licence to use them in design mode in VB. To save you the hair-pulling that I went through trying to get them to work, you need to find the file:

COMMON\TOOLS\VB\CONTROLS\VBCTRLS.REG

on your VB CD and double-click it to add the licence information to the Registry.

- Andy.
 
Thanks. I have it working now.

One other quick question. I have a calendar and when I click on a given Sunday Date I insert it in a grid.

Now the question. Can I insert the week number for that Sunday Date in another txt box automatically?
 
Text1.text = Datepart("ww", myDate)

Look up datepart in VBHelp to sort out when your week starts
________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first

'People who live in windowed environments shouldn't cast pointers.'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top