Author Topic: Ocx in 64 bit  (Read 7117 times)

0 Members and 1 Guest are viewing this topic.

velasquez

  • Newt
  • Posts: 195
Ocx in 64 bit
« on: December 04, 2010, 08:44:46 AM »
Hi
Please I seek somebody to test the file .ocx enclosed in a system of 64 bits.
I don't find who compiled.  
Any help is well coming tanks.  
  
velasquez


<edit CAB: File Removed...>
« Last Edit: December 04, 2010, 11:52:41 AM by CAB »

velasquez

  • Newt
  • Posts: 195
Re: Ocx in 64 bit
« Reply #1 on: December 04, 2010, 08:49:52 AM »
I forgot. 
First to register. 
Then to use:   
Code: [Select]
(setq vlaLock (vlax-create-object "draftteam.suppctrl"))

thanks
velasquez

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Re: Ocx in 64 bit
« Reply #2 on: December 04, 2010, 10:40:16 AM »
I would be very cautious about testing a file of this type without knowing more about who and what it is about.

http://answers.yahoo.com/question/index?qid=20080305070718AAPeMR7

http://filext.com/file-extension/OCX
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Ocx in 64 bit
« Reply #3 on: December 04, 2010, 11:26:05 AM »
I would be very cautious about testing a file of this type without knowing more about who and what it is about.

times one billion

if I were a mod I'd remove it from the original post, the op can link offsite
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

LE3

  • Guest
Re: Ocx in 64 bit
« Reply #4 on: December 04, 2010, 07:46:45 PM »
I forgot.  
First to register.  
Then to use:  
Code: [Select]
(setq vlaLock (vlax-create-object "draftteam.suppctrl"))

thanks
velasquez
Hey.... that's it is mine.
it may be one of the only VB stuff I wrote in the past or that it simple the icons for my old program menu...

It is something I did based on the old activelock activex control - some moons ago and that was part of a book of visual lisp - btw.


where did you got it?

Code: [Select]
;;; Copyright © 2003,2004,2005 Luis Esquivel
;;; draftteam Software, All rights reserved
;;; Web site: http://www.draftteam.com
;;; E-mail: support@draftteam.com

;;; WARNING: All the source code included here is intelectual property
;;; of the author Luis Esquivel, if you can read this message you are
;;; violating the law and not following the license document agreement
;;; that you accepted at the installation time.

(vl-load-com)

...

