script encoding
script encoding
(OP)
hi guys,
i know i'm not the first person who is asking that question.
how can i turn VBA to EXE and exe to VBA? google seems to be not so helpful. i've found that you can get exe with visual studio 6.
i have visual studio 2015 and cant find a way how to open catvba in there.any help on this will be appreciated.
also how can i decode catvbs?

the source of this macro is easy recognizable for the most on this board.
what sortware used to create a form/exe?
i know i'm not the first person who is asking that question.
how can i turn VBA to EXE and exe to VBA? google seems to be not so helpful. i've found that you can get exe with visual studio 6.
i have visual studio 2015 and cant find a way how to open catvba in there.any help on this will be appreciated.
also how can i decode catvbs?

the source of this macro is easy recognizable for the most on this board.
what sortware used to create a form/exe?





RE: script encoding
from that you could copy/paste into a project in VB
indocti discant et ament meminisse periti
RE: script encoding
with native vb it seems to be pretty easy to build exe.
RE: script encoding
I understand that you want to protect your code, what is bellow is also written in CATIA Portable Script Center
VBA Executable Password Protect Code
Regards
Fernando
https://picasaweb.google.com/102257836106335725208 - Romania
https://picasaweb.google.com/103462806772634246699... - EU
RE: script encoding
a code must be changed a little bit.
Sub Main() instead of Sub CatMain() and you have to get catia at the beginning
On Error Resume Next
Set MyCATIA = GetObject(, "CATIA.Application")
If Err.Number <> 0 Then
Set MyCATIA = CreateObject("CATIA.Application")
MyCATIA.Visible = False
End If
On Error GoTo 0
see attached file.