Compile VB6 Code Runtime

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • 2006.ayan@gmail.com

    #1

    Compile VB6 Code Runtime

    Does anybody knows, whether their is any way through which we can
    programatically compile a VB6 Source code (written in a plain text
    file) and to produce the desired .dll or .exe file. Through VB6.exe its
    possible but only through command line. Is their any way to do it
    programatically , somewhat like :

    CompileFile(<ou tput_dll/exe_file_nameas string,
    <vb_project/source_code_fil e_name as ParamArray()) as CompilerErrors

  • Patrice

    #2
    Re: Compile VB6 Code Runtime

    You could use Process.Start to lanch vb6.exe...

    --
    Patrice

    <2006.ayan@gmai l.coma écrit dans le message de news:
    1156419675.9713 45.100480@p79g2 00...legr oups.com...
    Does anybody knows, whether their is any way through which we can
    programatically compile a VB6 Source code (written in a plain text
    file) and to produce the desired .dll or .exe file. Through VB6.exe its
    possible but only through command line. Is their any way to do it
    programatically , somewhat like :
    >
    CompileFile(<ou tput_dll/exe_file_nameas string,
    <vb_project/source_code_fil e_name as ParamArray()) as CompilerErrors
    >

    Comment

    Working...