User Christopher Chase - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T11:11:23Zhttp://stackoverflow.com/feeds/user/11016http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/737053/log-file-monitor/1837617#18376170Answer by Christopher Chase for Log File MonitorChristopher Chase2009-12-03T04:21:32Z2009-12-03T04:21:32Z<p>we use "Tail for win32", </p>
<p>i know its not delphi but it might be useful</p>
<p><a href="http://tailforwin32.sourceforge.net/" rel="nofollow">http://tailforwin32.sourceforge.net/</a></p>
http://stackoverflow.com/questions/1824373/delphi-copy-string-to-byte-array2Delphi, Copy string to Byte arrayChristopher Chase2009-12-01T06:32:35Z2009-12-01T08:27:48Z
<p>what i have works, but im looking if there is a faster way to copy a string into a pByteArray</p>
<p>from sysutils</p>
<pre><code> PByteArray = ^TByteArray;
TByteArray = array[0..32767] of Byte;
</code></pre>
<p>assume <strong>a</strong> and <strong>s</strong> are setup correctly</p>
<pre><code> a: pByteArray;
s: string;
</code></pre>
<p>is there a fast way to do this, ie something like copy</p>
<pre><code> for i := 1 TO Length(s) - 1 do
a^[i] := Ord(s[i]);
</code></pre>
<p>delphi 7</p>
http://stackoverflow.com/questions/1824373/delphi-copy-string-to-byte-array/1824381#18243811Answer by Christopher Chase for Delphi, Copy string to Byte arrayChristopher Chase2009-12-01T06:34:45Z2009-12-01T06:34:45Z<p>never mind, found it</p>
<pre><code> Move(s[1], a^, Length(s));
</code></pre>
http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphi/1760731#176073111Answer by Christopher Chase for How Do I Add A TLabel To The Menu Bar in Delphi?Christopher Chase2009-11-19T03:36:34Z2009-11-19T04:06:09Z<p>are you sure its a label? </p>
<p>i havent used the program,</p>
<p>but it could just be a menu item, set to 'owner draw' and painted to look like a link?</p>
<p><img src="http://sirmonkeys.com/images/updatelink.png"><br>
(done in Delphi 7)</p>
<pre><code> procedure TForm1.MYITem1DrawItem(Sender: TObject; ACanvas: TCanvas;
ARect: TRect; Selected: Boolean);
begin
acanvas.Font.Style := [fsUnderline,fsbold];
acanvas.Font.color := clblue;
acanvas.Brush.Style := bsClear;
acanvas.TextOut(arect.left+1,arect.top+1,'Link to Update...');
end;
procedure TForm1.MYITem1MeasureItem(Sender: TObject; ACanvas: TCanvas;
var Width, Height: Integer);
begin
width := 100;
end;
</code></pre>
<p>and then either a have
an ImageList assigned to MainMenu1.Images
or set MainMenu1.OwnerDraw = true</p>
http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function1Returning a string from a BPL functionChristopher Chase2009-11-09T05:09:58Z2009-11-09T19:04:51Z
<p>have a function, simplified below, that is exported from a BPL</p>
<pre><code>function DoA(amount: currency; var Info: string): Currency; stdcall;
begin
result := amount * 19;
Info:= 'Some Text about the result';
end;
</code></pre>
<p>its loaded from the main program with LoadPackage, and GetProcAddress which works fine for the other functions.
but this one brings up many errors when its called;</p>
<p>BPL Is used with (simplified)</p>
<pre><code> bplhandle: HModule;
BPLDoA: function (amount: currency; var Info: string): Currency; stdcall;
intoStr : string;
</code></pre>
<p>.</p>
<pre><code> begin
bplhandle:=LoadPackage('test.bpl');
if bplhandle <> 0 then
begin
@BPLDoA:=GetProcAddress(bplhandle,'DoA');
if assigned(BPLDoA) then
result := BPLDoA(123, intoStr);
end;
end;
</code></pre>
<p>the exception that seems to happen at the end of the Procedure,
but the corrected text is returned into intoStr (viewed with a break point)</p>
<p>would the error have anything to do with the Info param being a var and/or a string? </p>
<p>The Error message is</p>
<blockquote>
<p>Project Project1.exe raised exception class EInvalidPointer with message 'Invalid pointer operation'</p>
</blockquote>
<p>thanks</p>
<p>more info>
another function from the same bpl/unit works fine</p>
<pre><code>function DoB(amount: currency): Currency; stdcall;
result := amount * 19;
end;
</code></pre>
<p>Mad Except></p>
<blockquote>
<p>exception class : EInvalidPointer
exception message : Invalid pointer operation.</p>
<p>main thread ($1b7c):
0040276f +013 Project1.exe System @FreeMem
00404650 +01c Project1.exe System @LStrClr
00483814 +15c Project1.exe Unit1 97 +11 TForm1.Button3Click
00462430 +064 Project1.exe Controls TControl.Click
0045a870 +01c Project1.exe StdCtrls TButton.Click</p>
</blockquote>
http://stackoverflow.com/questions/1634742/get-bpl-file-name3Get BPL File NameChristopher Chase2009-10-28T01:49:30Z2009-10-30T17:13:53Z
<p>From within a BPL, is it possible to get its own file name? e.g. C:\foo\bar.bpl</p>
<p>(dynamically loaded and delphi7, if it matters)</p>
http://stackoverflow.com/questions/1453041/dbctrlgrid-with-a-lookup-combobox0DBCtrlGrid with a Lookup ComboBox Christopher Chase2009-09-21T05:55:07Z2009-10-23T09:01:26Z
<p>has anyone managed to get a DBLookupComboBox to work with a DBCtrlGrid?</p>
<p>a pre filled in DBComboBox works ok, but it dose not work to well for lookup tables;</p>
<p>delphi 7</p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment3Delphi Short Cut to add Date and Name CommentChristopher Chase2008-12-04T00:19:28Z2009-07-25T18:53:14Z
<p>Does anyone know of a short cut to place my name and the date where the cursor is i.e.</p>
<pre><code> //021208 DarkAxi0m
</code></pre>
<p>so i don't keep check what the date is when i'm adding comments. </p>
<p>Im using Delphi7, with CnPack And GExperts Installed.
I think it should be able to be done with one of those experts. </p>
http://stackoverflow.com/questions/576538/delphi-how-to-get-all-local-ips1Delphi, How to get all local IPs?Christopher Chase2009-02-23T04:36:17Z2009-07-15T21:28:12Z
<p>Any one know a way in delphi get a simple list (eg tstrings) of the local ip address.</p>
<p>I have had a look at the other related question, and cant seem to get my head around converting them to delphi.</p>
http://stackoverflow.com/questions/576538/delphi-how-to-get-all-local-ips/804912#8049120Answer by Christopher Chase for Delphi, How to get all local IPs?Christopher Chase2009-04-30T00:33:13Z2009-06-04T03:38:42Z<p>in indy 9, there is a unit IdStack, with the class TIdStack</p>
<pre><code>fStack := TIdStack.CreateStack;
try
edit.caption := fStack.LocalAddress; //the first address i believe
ComboBox1.Items.Assign(fStack.LocalAddresses); //all the address'
finally
freeandnil(fStack);
end;
</code></pre>
<p>works great :)</p>
<p>from Remy Lebeau's Comment</p>
<blockquote>
<p>The same exists in Indy 10, but the
code is a little different: </p>
</blockquote>
<pre><code>TIdStack.IncUsage;
try
GStack.AddLocalAddressesToList(ComboBox1.Items);
Edit.Caption := ComboBox1.Items[0];
finally
TIdStack.DecUsage;
end;
</code></pre>
http://stackoverflow.com/questions/838546/delphi-canceling-a-tdataset-post-in-an-onbeforepost-event2Delphi: Canceling a TDataSet.Post in an OnBeforePost EventChristopher Chase2009-05-08T06:59:41Z2009-05-08T07:19:07Z
<p>On our main data entry screen, we have an OK/Cancel dialog in the OnBeforePost event.</p>
<ul>
<li><em>OK</em> lets things take their course</li>
<li><em>Cancel</em> right now does a <code>Dataset.Cancel;</code></li>
</ul>
<p>Which does what it's meant to, roll back any changes and puts the dataset into browse mode.</p>
<p>This is fine for most of the clients, but we have been asked if it can be changed to </p>
<ul>
<li><em>Cancel</em>, Abort the Post and stay in edit mode with the current changes kept.</li>
</ul>
<p>If they want to cancel, they can use the cancel button.</p>
<p>Looking at the source for <code>procedure TDataSet.Post;</code> it does not look possible to use the event this way.</p>
<p>Dose anyone have any thoughts on a way this could be done?</p>
<p>Follow Up: this is how I have chosen to handle it now</p>
<pre><code>case MessageDlg('Save Changes?', mtWarning, [mbYes, mbNo, mbAbort], 0) of
mrYes: ;
mrNo: Dataset.Cancel;
mrAbort: Abort;
mrNone: Abort;
end;
</code></pre>
http://stackoverflow.com/questions/792280/delphi-objects-in-packages/792307#7923070Answer by Christopher Chase for Delphi Objects in PackagesChristopher Chase2009-04-27T05:09:06Z2009-04-27T05:09:06Z<p>i didnt read all the notes at <a href="http://stackoverflow.com/questions/702246/loadpackage-calls-initialize-but-registerclass-wont-work">http://stackoverflow.com/questions/702246/loadpackage-calls-initialize-but-registerclass-wont-work</a></p>
<p>Question Not needed</p>
http://stackoverflow.com/questions/758047/how-do-you-deal-with-ifdefs-in-dpr-uses-section/759273#7592733Answer by Christopher Chase for How do you deal with IFDEFs in .dpr uses sectionChristopher Chase2009-04-17T06:38:53Z2009-04-19T23:36:06Z<p>I spent quite a while trying to work that one out, </p>
<p>I ended up have a project file (.dpr) for each build type,
with the Conditions in <em>Project|Project Options|Directories/Conditionals</em>
and only the units i wanted added in to the project</p>
<p>this dose have the down side that if you have custom code in the .dpr, it will have to be manually copied to the other project files when it changes. </p>
<p>as noted by Rob Kennedy, this can handled by putting the custom code into its own unit, which is called by a single procedure. thus minimizing the .dpr code size/changes to be made</p>
<p>Also, another bonus you get is that if you add all your .dpr files to a project group, you can <em>build all</em> your different versions with one click / cmd line</p>
http://stackoverflow.com/questions/509498/in-delphi-is-outputdebugstring-thread-safe4In Delphi, is outputdebugstring thread safe?Christopher Chase2009-02-03T23:41:15Z2009-04-15T17:45:01Z
<p>Simple question i belive, is </p>
<pre><code>outputdebugstring(pansichar(''));
</code></pre>
<p>Thread safe?</p>
<p>I/We have been using it in threads for debugging, and i never occurred to me if i should be doing it a different way.</p>
<p>(delphi7)</p>
http://stackoverflow.com/questions/649183/av-when-using-a-procedure-from-one-component-called-by-another0AV When using a Procedure from one Component called by another Christopher Chase2009-03-16T03:41:46Z2009-03-16T22:41:01Z
<p>Im not sure if i have explaned this the best i can but, here we go...</p>
<p>I have 2 Custom components on a form, Which are link together at design time through the IDE. Whenever i call a procedure from on of the Component i get the Access violation,</p>
<blockquote>
<p>Access violation at address 0049A614
in module 'Project2.exe'. Read of
address 00000034.</p>
</blockquote>
<p>This is a small section of my code</p>
<pre><code>TMyClient = class(TClientSocket)
{...}
end;
</code></pre>
<p>and...</p>
<pre><code>TPresence = class(TComponent)
private
ftheClient: TMyClient
public
procedure SetStatus(status: string);
published
property UserName : string read fUserName write fUserName;
property theClient: TMyClient read ftheClient write ftheClient;
end;
procedure TPresence.SetStatus(status: string);
begin
try
***** if theClient = nil then
Exception.Create('theClient is Nil');
except
on e:Exception do
MessageDlg(e.classname+', '+e.message, mtWarning, [mbOK], 0);
end;
{...}
end;
</code></pre>
<p>0049A614 is at the <strong>*</strong>, and the IDE stops here.</p>
<p>I Have also tried to do the assign at run time with</p>
<pre><code>Presence1.theClient := MyClient1;
</code></pre>
<p>with no luck</p>
<p>using procedures from Presence1 or MyClient1 that do not rely on each other work fine.</p>
<p>Delphi 7</p>
<p>Follow Up:
from mghie comments, i rethought about it. </p>
<p>I removed the TPresence Component from the form (which caused some strange IDE errors, that might have had something to do with it) and created it design time, assigning everything that was needed. Now it works, but putting the TPresence Component back on the from brings the error back.</p>
<p>Thankyou for your help guys, i should be able to work this one out now, if i can't ill reopen another question :)</p>
http://stackoverflow.com/questions/551218/delphi-barcode-reader-code/551817#5518170Answer by Christopher Chase for Delphi Barcode Reader CodeChristopher Chase2009-02-15T23:25:04Z2009-02-15T23:25:04Z<p>its is possible, <a href="http://en.barcodepedia.com/" rel="nofollow">barcodepedia</a> have flash reader that reads barcodes from a webcam.</p>
<p>but looking at the site it looks like they are not into giving away the reader.</p>
<p>something that keeps coming up in google is <a href="http://www.metois.com/Eymbarcode/eymbcdemo.htm" rel="nofollow">Eym Barcode Reader</a> which is an ActiveX/OCX</p>
http://stackoverflow.com/questions/373229/create-a-2-dimension-quickreport0Create a 2 dimension Quickreport Christopher Chase2008-12-17T00:01:03Z2009-01-21T15:46:29Z
<p>I think im asking for the right type of report from Quickreport.</p>
<p>What we have is a simple table, </p>
<pre><code>gauge,site,value
</code></pre>
<p>Gauge and site are the keyfields, (there could be anynumber of Gauge-Site Pairs)
normally there is only at most, about 10 sites.</p>
<p>and we are looking to get a reports that looks like this</p>
<pre><code> site1 site2 site3
gauge1 34 4 45
gauge2 45 6 5
gauge4 34 4 45
</code></pre>
<p>Dose anyone know </p>
<ul>
<li>What type this type of report is normally called, (so google can be more help)</li>
<li>Is is possible to created this type of report using QuickReport<br />
if so, any ideas how?<br />
if not, any ideas on what could be used insted?</li>
</ul>
<p>Delphi7<br />
QuickReports 3.5<br />
NexusDB (dont think that matters too much)</p>
http://stackoverflow.com/questions/463583/dataset-update-filter-location1Dataset Update Filter Location Christopher Chase2009-01-20T23:44:56Z2009-01-21T00:01:29Z
<p>This has always bugged me to what is the best way to do the following...</p>
<p>with a simple one to many db, when you have 2 tables/grids on a form and the 2nd one filtered by the first. </p>
<p>where is the best place to put the filter code<br />
ie:</p>
<pre><code>procedure TForm1.tblCustormersAfterScroll(DataSet: TDataSet);
begin
if tblCustormersCustormerID.AsString <> '' then
begin
tblCustormersThings.Filter := 'CustormerID = ' + tblCustormersCustormerID.AsString;
tblCustormersThings.Filtered := true;
end;
end;
</code></pre>
<p>AfterScroll seems to work most of the time, but donst get fired on some events eg after posting. Normally i would have a procedure to do the filter update and put it where ever it seems to be needed.</p>
<p>But i was wondering if there is a better way, this seems like simply stuff delphi should know about...</p>
<p>I Dont think it matters but im Using Delphi7 and NexusDB1</p>
http://stackoverflow.com/questions/445357/best-database-for-small-applications-and-tools/445596#4455961Answer by Christopher Chase for Best database for small applications and toolsChristopher Chase2009-01-15T04:01:46Z2009-01-15T04:01:46Z<p>id have to say im rather happy with <a href="http://www.nexusdb.com/support/index.php?q=node/508&s=0b229ead67fd4f21b50a3fb50092a9b3" rel="nofollow">NexusDB</a></p>
<p>it works client/server or fully embedded, simple enough you can have both in your app and switch between them, depending on your clients needs</p>
<ul>
<li>the embedded DB is free, </li>
<li>client/server "Priced per developer" is <a href="http://www.nexusdb.com/support/index.php?q=pricing" rel="nofollow">AU$ 750</a> </li>
<li>No cost per install.</li>
</ul>
http://stackoverflow.com/questions/297592/safest-way-rename-a-delphi-project4safe(st) way rename a delphi ProjectChristopher Chase2008-11-18T01:36:26Z2009-01-07T08:12:09Z
<p>Im sure this will be a simple one but have a project that started as a test.<br />
When it was created it was saved as "Project2.dpr"</p>
<p>Now the test is no longer a 'test', i would like to change the projects name to something more meaningful. </p>
<p>whats the best way to do this?</p>
<p>Any issues with just changing the file name and the Program line to the new name? i.e.</p>
<p>meaningful.dpr</p>
<pre><code>Program meaningful;
</code></pre>
<p>Note:Delphi 7 if it matters</p>
http://stackoverflow.com/questions/339225/delphi-short-cut-to-add-date-and-name-comment/339236#3392361Answer by Christopher Chase for Delphi Short Cut to add Date and Name CommentChristopher Chase2008-12-04T00:24:55Z2008-12-04T00:24:55Z<p>Never mind found one in CnPack/Soure Templates
Added the template</p>
<pre><code> //%Date% DarkAxi0m
</code></pre>
<p>Note: i should look in the menus more closely</p>
http://stackoverflow.com/questions/239002/duplicating-components-at-run-time/239148#2391483Answer by Christopher Chase for Duplicating components at Run-TimeChristopher Chase2008-10-27T05:27:00Z2008-10-28T02:12:40Z<p>have a read of this page</p>
<p><a href="http://www.blong.com/Conferences/BorConUK98/DelphiRTTI/CB140.htm" rel="nofollow"><strong>Run-Time Type Information In Delphi - Can It Do Anything For You?</strong></a></p>
<p>Noting the section <a href="http://www.blong.com/Conferences/BorConUK98/DelphiRTTI/CB140.htm#CopyingPropertiesFromAComponentToAnother" rel="nofollow">Copying Properties From A Component To Another</a></p>
<p>which has a unit, RTTIUnit with a Procedure, which seems to do part of what you want but i don't think it will copy any child components with out extra code.
<em>(i think its ok to paste it here...)</em></p>
<pre><code>procedure CopyObject(ObjFrom, ObjTo: TObject);
var
PropInfos: PPropList;
PropInfo: PPropInfo;
Count, Loop: Integer;
OrdVal: Longint;
StrVal: String;
FloatVal: Extended;
MethodVal: TMethod;
begin
//{ Iterate thru all published fields and properties of source }
//{ copying them to target }
//{ Find out how many properties we'll be considering }
Count := GetPropList(ObjFrom.ClassInfo, tkAny, nil);
//{ Allocate memory to hold their RTTI data }
GetMem(PropInfos, Count * SizeOf(PPropInfo));
try
//{ Get hold of the property list in our new buffer }
GetPropList(ObjFrom.ClassInfo, tkAny, PropInfos);
//{ Loop through all the selected properties }
for Loop := 0 to Count - 1 do
begin
PropInfo := GetPropInfo(ObjTo.ClassInfo, PropInfos^[Loop]^.Name);
// { Check the general type of the property }
//{ and read/write it in an appropriate way }
case PropInfos^[Loop]^.PropType^.Kind of
tkInteger, tkChar, tkEnumeration,
tkSet, tkClass{$ifdef Win32}, tkWChar{$endif}:
begin
OrdVal := GetOrdProp(ObjFrom, PropInfos^[Loop]);
if Assigned(PropInfo) then
SetOrdProp(ObjTo, PropInfo, OrdVal);
end;
tkFloat:
begin
FloatVal := GetFloatProp(ObjFrom, PropInfos^[Loop]);
if Assigned(PropInfo) then
SetFloatProp(ObjTo, PropInfo, FloatVal);
end;
{$ifndef DelphiLessThan3}
tkWString,
{$endif}
{$ifdef Win32}
tkLString,
{$endif}
tkString:
begin
{ Avoid copying 'Name' - components must have unique names }
if UpperCase(PropInfos^[Loop]^.Name) = 'NAME' then
Continue;
StrVal := GetStrProp(ObjFrom, PropInfos^[Loop]);
if Assigned(PropInfo) then
SetStrProp(ObjTo, PropInfo, StrVal);
end;
tkMethod:
begin
MethodVal := GetMethodProp(ObjFrom, PropInfos^[Loop]);
if Assigned(PropInfo) then
SetMethodProp(ObjTo, PropInfo, MethodVal);
end
end
end
finally
FreeMem(PropInfos, Count * SizeOf(PPropInfo));
end;
end;
</code></pre>
http://stackoverflow.com/questions/220254/can-you-override-messagedlg-calls-to-a-custom-tform-dialog3Can you override MessageDlg calls to a Custom TForm/Dialog?Christopher Chase2008-10-20T23:06:08Z2008-10-21T15:41:44Z
<p>I have been using code similar to this</p>
<pre><code>MessageDlg('', mtWarning, [mbOK], 0);
</code></pre>
<p>throughout my project, (thanks to the GExperts Message Dialog tool :) ) and i was wondering if anyone knows of a way do override the call and show my own custom Form.</p>
<p>The only way i can think to do it its make a New Form with something like</p>
<pre><code>function MessageDlg(const Msg: string; DlgType: TMsgDlgType;
Buttons: TMsgDlgButtons; HelpCtx: Longint): Integer;
begin
//show my own code here
end;
</code></pre>
<p>and put it each of my uses lists before the Dialogs unit but is there a guaranteed way to make sure it uses my code not the Dialogs unit Code.<br />
I don't like the idea of copying the dialogs unit to a local dir and making changes to it.</p>
<p>Or is this all to much work and should i just use my own function call and replace all the MessageDlg with my own. (which would not be fun, ive prob used MessageDlg too much) </p>
http://stackoverflow.com/questions/181380/delphi-project-needing-runtime-packages-even-with-runtime-packages-off4Delphi Project Needing runtime Packages, even with runtime Packages off.Christopher Chase2008-10-08T04:44:05Z2008-10-16T05:16:57Z
<p>My Delphi7 project will not run on my clients computer if i don't have a few of the runtime packages in the path. eg rtl70.bpl</p>
<p>I have <I>Build with runtime packages</I> unticked, so shouldn't they be complied into the exe?</p>
<p>Edit: the Project uses Jedi Packages (TJvPlugin) and running the program with out any plugin installed works fine. As Soon as i add a Plugin, the bpl not found errors reappear. Seems like ill have to live with the extra packages. </p>
http://stackoverflow.com/questions/131217/can-you-catch-an-exception-after-the-main-application-unit-has-ended3Can you Catch an Exception after the main application unit has ended?Christopher Chase2008-09-25T02:47:48Z2008-09-26T20:05:03Z
<p>In one of our application im getting an exception that i can not seem to find or trap. </p>
<pre><code>...
Application.CreateForm(TFrmMain, FrmMain);
outputdebugstring(pansichar('Application Run')); //this is printed
Application.Run;
outputdebugstring(pansichar('Application Run After')); //this is printed
end.
<--- The Exception seems to be here
</code></pre>
<p>The Event log shows</p>
<pre><code>> ODS: Application Run
> //Various Application Messages
> ODS: Application Run After
> First Change Exception at $xxxxxxxx. ...etc
</code></pre>
<p>All i can think of is it is the finalization code of one of the units.</p>
<p>(Delphi 7)</p>
http://stackoverflow.com/questions/99057/getting-bpl-versions-at-program-start1Getting BPL Versions at program start.Christopher Chase2008-09-19T02:47:47Z2008-09-24T06:13:03Z
<p>Is it possible to check what version of BPL (ie Rtl70.BPL, Indy70.bpl etc) are installed on a clients computer when the program starts?</p>
<p>I have had some programs crash because the BPL on there computer is different to the ones on the build machine.<br />
If i have to add each BPL used into the installer on each update, i think it will defeat one of the points on using them.</p>
<p>Delphi 7, if it makes a difference</p>
<p><hr>
Just a follow up on the issue i had.<br />
The rtl70.bpl file was only slightly different between the build computer and the clients.</p>
<blockquote>
<p>Clients Computer: 7.0.4.453 760 KB (778,240 bytes) Tuesday, 20 August 2002, 4:40:26 PM<br />
Build computer: 7.0.4.453 760 KB (778,240 bytes) Friday, 9 August 2002, 11:30:00 PM</p>
</blockquote>
<p>The updater i was using ignored them as being the same (no change in build number), but when i manually deleted and copied the files every thing seemed to work.</p>
http://stackoverflow.com/questions/377215/webkit-support-for-delphi/379709#379709Comment by Christopher Chase on WebKit support for DelphiChristopher Chase2009-12-04T06:07:24Z2009-12-04T06:07:24ZBlog not found
Sorry, the blog you were looking for does not exist. However, the name lwat is available to register! ;)http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699401#1699401Comment by Christopher Chase on Returning a string from a BPL functionChristopher Chase2009-11-09T06:43:39Z2009-11-09T06:43:39ZExcellent, i had a feeling it was going to be something simple, thankshttp://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251Comment by Christopher Chase on Returning a string from a BPL functionChristopher Chase2009-11-09T06:11:14Z2009-11-09T06:11:14Zsame delphi, (poth in a project group, built using build all).
not sure about memory managers, i haven't changed it. should i try something like fastmm4...
http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251Comment by Christopher Chase on Returning a string from a BPL functionChristopher Chase2009-11-09T05:51:23Z2009-11-09T05:51:23Zah didn't see that, ive added it, and there seems to be no changehttp://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251Comment by Christopher Chase on Returning a string from a BPL functionChristopher Chase2009-11-09T05:38:50Z2009-11-09T05:38:50Zyes it does,
added more info about the importhttp://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-functionComment by Christopher Chase on Returning a string from a BPL functionChristopher Chase2009-11-09T05:29:23Z2009-11-09T05:29:23Zsorry the example isnt the best ill change ithttp://stackoverflow.com/questions/1634742/get-bpl-file-name/1634806#1634806Comment by Christopher Chase on Get BPL File NameChristopher Chase2009-10-28T02:31:45Z2009-10-28T02:31:45ZThankyou, works as expected :)http://stackoverflow.com/questions/1420085/delphi-wont-run/1420148#1420148Comment by Christopher Chase on Delphi won't run!Christopher Chase2009-09-14T09:48:11Z2009-09-14T09:48:11Zi believe its enough to run the D7Reg.exe and hit cancel http://stackoverflow.com/questions/885024/useful-delphi-code-templates/885054#885054Comment by Christopher Chase on Useful Delphi code templatesChristopher Chase2009-06-26T00:45:35Z2009-06-26T00:45:35Zwow i have all most the same shortcut, but with out the format, I think im going to add that now :) thankshttp://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668646#668646Comment by Christopher Chase on Delphi 2010 Beta: What's on your wishlist?Christopher Chase2009-05-13T06:32:16Z2009-05-13T06:32:16Z<a href="http://www.delphipages.com/" rel="nofollow">delphipages.com</a> has the AppStore type thing, but i think i could be done betterhttp://stackoverflow.com/questions/838546/delphi-canceling-a-tdataset-post-in-an-onbeforepost-event/838551#838551Comment by Christopher Chase on Delphi: Canceling a TDataSet.Post in an OnBeforePost EventChristopher Chase2009-05-08T07:06:20Z2009-05-08T07:06:20ZThankyou, that works well.
seems like a bit a of a hack. But Canceling a Post is prob a bit of a hack to being withhttp://stackoverflow.com/questions/814648/delphi-what-are-your-dos-and-donts-tips/817888#817888Comment by Christopher Chase on Delphi: What are your "Do's and Don'ts" tips?Christopher Chase2009-05-03T23:37:46Z2009-05-03T23:37:46ZJust out of interest, what would be your reasoning in this?http://stackoverflow.com/questions/576538/delphi-how-to-get-all-local-ips/576836#576836Comment by Christopher Chase on Delphi, How to get all local IPs?Christopher Chase2009-04-30T00:34:32Z2009-04-30T00:34:32Zthankyou, you gave me the hint i needed, im using indy9 so i had a snoop around there and found my answer :)http://stackoverflow.com/questions/758047/how-do-you-deal-with-ifdefs-in-dpr-uses-section/759273#759273Comment by Christopher Chase on How do you deal with IFDEFs in .dpr uses sectionChristopher Chase2009-04-19T23:36:56Z2009-04-19T23:36:56Zthankyou for that, i updated my answer and i am off to update my code ;)http://stackoverflow.com/questions/649183/av-when-using-a-procedure-from-one-component-called-by-anotherComment by Christopher Chase on AV When using a Procedure from one Component called by another Christopher Chase2009-03-16T22:35:53Z2009-03-16T22:35:53Zyeh i put that code in out frustration and a lot of copy any pasting from other places etc
Ive have removed the exception handlers now its working,
Thankyou