MSWINSCK.OCX Problem need help!!!!
hi vb
i have added MSWINSCK.OCX to my application but i want it to add it self to the system by button
* = means any system drive that is using windows
.... adding MSWINSCK.OCX to *:\Windows\System32 but i want it to do programmactically
also i want it to register itself
but i think allready done this with REGSVR32 by this code
Code:
Shell("cmd" & "Regsvr32" & " /s MSWINSCK.OCX") 'register the ocx
can anyone help me out
ive searched all over the internet to resolve this problem
thanks
pillhead2007
Re: MSWINSCK.OCX Problem need help!!!!
Try this...
Code:
Shell("regsvr32/s MSWINSCK.OCX")
Re: MSWINSCK.OCX Problem need help!!!!
yea i want this code first or help
adding MSWINSCK.OCX to *:\Windows\System32 but i want it to do programmactically
by pressing the a button on my form how do i do this
Re: MSWINSCK.OCX Problem need help!!!!
Put That In Your Button
Proccess.Start("regsvr32/s MSWINSCK.OCX")