;;;(pragma '((unprotect-assign dtt-loadKey)))
(defun dtt-loadKey  (/ vlaLock appCode)
  (setq appCode "")
  (setq vlaLock (vlax-create-object "draftteam.suppctrl"))
  (if (and vlaLock (= (type vlaLock) 'vla-object))
    (progn
      (vlax-put-property
vlaLock
'SoftwareName
dtt_softname)
      (vlax-put-property vlaLock 'LiberationKeyLength 16)
      (vlax-put-property vlaLock 'SoftwareCodeLength 16)
      (vlax-put-property vlaLock 'HashAlgorithm 4)
      (vlax-put-property
vlaLock
'LockToComputerName
« Last Edit: December 04, 2010, 07:58:44 PM by LE »

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Ocx in 64 bit
« Reply #5 on: December 04, 2010, 08:27:54 PM »
Quote
if you can read this message you are
violating the law and not following the license document agreement
 that you accepted at the installation time.

 :-o
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

LE3

  • Guest
Re: Ocx in 64 bit
« Reply #6 on: December 04, 2010, 08:44:52 PM »
Quote
if you can read this message you are
violating the law and not following the license document agreement
 that you accepted at the installation time.

 :-o
I went to do a search into my old stuff, and found that I did a 'light version' and posted somewhere, he/she might be using that one.

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Ocx in 64 bit
« Reply #7 on: December 04, 2010, 09:07:44 PM »
dig it, kinda like "if you can smell the nerve gas it's too late, you're dead mf"
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

velasquez

  • Newt
  • Posts: 195
Re: Ocx in 64 bit
« Reply #8 on: December 05, 2010, 06:48:37 AM »
I forgot.  
First to register.  
Then to use:  
Code: [Select]
(setq vlaLock (vlax-create-object "draftteam.suppctrl"))

thanks
velasquez
Hey.... that's it is mine.
it may be one of the only VB stuff I wrote in the past or that it simple the icons for my old program menu...

It is something I did based on the old activelock activex control - some moons ago and that was part of a book of visual lisp - btw.


where did you got it?

Code: [Select]
;;; Copyright © 2003,2004,2005 Luis Esquivel
;;; draftteam Software, All rights reserved
;;; Web site: http://www.draftteam.com
;;; E-mail: support@draftteam.com

;;; WARNING: All the source code included here is intelectual property
;;; of the author Luis Esquivel, if you can read this message you are
;;; violating the law and not following the license document agreement
;;; that you accepted at the installation time.

(vl-load-com)

...

;;;(pragma '((unprotect-assign dtt-loadKey)))
(defun dtt-loadKey  (/ vlaLock appCode)
  (setq appCode "")
  (setq vlaLock (vlax-create-object "draftteam.suppctrl"))
  (if (and vlaLock (= (type vlaLock) 'vla-object))
    (progn
      (vlax-put-property
vlaLock
'SoftwareName
dtt_softname)
      (vlax-put-property vlaLock 'LiberationKeyLength 16)
      (vlax-put-property vlaLock 'SoftwareCodeLength 16)
      (vlax-put-property vlaLock 'HashAlgorithm 4)
      (vlax-put-property
vlaLock
'LockToComputerName


Hi  LE
 
I got this with you. 
You included until the code source. 
I didn't get to use new ActiveLock. 
I am only seeking help to update the work. 
I don't want to harm the work of anybody


I sent the e-mail below to you in the address -> luis@slarchitects.com

Hello Luis, 
Did you stop working with the project LOCKVLISP that uses AciveLock? 
I am trying to develop some thing with this. 
Do you can me to help of some way? 

Thanks, 
Velasquez








velasquez

  • Newt
  • Posts: 195
Re: Ocx in 64 bit
« Reply #9 on: December 05, 2010, 07:06:24 AM »
I would be very cautious about testing a file of this type without knowing more about who and what it is about.

http://answers.yahoo.com/question/index?qid=20080305070718AAPeMR7

http://filext.com/file-extension/OCX


Excuse me. 
I only posted the file after doing all the tests. 
I know so that he serves. 
Tanks 
velasquez

LE3

  • Guest
Re: Ocx in 64 bit
« Reply #10 on: December 05, 2010, 10:08:32 AM »
Olá Velasquez,

Desculpe, não posso lembrar :(

Debe ser una version basica.

O projeto foi abandonado há vários anos, tenho o código fonte, mas eu não poderia fazer qualquer atualização.

Além do projeto original também foi abandonado.

--------
Hi Velasquez,

I do not recall :(

I see you are using the light version.

My project was abandoned some years ago, I still have the source code, but I can't do any update, sorry.

Also, the original project was abandoned too, as far as I know.


I got this with you. 
You included until the code source. 
I didn't get to use new ActiveLock. 
I am only seeking help to update the work. 
I don't want to harm the work of anybody

Hello Luis, 
Did you stop working with the project LOCKVLISP that uses AciveLock? 
I am trying to develop some thing with this. 
Do you can me to help of some way? 

Thanks, 
Velasquez

velasquez

  • Newt
  • Posts: 195
Re: Ocx in 64 bit
« Reply #11 on: December 06, 2010, 05:56:47 AM »
Olá Velasquez,

Desculpe, não posso lembrar :(

Debe ser una version basica.

O projeto foi abandonado há vários anos, tenho o código fonte, mas eu não poderia fazer qualquer atualização.

Além do projeto original também foi abandonado.

--------
Hi Velasquez,

I do not recall :(

I see you are using the light version.

My project was abandoned some years ago, I still have the source code, but I can't do any update, sorry.

Also, the original project was abandoned too, as far as I know.


I got this with you. 
You included until the code source. 
I didn't get to use new ActiveLock. 
I am only seeking help to update the work. 
I don't want to harm the work of anybody

Hello Luis, 
Did you stop working with the project LOCKVLISP that uses AciveLock? 
I am trying to develop some thing with this. 
Do you can me to help of some way? 

Thanks, 
Velasquez

Hi LE,
Thank you. 
I hope you have understood that I didn't want to harm you and your work.





LE3

  • Guest
Re: Ocx in 64 bit
« Reply #12 on: December 06, 2010, 09:47:44 AM »
Hi LE,
Thank you. 
I hope you have understood that I didn't want to harm you and your work.

No problem at all. :)

LE3

  • Guest
Re: Ocx in 64 bit
« Reply #13 on: December 06, 2010, 08:57:59 PM »
Hi LE,
Thank you. 
I hope you have understood that I didn't want to harm you and your work.

No problem at all. :)

And Velasquez, if you know VB or want it to give it a try to port the project into .NET, let me know and I can open a new topic here for LockVlisp as open source.

velasquez

  • Newt
  • Posts: 195
Re: Ocx in 64 bit
« Reply #14 on: December 07, 2010, 12:17:37 PM »
Hi LE,
Thank you. 
I hope you have understood that I didn't want to harm you and your work.

No problem at all. :)

And Velasquez, if you know VB or want it to give it a try to port the project into .NET, let me know and I can open a new topic here for LockVlisp as open source.

Hi  LE
I don't still know VB. 
But I find a great idea a project for LockVlisp. 
I believe that a lot of people could help. 
Great idea.