Page 2 of 2

Posted: Mon Sep 05, 2005 6:12 pm
by Edwin Knoppert
Kale wrote:
nco2k wrote:@Kale
hmm... whats the name of your firewall??

c ya,
nco2k
ZoneAlarmPro, just right click the app in the program control and select 'changes frequently'. :)
Hmmm, must indeed be a pro feature.
Gosh.... i'm cheap!

Posted: Tue Sep 06, 2005 1:07 am
by Dare2
Edwin Knoppert wrote:Gosh.... i'm cheap!
:)

Posted: Sun Sep 11, 2005 2:31 am
by PB
As a side-note to all this, I am running Kerio Personal Firewall 4, and if I use
the Standalone GUI Debugger, then Kerio prompts me ON EVERY COMPILE
that the app has changed; but if I use the Integrated IDE Debugger, then it
doesn't prompt me with each compile... does this mean the Integrated IDE
Debugger is using the same exe name with each compile? Interesting!

(Off-topic: Kerio is discontinuing their firewall at the end of 2005. :cry:).

Posted: Sun Sep 11, 2005 7:29 am
by Froggerprogger
Hi.
I see a problem there when using a fixed filename:
what is, if a PB-program is compiled to PBTempFile.exe and started, and then another PB-program should be compiled.
The other one couldn't compile then because it cannot overwrite the other running program's exe-file.

Posted: Sun Sep 11, 2005 8:58 am
by Jellybean
New app: PureBasic0.exe
New app: PureBasic1.exe
New app: PureBasic2.exe
Closed app: PureBasic1.exe
New app: PureBasic1.exe
New app: PureBasic3.exe
Closed app: PureBasic2.exe
New app: PureBasic2.exe

And so on.

Posted: Sun Sep 11, 2005 10:40 am
by dagcrack
Then you should have PB project files.. which states a compile name for the exes ;) thats the tidy way of doing it. that'd be my way of doing it.

Posted: Sun Sep 11, 2005 2:32 pm
by Kale
dagcrack wrote:Then you should have PB project files.. which states a compile name for the exes ;) thats the tidy way of doing it. that'd be my way of doing it.
Yes, just specify a compile name per program then compile away to that named exe. Simple.

Posted: Sun Sep 11, 2005 3:23 pm
by Froggerprogger
As an alternative PB could simply compile by default a file named
c:\Directory\myProgram.pb
to an exe with same name and in same directory:
c:\Directory\myProgram.exe

Posted: Sun Sep 11, 2005 3:26 pm
by Dare2
Kale wrote:
dagcrack wrote:Then you should have PB project files.. which states a compile name for the exes ;) thats the tidy way of doing it. that'd be my way of doing it.
Yes, just specify a compile name per program then compile away to that named exe. Simple.
Yes.

Posted: Sun Sep 11, 2005 7:34 pm
by okasvi
why not just use somekind of compiler directive?

eg.

CompilerEXENAME = use_this_exename_always

and use it top of your source... ?

Posted: Sun Sep 11, 2005 9:55 pm
by ricardo
okasvi wrote:why not just use somekind of compiler directive?

eg.

CompilerEXENAME = use_this_exename_always

and use it top of your source... ?
Good idea!

Posted: Tue Sep 13, 2005 3:30 pm
by techjunkie
PB wrote:As a side-note to all this, I am running Kerio Personal Firewall 4, and if I use
the Standalone GUI Debugger, then Kerio prompts me ON EVERY COMPILE
that the app has changed; but if I use the Integrated IDE Debugger, then it
doesn't prompt me with each compile... does this mean the Integrated IDE
Debugger is using the same exe name with each compile? Interesting!

(Off-topic: Kerio is discontinuing their firewall at the end of 2005. :cry:).
?!?! Doesn't Kerio use application checksum verification? :?:

Sygate Personal Firewall does, so it doesn't matter if you keep the same name of the exe, it going to ask every time you recompile. Hmmm - I don't now if it is possible to set a rule for a specific filename only. Have to take a look!

Posted: Fri Sep 16, 2005 3:02 pm
by blueznl
either an option or a compiler directive would do nicely

yes, za checks if the app has changed, and yes you can tell it that it shouldn't check that, and yes i do some network programming, so yes i'd like such an option :-)

Posted: Mon Oct 17, 2005 4:36 pm
by blueznl
is there a chance we'd ge this?