How to vompile or use java app inside PB???
Posted: Tue May 31, 2005 3:04 am
Ok I'm making this launcher and I currently use this batch.bat
People like why not use prog$ way well when I launch .bat file one problems is the dos window does not close not even with exit at the end also thought be nice was more built in if possible..
Maybe someone has a good idea how get this work inside PB or even get so batch window closes once java opened..
Code: Select all
@echo off
:: Find the directory of this script
pushd %~dp0
:: Open Java
javaw -classpath "%CD%\irc.jar;%CD%\pixx.jar" irc.IRCApplication -f "%CD%\pjirc.cfg"
:: Return them to where they were.
popd
Maybe someone has a good idea how get this work inside PB or even get so batch window closes once java opened..