User Christopher Chase - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:11:23Z http://stackoverflow.com/feeds/user/11016 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/737053/log-file-monitor/1837617#1837617 0 Answer by Christopher Chase for Log File Monitor Christopher Chase 2009-12-03T04:21:32Z 2009-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-array 2 Delphi, Copy string to Byte array Christopher Chase 2009-12-01T06:32:35Z 2009-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#1824381 1 Answer by Christopher Chase for Delphi, Copy string to Byte array Christopher Chase 2009-12-01T06:34:45Z 2009-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#1760731 11 Answer by Christopher Chase for How Do I Add A TLabel To The Menu Bar in Delphi? Christopher Chase 2009-11-19T03:36:34Z 2009-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-function 1 Returning a string from a BPL function Christopher Chase 2009-11-09T05:09:58Z 2009-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 &lt;&gt; 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-name 3 Get BPL File Name Christopher Chase 2009-10-28T01:49:30Z 2009-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-combobox 0 DBCtrlGrid with a Lookup ComboBox Christopher Chase 2009-09-21T05:55:07Z 2009-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-comment 3 Delphi Short Cut to add Date and Name Comment Christopher Chase 2008-12-04T00:19:28Z 2009-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-ips 1 Delphi, How to get all local IPs? Christopher Chase 2009-02-23T04:36:17Z 2009-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#804912 0 Answer by Christopher Chase for Delphi, How to get all local IPs? Christopher Chase 2009-04-30T00:33:13Z 2009-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-event 2 Delphi: Canceling a TDataSet.Post in an OnBeforePost Event Christopher Chase 2009-05-08T06:59:41Z 2009-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#792307 0 Answer by Christopher Chase for Delphi Objects in Packages Christopher Chase 2009-04-27T05:09:06Z 2009-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#759273 3 Answer by Christopher Chase for How do you deal with IFDEFs in .dpr uses section Christopher Chase 2009-04-17T06:38:53Z 2009-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-safe 4 In Delphi, is outputdebugstring thread safe? Christopher Chase 2009-02-03T23:41:15Z 2009-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-another 0 AV When using a Procedure from one Component called by another Christopher Chase 2009-03-16T03:41:46Z 2009-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#551817 0 Answer by Christopher Chase for Delphi Barcode Reader Code Christopher Chase 2009-02-15T23:25:04Z 2009-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-quickreport 0 Create a 2 dimension Quickreport Christopher Chase 2008-12-17T00:01:03Z 2009-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-location 1 Dataset Update Filter Location Christopher Chase 2009-01-20T23:44:56Z 2009-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 &lt;&gt; '' 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#445596 1 Answer by Christopher Chase for Best database for small applications and tools Christopher Chase 2009-01-15T04:01:46Z 2009-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&amp;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-project 4 safe(st) way rename a delphi Project Christopher Chase 2008-11-18T01:36:26Z 2009-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#339236 1 Answer by Christopher Chase for Delphi Short Cut to add Date and Name Comment Christopher Chase 2008-12-04T00:24:55Z 2008-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#239148 3 Answer by Christopher Chase for Duplicating components at Run-Time Christopher Chase 2008-10-27T05:27:00Z 2008-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-dialog 3 Can you override MessageDlg calls to a Custom TForm/Dialog? Christopher Chase 2008-10-20T23:06:08Z 2008-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-off 4 Delphi Project Needing runtime Packages, even with runtime Packages off. Christopher Chase 2008-10-08T04:44:05Z 2008-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-ended 3 Can you Catch an Exception after the main application unit has ended? Christopher Chase 2008-09-25T02:47:48Z 2008-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. &lt;--- The Exception seems to be here </code></pre> <p>The Event log shows</p> <pre><code>&gt; ODS: Application Run &gt; //Various Application Messages &gt; ODS: Application Run After &gt; 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-start 1 Getting BPL Versions at program start. Christopher Chase 2008-09-19T02:47:47Z 2008-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#379709 Comment by Christopher Chase on WebKit support for Delphi Christopher Chase 2009-12-04T06:07:24Z 2009-12-04T06:07:24Z Blog 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#1699401 Comment by Christopher Chase on Returning a string from a BPL function Christopher Chase 2009-11-09T06:43:39Z 2009-11-09T06:43:39Z Excellent, i had a feeling it was going to be something simple, thanks http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251 Comment by Christopher Chase on Returning a string from a BPL function Christopher Chase 2009-11-09T06:11:14Z 2009-11-09T06:11:14Z same 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#1699251 Comment by Christopher Chase on Returning a string from a BPL function Christopher Chase 2009-11-09T05:51:23Z 2009-11-09T05:51:23Z ah didn't see that, ive added it, and there seems to be no change http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251 Comment by Christopher Chase on Returning a string from a BPL function Christopher Chase 2009-11-09T05:38:50Z 2009-11-09T05:38:50Z yes it does, added more info about the import http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function Comment by Christopher Chase on Returning a string from a BPL function Christopher Chase 2009-11-09T05:29:23Z 2009-11-09T05:29:23Z sorry the example isnt the best ill change it http://stackoverflow.com/questions/1634742/get-bpl-file-name/1634806#1634806 Comment by Christopher Chase on Get BPL File Name Christopher Chase 2009-10-28T02:31:45Z 2009-10-28T02:31:45Z Thankyou, works as expected :) http://stackoverflow.com/questions/1420085/delphi-wont-run/1420148#1420148 Comment by Christopher Chase on Delphi won't run! Christopher Chase 2009-09-14T09:48:11Z 2009-09-14T09:48:11Z i believe its enough to run the D7Reg.exe and hit cancel http://stackoverflow.com/questions/885024/useful-delphi-code-templates/885054#885054 Comment by Christopher Chase on Useful Delphi code templates Christopher Chase 2009-06-26T00:45:35Z 2009-06-26T00:45:35Z wow i have all most the same shortcut, but with out the format, I think im going to add that now :) thanks http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668646#668646 Comment by Christopher Chase on Delphi 2010 Beta: What's on your wishlist? Christopher Chase 2009-05-13T06:32:16Z 2009-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 better http://stackoverflow.com/questions/838546/delphi-canceling-a-tdataset-post-in-an-onbeforepost-event/838551#838551 Comment by Christopher Chase on Delphi: Canceling a TDataSet.Post in an OnBeforePost Event Christopher Chase 2009-05-08T07:06:20Z 2009-05-08T07:06:20Z Thankyou, that works well. seems like a bit a of a hack. But Canceling a Post is prob a bit of a hack to being with http://stackoverflow.com/questions/814648/delphi-what-are-your-dos-and-donts-tips/817888#817888 Comment by Christopher Chase on Delphi: What are your "Do's and Don'ts" tips? Christopher Chase 2009-05-03T23:37:46Z 2009-05-03T23:37:46Z Just out of interest, what would be your reasoning in this? http://stackoverflow.com/questions/576538/delphi-how-to-get-all-local-ips/576836#576836 Comment by Christopher Chase on Delphi, How to get all local IPs? Christopher Chase 2009-04-30T00:34:32Z 2009-04-30T00:34:32Z thankyou, 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#759273 Comment by Christopher Chase on How do you deal with IFDEFs in .dpr uses section Christopher Chase 2009-04-19T23:36:56Z 2009-04-19T23:36:56Z thankyou 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-another Comment by Christopher Chase on AV When using a Procedure from one Component called by another Christopher Chase 2009-03-16T22:35:53Z 2009-03-16T22:35:53Z yeh 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