I don't know how can i run my programs in which VB is not installed (shows error messages like missing some DLLs).
I know how to make my project a "Package".But it take huge size.So can you suggest any method on "vb Run time ...".
Printable View
I don't know how can i run my programs in which VB is not installed (shows error messages like missing some DLLs).
I know how to make my project a "Package".But it take huge size.So can you suggest any method on "vb Run time ...".
Your program depends upon those DLLs and OCXs, etc, for its functioning. You'll HAVE to create a setup package, otherwise it won't run. no other way.Quote:
Originally posted by bijukoothrat
I don't know how can i run my programs in which VB is not installed (shows error messages like missing some DLLs).
I know how to make my project a "Package".But it take huge size.So can you suggest any method on "vb Run time ...".
if the program is develop under VB, then you can't run away from MSVBVM60.dll (for VB 6.0) or MSVBVM50.dll (for VB 5). unless you code in VC++ WIN32 application :D
no matter how small ur app may be ... u need to have vbruntime files and all dll and ocx be refered in u project.....
;) size does matter
in which case you'd just need msvc40.dll ;)Quote:
Originally posted by Chris
if the program is develop under VB, then you can't run away from MSVBVM60.dll (for VB 6.0) or MSVBVM50.dll (for VB 5). unless you code in VC++ WIN32 application :D
i don' t think so. For instance i've posted a VC++ WIN32app sample code & check the dependancy with the PE Explorer and it require on the 3 DLLs:
kernel32.dll
gdi32.dll
user32.dll