Re: Need to compile VB project

2007-10-02 Thread David Weintraub
achricht----- > >Von: David Weintraub [mailto:[EMAIL PROTECTED] > >Gesendet: Sonntag, 30. September 2007 19:05 > >An: Ant Users List > >Betreff: Re: Need to compile VB project > > > >Ant isn't really built for compiling VB6 projects. Its main purpose is &

Re: Need to compile VB project

2007-10-02 Thread Steve Loughran
Sayed, Irfan (Irfan) wrote: Thanks for your reply. I have gone through the URL but did not get much. Need to execute following command in Ant' build.xml M:\cc_mv_test\v_agentapi\Develop\VB Server>"c:\Program Files\Microsoft Visual St udio\VB98\VB6.EXE" -make Moagent32.vbp c:\test.dll -out c:\bu

Re: Need to compile VB project

2007-10-01 Thread Kevin Jackson
Hi, To use you'll need something like: > M:\cc_mv_test\v_agentapi\Develop\VB Server>"c:\Program Files\Microsoft Visual > St > udio\VB98\VB6.EXE" -make Moagent32.vbp c:\test.dll -out c:\build_log.txt Please spend some time readin

RE: Need to compile VB project

2007-09-30 Thread Sayed, Irfan (Irfan)
apache.org/antlibs/proper.html http://ant.apache.org/antlibs/dotnet/index.html Jan >-Ursprüngliche Nachricht- >Von: David Weintraub [mailto:[EMAIL PROTECTED] >Gesendet: Sonntag, 30. September 2007 19:05 >An: Ant Users List >Betreff: Re: Need to compile VB project > >A

Re: Need to compile VB project

2007-09-30 Thread David Weintraub
Ant isn't really built for compiling VB6 projects. Its main purpose is for compiling Java code and projects. As far as I know, there is no compile Visual Basic script based tasks in Ant. The way to do that is to call the "exec" task to call your compilation script. You might want to look at Nant w