this is the first time I try using powertree in my vista computer.
problem:
can run the pbcc sample program fine but not the dll .
the make32.bat keeps saying path not found.
here the edited make32.bat file for use with pb9
can anyone tell me whats missing??
---------------------------------------------------------------------
problem:
can run the pbcc sample program fine but not the dll .
the make32.bat keeps saying path not found.
here the edited make32.bat file for use with pb9
can anyone tell me whats missing??
---------------------------------------------------------------------
Code:
@echo off echo Compiling sample programs with PB/DLL 6.00 echo. set pbpath=c:\PBWin90 if not exist %pbpath%\bin\PBEDIT.EXE.exe goto :Error echo Building CREATE.EXE %pbpath%\bin\pbedit /q /l create echo Building FIND.EXE %pbpath%\bin\pbedit /q /l find echo Building BROWSE.EXE if #%pbmake32%#==#X# goto :AlreadySet set include=%pbpath%\winapi;%include% set pbmake32=X :AlreadySet %pbpath%\bin\rc browse %pbpath%\bin\pbres browse del browse.res %pbpath%\bin\pbedit /q /l /i%pbpath%\winapi browse set pbpath= echo Done! goto :Done :Error echo PowerBASIC was not found in the expected location. echo You will need to edit the SET PBPATH= line of this batch file echo (using a text editor, such as NOTEPAD) to set the correct path. :Done
Comment