K
Ken
I'm having an issue with a StringBuilder that is platform dependant.
Given the following two lines:
this.logFileName = new StringBuilder ( Application.ExecutablePath );
this.logFileName = this.logFileName.Replace ( ".exe", ".log" );
It appears that the replace line works on Win2K and XP but does NOT work on
Win98 SE or Windows ME.
Anyone have any ideas as to why?
Thanks in advance for your assistance.
Ken
Given the following two lines:
this.logFileName = new StringBuilder ( Application.ExecutablePath );
this.logFileName = this.logFileName.Replace ( ".exe", ".log" );
It appears that the replace line works on Win2K and XP but does NOT work on
Win98 SE or Windows ME.
Anyone have any ideas as to why?
Thanks in advance for your assistance.
Ken