RE: Need to compile VB project

2007-09-30 Thread Sayed, Irfan (Irfan)
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:\build_log.txt Please help in h

AW: Need to compile VB project

2007-09-30 Thread Jan.Materne
Have a look at Ants DotNet AntLib http://ant.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: Nee

Re: SSH Authentication Errors

2007-09-30 Thread Michael Giroux
I personally do not use passphrase, but I'm not sure what the other developer is using on his system (the one having problems). I'll check on Monday. Thanks Michael On 9/29/07, Vihan Pandey <[EMAIL PROTECTED]> wrote: > > I'm using and tasks in a build script. These work > > well from my own

Re: getting filename from dir listing

2007-09-30 Thread Marijan (Mario) Madunic
Thanks Dale, This is really interesting and will read the documentation and see what else is available. Marijan (Mario) Madunic Dale Anson wrote: Another alternative is to use the FileUtils and StringUtils from Antelope, http://antelope.tigris.org. Here's an example:

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

Re: getting filename from dir listing

2007-09-30 Thread Dale Anson
Another alternative is to use the FileUtils and StringUtils from Antelope, http://antelope.tigris.org. Here's an example: first 8 characters of file name = ${first_8} This will show the first 8 characters of the first file in Ant's lib directory

Re: Iterating a class list

2007-09-30 Thread Wascally Wabbit
If you can use third party libraries see AntXtras(antxtras.sf.net); you can do this like: [your other ant script statements here using ${nextjar}] -The Wabbit James Griggs wrote: I am looking for way to iterate through a property that contains a semicolon delimited list of libraries (jars

Need to compile VB project

2007-09-30 Thread Sayed, Irfan (Irfan)
Hi All, I need to write Ant build script which will compile the VB6 project. Currently the build script is in batch file I need to convert it into the Ant script. Please find the attached batch script. Can somebody please help me out in writing the same. I will be Regards Irfan.