User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T00:24:52Zhttp://stackoverflow.com/feeds/user/81126http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1326174/how-to-get-the-correction-commands-while-doing-free-dictation-with-sapi-5-31How to get the correction commands while doing free dictation with sapi 5.3?unknown (yahoo)2009-08-25T05:11:11Z2009-10-07T22:25:40Z
<p>I have an sample application that do basic dictation with sapi 5.3.<br />
It works well to input text with punctuation...<br />
What would I need to do to enable the correction functionality as in the tutorial (correct word, select ...)?<br />
Is there a specific grammar to load (which and how), some specific events to implement?</p>
http://stackoverflow.com/questions/800505/delphi-exe-compressor/806087#8060870Answer by unknown (yahoo) for Delphi EXE compressor?unknown (yahoo)2009-04-30T09:25:36Z2009-04-30T09:25:36Z<p>The main inconvenience of a compressed EXE or DLL is that the OS cannot share the code amongst multiple instances.<br />
So you're wasting memory, have to decompress each time you start an instance, exhibit a virus-like behavior without even an download advantage over a compressed install.<br />
Only positive case is when launching directly from a network drive.</p>
http://stackoverflow.com/questions/780854/number-of-items-stored-in-bucket-list/780904#7809042Answer by unknown (yahoo) for Number of items stored in Bucket listunknown (yahoo)2009-04-23T09:13:45Z2009-04-23T09:13:45Z<p>There is no other solution without having to keep a counter in sync with the content.<br />
It's basically a collection of collections.</p>
http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/672777#6727771Answer by unknown (yahoo) for What is the best way to do nested TRY AND FINALLY statement in Delphiunknown (yahoo)2009-03-23T09:59:09Z2009-03-23T09:59:09Z<p>If you want to go this (IMO) ugly route (group handling with initialization to nil to know if freeing is needed), you at least MUST guarantee that you won't let an exception in one of the destructor prevent from freeing the rest of your objects.<br />
Something like: </p>
<pre><code>function SafeFreeAndNil(AnObject: TObject): Boolean;
begin
try
FreeAndNil(AnObject);
Result := True;
except
Result := False;
end;
end;
var cds1 : TClientDataSet;
cds2 : TClientDataSet;
IsOK1 : Boolean;
IsOK2 : Boolean;
begin
cds1 := Nil;
cds2 := Nil;
try
cds1 := TClientDataSet.Create(nil);
cds2 := TClientDataSet.Create(nil);
///////////////////////////////////////////////////////////////////////
/// DO WHAT NEEDS TO BE DONE
///////////////////////////////////////////////////////////////////////
finally
IsOk2 := SafeFreeAndNil(cds2); // an error in freeing cds2 won't stop execution
IsOK1 := SafeFreeAndNil(Cds1);
if not(IsOk1 and IsOk2) then
raise EWhatever....
end;
end;
</code></pre>
http://stackoverflow.com/questions/667798/how-to-set-delphi-bookmarks-on-vista-64-bit/672644#6726442Answer by unknown (yahoo) for How to set Delphi bookmarks on Vista 64-bitunknown (yahoo)2009-03-23T09:13:08Z2009-03-23T09:13:08Z<p>Verify that you don't have system wide hot keys that conflict with those. I had the same problem with Trillian hijacking some Delphi shortcuts.</p>
http://stackoverflow.com/questions/668943/d2010-beta-the-perfect-way-to-support-multi-core/672632#6726323Answer by unknown (yahoo) for D2010 Beta: The Perfect Way to support Multi-Coreunknown (yahoo)2009-03-23T09:09:19Z2009-03-23T09:09:19Z<p>Make it compatible with the Async calls in Delphi Prism, at least syntactically.</p>
http://stackoverflow.com/questions/804848/critical-sections-leaking-memory-on-vista-win2008/804950#804950Comment by on Critical Sections leaking memory on Vista/Win2008?2009-04-30T09:53:00Z2009-04-30T09:53:00ZDid you measure the initial memory footprint, before while(true), and just before returning?