User AhmetC - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T14:54:52Zhttp://stackoverflow.com/feeds/user/37601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1859609/either-bof-or-eof-is-true-or-the-current-record-has-been-deleted-error-on-app0"either bof or eof is true or the current record has been deleted.." error on applyupdates that contains a delete operation.AhmetC2009-12-07T12:07:31Z2009-12-14T00:30:44Z
<p>Hello,</p>
<p>I am getting this error while resolving delete operation from ClientDatset to TAdoDataset (which bound to access table). I am using Delphi 2010.</p>
<p>My DatasetProvider between TClientDataset and TAdoDataset :</p>
<pre><code>object dspTarifeler: TDataSetProvider
DataSet = DM.qryTarifeler
ResolveToDataSet = True
Options = [poPropogateChanges, poUseQuoteChar]
end
</code></pre>
<p>Error occurs in this function which is called by TDataSetResolver.EndUpdate();</p>
<pre><code>procedure TCustomADODataSet.InternalGotoBookmark(Bookmark: Pointer);
begin
Recordset.Bookmark := POleVariant(Bookmark)^;
end;
</code></pre>
http://stackoverflow.com/questions/1859609/either-bof-or-eof-is-true-or-the-current-record-has-been-deleted-error-on-app/1898363#18983630Answer by AhmetC for "either bof or eof is true or the current record has been deleted.." error on applyupdates that contains a delete operation.AhmetC2009-12-14T00:30:44Z2009-12-14T00:30:44Z<p>I had to bypass the provider and apply delete operation manually. it keeps error in Debug mode, but i can live with that.</p>
<pre><code>procedure Tfrm.dspTarifelerBeforeUpdateRecord(Sender: TObject;
SourceDS: TDataSet; DeltaDS: TCustomClientDataSet; UpdateKind: TUpdateKind;
var Applied: Boolean);
begin
if updatekind = ukDelete then
begin
if dm.qryTarifeler.Locate('Prefix',DeltaDs['Prefix'],[]) then
dm.qryTarifeler.Delete;
applied := true;
end;
end;
</code></pre>
http://stackoverflow.com/questions/501448/invalid-parameter-error-with-tclientdataset/1726308#17263080Answer by AhmetC for Invalid parameter error with TClientdatasetAhmetC2009-11-13T00:08:13Z2009-11-13T00:08:13Z<p>i was in same trouble, there was no apparent reason.. and then I discovered that by chance.
Switch to text view and switch back to form view in form designer (alt+f10)
Now try to do it again. It worked for me for several times. I think a bug causes that and with recreation of components it goes away..</p>
http://stackoverflow.com/questions/1511883/is-it-safe-to-pass-a-pointer-to-a-method-as-a-member-of-a-record/1512165#15121650Answer by AhmetC for Is it safe to pass a pointer to a method as a member of a record?AhmetC2009-10-02T22:46:19Z2009-10-02T22:46:19Z<p>It is safe but there are two issues that you should be aware about : </p>
<p>Records that declared as local variables are stored in the stack and they go away when the function returns. You should consider to allocate/dispose them on the heap with new/dispose functions.</p>
<p>If the DLL will be used by a program developed in other than delphi (or maybe even different versions of delpi), you have to use packed records.</p>
http://stackoverflow.com/questions/801289/emulate-incoming-network-messages-for-indy/1089195#10891950Answer by AhmetC for Emulate incoming network messages for IndyAhmetC2009-07-06T20:59:57Z2009-07-06T20:59:57Z<p>Indy has abstract stack mechanism for crossplatform support (IDStack.pas) I think u can hack the stack for windows (IdStackWindows.pas). It is a class. U can even consider to derivate it and override some functions to do the hack.</p>
http://stackoverflow.com/questions/596045/copy-tclientdataset-contents-with-field-configurations/966435#9664350Answer by AhmetC for Copy TClientDataSet contents with field configurations.AhmetC2009-06-08T19:10:18Z2009-06-08T19:10:18Z<p>Did you try <a href="http://codegearguru.com/index.php?option=com%5Fcontent&task=view&id=82&Itemid=27" rel="nofollow">TClientdataset.Clonecursor</a> ?</p>
http://stackoverflow.com/questions/920560/delphi-how-to-organize-source-code-to-increase-compiler-performance/923303#9233032Answer by AhmetC for Delphi: How to organize source code to increase compiler performance?AhmetC2009-05-28T21:29:57Z2009-05-28T21:51:16Z<ul>
<li><p><a href="http://blog.fredrikhaglund.se/blog/2006/07/03/optimized-pascal-compilation-time/" rel="nofollow">U can automatically get rid of
unnecesseary unit references, which is very efficient optimization for compiling speed.</a></p></li>
<li><p>In your situation, dividing your
project into packages can improve
compiling speed. With this way, it
just generates modified package(s),
not single massive binary for each
recompilation. Working with packages
can also help about easy deployment
of your project updates. </p></li>
<li>Turn off your live scanning antivirus</li>
</ul>
http://stackoverflow.com/questions/805475/will-delphi-be-there-in-future/811336#8113362Answer by AhmetC for Will Delphi be there in future ?AhmetC2009-05-01T13:29:03Z2009-05-01T13:29:03Z<p>(prophecy On)</p>
<p>The Delphi community will shrink and shrink 'till Embarcadero makes it open-source. And then it will rise from its ashes. Most of the old Delphi gurus will work for OSD (Open-Source Delphi) in their retirement as a hobby. And there will be also lots of young hippie geeks in OSD. David I will be the greatest grandfather in his retirement. Barry and Allen will do great things in OSD too. Nick will finally have enough time to go to the gym.</p>
<p>(prophecy Off)</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665801#66580114Answer by AhmetC for Delphi 2010 Beta: What's on your wishlist?AhmetC2009-03-20T11:46:23Z2009-03-20T11:46:23Z<p>Object friendly databinding and desingtime interaction. </p>
<p>Current databinding approach belongs to BDE times! We don't even have properly working DB independent dataset! That old architecture is discouraging programmers to develop modern layered architectures and OPF/ORM stuff. I mean seperation of Gui and bussines objects. Though this is pointless if you are happy to use TDataset descendants as bussiness objects! Some delphi programmers still think they can provide layering with just using remoting facilities (RemObjects, Datasnap) and codegear invests on Datasnap and Dbexpress! Collective delirium!</p>
<p>For Codegear :
No layering := No enterprise customers!</p>
<p>For Delphi programmers :
No layering := Time for retirement!</p>
http://stackoverflow.com/questions/618164/synchronization-for-multiple-readers-single-writer/618768#6187685Answer by AhmetC for Synchronization for multiple readers, single writer?AhmetC2009-03-06T12:54:30Z2009-03-06T12:54:30Z<p>There is a class for that purpose in RTL(sysutils) : <strong>TMultiReadExclusiveWriteSynchroniser</strong></p>
<p>It is very easy to use. You don't need to strictly categorize your threads like reader or writer. Just call "BeginRead" or "BeginWrite" in a thread for starting a thread safe operation. Call "EndRead" or "EndWrite" for finishing the operation.</p>
http://stackoverflow.com/questions/589523/delphi-ide-treating-tframe-as-if-it-were-a-form/589706#5897060Answer by AhmetC for Delphi IDE treating TFrame as if it were a FormAhmetC2009-02-26T08:54:03Z2009-02-26T08:54:03Z<p><a href="http://stackoverflow.com/questions/289672/showing-tframe-descendants-additional-properties-on-the-object-inspector">You may have to register custom module to the IDE</a>
But your additional properties won't work well unless they are in ancestor class.</p>
http://stackoverflow.com/questions/491246/how-can-i-check-that-properties-linking-to-components-is-not-lost/499038#4990381Answer by AhmetC for How can I check that Properties linking to components is not "lost"?AhmetC2009-01-31T15:46:14Z2009-01-31T15:46:14Z<p>I would use <a href="http://www.mikejustin.com/open.html" rel="nofollow">OpenCtf</a> It is based on Dunit.</p>
<blockquote>
<p>OpenCTF 1.1 - Component Test Framework
Component Test Framework</p>
<p>The OpenCTF component test framework
helps to build automatic tests for all
(visual and non-visual) VCL components
in a Delphi application. It is based
on the DUnit framework.</p>
<p>openctf_banner.gif</p>
<p>How does it work?</p>
<pre><code>* OpenCTF iterates over all specified Forms and DataModules and
</code></pre>
<p>dynamically creates DUnit test cases
for selected components
* Customized test classes detect which components have to be tested,
and configure the test steps</p>
<p>How can it help me?</p>
<p>OpenCTF provides an easy way to build
automatic quality checks for large
projects where many components have to
pass repeated tests.</p>
<p>Here are some examples:</p>
<pre><code>* detect missing or wrong property values - e.g. Buttons without assigned
Actions, DataSources without associated DataSet
* detect unassigned event handlers - e.g. missing OnExecute event
* check that all DataSets can be opened
* check the tab order
* find invisible components (e.g. invisible TabSheets which better should be hidden at runtime)
</code></pre>
</blockquote>
http://stackoverflow.com/questions/37185/whats-the-idiomatic-way-to-do-async-socket-programming-in-delphi/437602#4376020Answer by AhmetC for What's the idiomatic way to do async socket programming in Delphi?AhmetC2009-01-13T00:40:49Z2009-01-13T00:40:49Z<p>There is a free IOCP (completion ports) socket components : <a href="http://www.torry.net/authorsmore.php?id=7131" rel="nofollow">http://www.torry.net/authorsmore.php?id=7131</a> (source code included)</p>
<blockquote>
<p>"By Naberegnyh Sergey N.. High
performance socket server based on
Windows Completion Port and with using
Windows Socket Extensions. IPv6
supported. "</p>
</blockquote>
<p>i've found it while looking better components/library to rearchitecture my little instant messaging server. I haven't tried it yet but it looks good coded as a first impression.</p>
http://stackoverflow.com/questions/352543/delphi-win-api-createtimerqueuetimer-threads-and-thread-safe-formatdatetime-crash/437598#4375980Answer by AhmetC for Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashesAhmetC2009-01-13T00:38:22Z2009-01-13T00:38:22Z<p>For update2 :</p>
<p>There is a free IOCP socket components : <a href="http://www.torry.net/authorsmore.php?id=7131" rel="nofollow">http://www.torry.net/authorsmore.php?id=7131</a> (source code included)</p>
<blockquote>
<p>"By Naberegnyh Sergey N.. High
performance socket server based on
Windows Completion Port and with using
Windows Socket Extensions. IPv6
supported. "</p>
</blockquote>
<p>i've found it while looking better components/library to rearchitecture my little instant messaging server. I haven't tried it yet but it looks good coded as a first impression.</p>
http://stackoverflow.com/questions/376844/delphi-issue-with-sharing-image-lists-across-forms/377432#3774322Answer by AhmetC for Delphi issue with sharing Image Lists across formsAhmetC2008-12-18T10:11:07Z2008-12-18T10:11:07Z<p>I put kind of shared things to Datamodules instead of forms. Try with this way.</p>
<p>I am not sure but Delphi can have reference resolving problem while project has units from other directories like "..\". </p>
http://stackoverflow.com/questions/365968/how-best-to-add-plugin-capability-to-a-delphi-program/365985#3659851Answer by AhmetC for How best to add Plugin Capability to a Delphi programAhmetC2008-12-14T00:24:32Z2008-12-14T21:20:16Z<p>If plugins will be developed in Delphi or C++ builder, use packages + interfaces. Delphi OTA is a good example for that.
If plugins will be language independent, COM is a good way to go. </p>
<p>Addition: If you won't use COM, u may need to provide SDKs for each language. And datatype handling between different languages can be pain(for example delphi string type). Delphi COM support is excellent, u don't need to worry about kind of details. Those are mostly impilicit with Delphi COM support. Don't try to invent the wheel again. I'm surprised why people doesn't tend to mention about it.</p>
http://stackoverflow.com/questions/289672/showing-tframe-descendants-additional-properties-on-the-object-inspector5Showing TFrame descendant's additional properties on the object inspectorAhmetC2008-11-14T10:02:25Z2008-11-29T10:32:58Z
<p>Delphi object inspector doesn't show TFrame descendants's additional properties by design.
People tend to suggest using a known trick which is commonly used for showing TForm descendant's properties on the Object inspector. The trick is: registering custom module for TForm descendants to Delphi IDE via design time package like:</p>
<pre><code>RegisterCustomModule(TMyFrame, TCustomModule);
</code></pre>
<p>The object inspector can show additional properties of the TFrame Descendant's instance with this way but it loses its frame behaviours while it is embedded in a form. Not redesignable, not possible to implement events for its subcomponents and it accepts child controls (which it musn't). But it behaves normally in its own design area.</p>
<p>Looks like, those behaviours provided by Delphi IDE specially just for TFrame. They problaly are not kind of generic facilities. </p>
<p>Is there any other way to accomplish this without losing frame behaviours ?</p>
<p>I'm using Delphi 2007</p>
http://stackoverflow.com/questions/303642/custom-component-redraw-issue-with-delphi/304001#3040010Answer by AhmetC for Custom component redraw issue with DelphiAhmetC2008-11-20T00:42:05Z2008-11-20T02:57:56Z<p>Are you using windows Vista? There are some additional codes for vista glass thing in controls in >=delphi2007. It can be a bug related with that.</p>
http://stackoverflow.com/questions/289672/showing-tframe-descendants-additional-properties-on-the-object-inspector/302269#3022690Answer by AhmetC for Showing TFrame descendant's additional properties on the object inspectorAhmetC2008-11-19T15:31:38Z2008-11-19T15:31:38Z<p>@Tondrej,</p>
<p>Read comments for the problem, thanks in advance.</p>
<p>frameunit.dfm :</p>
<pre><code>object MyFrame: TMyFrame
Left = 0
Top = 0
Width = 303
Height = 172
TabOrder = 0
object Edit1: TEdit
Left = 66
Top = 60
Width = 151
Height = 21
TabOrder = 0
Text = 'Edit1'
end
end
</code></pre>
<p><hr /></p>
<pre><code>unit frameunit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TBaseFrame = Class(TFrame)
protected
Fstr: string;
procedure Setstr(const Value: string);virtual;
published
Property str:string read Fstr write Setstr;
End;
TMyFrame = class(TBaseFrame)
Edit1: TEdit;
private
// This won't be called in designtime. But i need this to be called in designtime
Procedure Setstr(const Value: string);override;
end;
implementation
{$R *.dfm}
{ TBaseFrame }
procedure TBaseFrame.Setstr(const Value: string);
begin
Fstr := Value;
end;
{ TMyFrame }
procedure TMyFrame.Setstr(const Value: string);
begin
inherited;
Edit1.Text := Fstr;
// Sadly this code won't work and Edit1 won't be updated in designtime.
end;
end.
</code></pre>
<p><hr /></p>
<pre><code>unit RegisterUnit;
interface
procedure Register;
implementation
uses
Windows, DesignIntf, frameunit;
procedure Register;
var
delphivclide: THandle;
TFrameModule: TCustomModuleClass;
begin
delphivclide := GetModuleHandle('delphivclide100.bpl');
if delphivclide <> 0 then
begin
TFrameModule := GetProcAddress(delphivclide, '@Vclformcontainer@TFrameModule@');
if Assigned(TFrameModule) then
begin
RegisterCustomModule(frameunit.TBaseFrame, TFrameModule);
// Just registering that won't cause Tmyframe to loose its frame behaviours
// but additional properties won't work well.
//RegisterCustomModule(frameunit.TMyFrame, TFrameModule);
// That would cause Tmyframe to lose its frame behaviours
// But additional properties would work well.
end;
end;
end;
end.
</code></pre>
http://stackoverflow.com/questions/289672/showing-tframe-descendants-additional-properties-on-the-object-inspector/294005#2940050Answer by AhmetC for Showing TFrame descendant's additional properties on the object inspectorAhmetC2008-11-16T15:39:03Z2008-11-16T15:46:21Z<p>@TOndrej,</p>
<p>Thank you for the answer.
I am using Delphi 2007 and i was using "TCustomModule" to register my frame class. (My question text was updated with those informations)
I tried your solution. As far as i understood i need to create a base class ("TBaseFrame") first and define properties in it. "TMyframe" should be derivated from it. And TBaseFrame must be registered to Delphi IDE, not TMyframe.</p>
<p>But there are some handicaps in this method :</p>
<ul>
<li><p>In design time, a TBaseFrame
instance is working instead of
Tmyframe instance. I overrode
additional properties' setter
functions in TMyframe but changing
those properties in desing time
doesn't show affect for TMyFrame.
Which is not good for
redesignability. But it works OK in
runtime. </p></li>
<li><p>I have to maintain two classes with
this method.</p></li>
</ul>
http://stackoverflow.com/questions/1859609/either-bof-or-eof-is-true-or-the-current-record-has-been-deleted-error-on-app/1861319#1861319Comment by AhmetC on "either bof or eof is true or the current record has been deleted.." error on applyupdates that contains a delete operation.AhmetC2009-12-13T22:59:35Z2009-12-13T22:59:35ZI am not considering to change vcl source, though i doubt it works because, hiding it without a fix causes another errors. Thanks anyway..http://stackoverflow.com/questions/1859609/either-bof-or-eof-is-true-or-the-current-record-has-been-deleted-error-on-app/1861319#1861319Comment by AhmetC on "either bof or eof is true or the current record has been deleted.." error on applyupdates that contains a delete operation.AhmetC2009-12-09T05:29:01Z2009-12-09T05:29:01ZThanks for the reply. It doesn't complete the job. Hiding error doesn't work. Do u know any working way to hide it?http://stackoverflow.com/questions/1544497/waiting-for-incoming-data-with-waitformultipleobjects-api-in-indy/1544556#1544556Comment by AhmetC on Waiting for incoming data with WaitForMultipleObjects api in IndyAhmetC2009-10-09T17:00:54Z2009-10-09T17:00:54ZI didn't mention it because apparently IdUdpClient doesn't manage a thread like idTcpServer does. But I should have clarify that, thanks.http://stackoverflow.com/questions/1544497/waiting-for-incoming-data-with-waitformultipleobjects-api-in-indy/1544556#1544556Comment by AhmetC on Waiting for incoming data with WaitForMultipleObjects api in IndyAhmetC2009-10-09T15:53:51Z2009-10-09T15:53:51ZI disagree specifically about idUdpClient. I am using it from my own thread. It is not created by Indy.http://stackoverflow.com/questions/1511883/is-it-safe-to-pass-a-pointer-to-a-method-as-a-member-of-a-record/1512165#1512165Comment by AhmetC on Is it safe to pass a pointer to a method as a member of a record?AhmetC2009-10-03T10:26:44Z2009-10-03T10:26:44ZYes it is not mandantory but we don't know exact structure of the record he has.http://stackoverflow.com/questions/905788/design-time-drag-and-drop-in-delphiComment by AhmetC on Design-time drag and drop in Delphi?AhmetC2009-05-25T09:44:55Z2009-05-25T09:44:55Z"the order of the child controls is determined by their creation order" What is the order ? Tab order ? Do u want to make them tab ordered from top to bottom in a panel?http://stackoverflow.com/questions/805475/will-delphi-be-there-in-future/811336#811336Comment by AhmetC on Will Delphi be there in future ?AhmetC2009-05-02T16:14:31Z2009-05-02T16:14:31ZMaybe, but at least they probably have delphi spirit... And there is an example that proves this is possible. The old guru Jim starkley kept working on firebird with support of SAS after borland make interbase open source. http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665801#665801Comment by AhmetC on Delphi 2010 Beta: What's on your wishlist?AhmetC2009-03-29T18:37:24Z2009-03-29T18:37:24ZOPF-ORM libraries stand for reconcile impedance mismatch between RDBMS and Classes in those trends. And Classes are easy for unit testing of abstract bussines logic. With instantiated datasets(schema based or not) unit testing is tricky and much more like acceptance tests.http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665801#665801Comment by AhmetC on Delphi 2010 Beta: What's on your wishlist?AhmetC2009-03-29T18:36:49Z2009-03-29T18:36:49ZIt provides nothing new in software engineering aspect. Current enterprise development trends advise developers to use domain objects which modelled as Classes in modern languages. Not with runtime instantiated datasets. http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665801#665801Comment by AhmetC on Delphi 2010 Beta: What's on your wishlist?AhmetC2009-03-29T18:35:53Z2009-03-29T18:35:53ZAnd Schemas defines column mappings for clientside datasets. Underlying remoting infrastructure is RO SDK. Actually it looks like a quality stuff, but it mostly intended for solving technical problems like remoting, network scalabliity and multi-Rdmbs support. http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665801#665801Comment by AhmetC on Delphi 2010 Beta: What's on your wishlist?AhmetC2009-03-29T18:34:39Z2009-03-29T18:34:39ZI haven't ever done coding with RO DataAbstract but i read some articles and examined its samples. So my thoughts won't be that objective. As far as i see It follows Delphi's RAD paradigm. It mostly behaves like a case tool for generating abstract schemas(abstracted from DB connection) for ubiquity.http://stackoverflow.com/questions/589523/delphi-ide-treating-tframe-as-if-it-were-a-form/589706#589706Comment by AhmetC on Delphi IDE treating TFrame as if it were a FormAhmetC2009-02-28T15:20:04Z2009-02-28T15:20:04ZThis is nothing about registering it as a regular component. You may need to register custom module in order to obtain proper designer specific behaivour. Still i am not sure because how ide is handling Tframe in design time is not transparent to programmers. But it is worth to try in my opinion.http://stackoverflow.com/questions/376844/delphi-issue-with-sharing-image-lists-across-forms/376853#376853Comment by AhmetC on Delphi issue with sharing Image Lists across formsAhmetC2008-12-18T22:41:46Z2008-12-18T22:41:46ZThis won't change the wrong designtime behaviour...http://stackoverflow.com/questions/373449/what-simple-changes-made-the-biggest-improvements-to-your-delphi-programsComment by AhmetC on What Simple Changes Made the Biggest Improvements to Your Delphi ProgramsAhmetC2008-12-17T02:13:26Z2008-12-17T02:13:26ZVery general, be more spesific.http://stackoverflow.com/questions/365968/how-best-to-add-plugin-capability-to-a-delphi-programComment by AhmetC on How best to add Plugin Capability to a Delphi programAhmetC2008-12-14T21:22:25Z2008-12-14T21:22:25ZSee additional explanation in my answer