User Harriv - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T00:32:39Zhttp://stackoverflow.com/feeds/user/7735http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852290/error-message-incorrect-values-within-sqlda-structure-with-firebird-and-delphi1Error message "Incorrect values within SQLDA structure" with Firebird and Delphi 2009Harriv2009-12-05T14:07:16Z2009-12-07T02:37:35Z
<p>Hi,</p>
<p>I'm strugling with error message "Incorrect values within SQLDA structure" when I'm trying to update blob field within Firebird 2.1 database from Delphi 2009 DBX application.</p>
<p>However I get the error message when I'm trying to execute TSQLQuery with following SQL: "update MYTABLE set FIELD1= :data where id = :id"</p>
<p>The relevant delphi code is:</p>
<pre><code>MyQuery.ParamByName('id').AsInteger := id;
MyQuery.ParamByName('data').LoadFromFile(filename, ftBlob);
MyQuery.ExecSQL();
</code></pre>
<p>Where should I be looking? This has been working in earlier Delphi versions.</p>
http://stackoverflow.com/questions/63607/rendering-svg-and-delphi1Rendering SVG and DelphiHarriv2008-09-15T14:53:05Z2009-11-27T10:54:11Z
<p>What are options to import and render SVG images with Delphi (Win32)?</p>
<p>"Interactive" component would be big advantage, I'd like to be able to modify the SVG image dynamically (change colors, line widths, texts) and get events when user clicks the image.</p>
http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi2How to use argument in a cast with DelphiHarriv2009-11-12T12:32:10Z2009-11-13T12:02:32Z
<p>How to do this in Delphi:</p>
<pre><code>procedure ToggleVisibility(ControlClass : TControlClass);
var
i : integer;
begin
for i := 0 to ComponentCount - 1 do
if Components[i] is ControlClass then
ControlClass(Components[i]).Visible := not Control(Components[i]).Visible;
end;
</code></pre>
<p>Compiler doesn't allow the cast in this case. Any ideas?</p>
<p>I'm using Delphi 2007.</p>
http://stackoverflow.com/questions/1603688/python-image-recognition/1603783#16037834Answer by Harriv for python image recognitionHarriv2009-10-21T21:30:01Z2009-11-01T10:14:10Z<p><a href="http://opencv.willowgarage.com/wiki/PythonInterface" rel="nofollow">OpenCV</a> has blob analysis tools, it will give you metrics about the shape which you can feed for your favourite pattern recognition algorithm :) Eg. rectangle has 1.0 ratio for area / (height * width), when circle's ratio is about 0.78.</p>
http://stackoverflow.com/questions/1632902/lambda-versus-list-comprehension-performance/1633053#16330530Answer by Harriv for lambda versus list comprehension performanceHarriv2009-10-27T19:15:10Z2009-10-27T19:15:10Z<p>This is pretty fast:</p>
<pre><code>def binary_search(a, x, lo=0, hi=None):
if hi is None:
hi = len(a)
while lo < hi:
mid = (lo+hi)//2
midval = a[mid]
if midval < x:
lo = mid+1
elif midval > x:
hi = mid
else:
return mid
return -1
time1 = time.time()
N = [x for x in T if binary_search(S, x) >= 0]
time2 = time.time()
print 'time diff binary search=', time2-time1
</code></pre>
<p>Simply: less comparisions, less time.</p>
http://stackoverflow.com/questions/1612339/delphi-preview-a-rave-report-on-the-form/1612607#16126070Answer by Harriv for Delphi - preview a Rave report on the formHarriv2009-10-23T10:34:58Z2009-10-23T10:34:58Z<p>I've used print preview, it's not exactly same but in my application it was enough. I don't know if it's possible to embedded inside page control.</p>
http://stackoverflow.com/questions/1593905/how-to-manipulate-an-image-at-pixel-level-in-c/1603805#16038050Answer by Harriv for How to manipulate an image at pixel level in C?Harriv2009-10-21T21:35:45Z2009-10-21T21:35:45Z<p><a href="http://en.wikipedia.org/wiki/OpenCV" rel="nofollow">OpenCV</a> is computer vision library, but can be used for "low level" tasks too. It supports BMP, DIB, JPEG, JPG, JPE, PNG, PBM, PGM, PPM, SR, RAS, TIFF, TIF.</p>
http://stackoverflow.com/questions/1601613/python-contour-for-binary-2d-matrix/1603760#16037600Answer by Harriv for python contour for binary 2D matrixHarriv2009-10-21T21:24:00Z2009-10-21T21:24:00Z<p>For more general solution, you could use somekind of edge detection method to find only the edge points. I believe (Google..) that NumPy has built-in sobel filter, which will do that.</p>
http://stackoverflow.com/questions/1603696/why-is-this-simple-python-class-not-working/1603741#16037413Answer by Harriv for Why is this simple python class not working?Harriv2009-10-21T21:20:12Z2009-10-21T21:20:12Z<p>You should use "self.lst" instead of "lst". Without the "self", it's just internal variable to current method.</p>
http://stackoverflow.com/questions/1572559/how-do-i-get-the-command-line-parameters-for-certain-button-clicks-in-a-applicati/1573604#15736041Answer by Harriv for How do I get the command-line parameters for certain button clicks in a application?Harriv2009-10-15T16:42:23Z2009-10-15T16:42:23Z<p><a href="http://www.automise.com/automise.aspx" rel="nofollow">Automise</a> might be right tool for you. It's also possible to code that, but for just one button click it might be too complicated.</p>
http://stackoverflow.com/questions/1455111/how-to-create-chrome-like-application-in-delphi-which-runs-multiple-processes-ins7How to create Chrome like application in Delphi which runs multiple processes inside one Window?Harriv2009-09-21T15:28:34Z2009-09-21T22:00:34Z
<p>Is it possible to create an "application group" which would run under one window, but in separate processes, like in Chrome browser? I'd like to divide one application into multiple parts, so that one crashing or jamming process cannot take down others, but still keep the look and feel as close to original system as possible.</p>
<p>I know the Chrome source is available, but is there anything even half ready made for Delphi?</p>
http://stackoverflow.com/questions/1405106/finding-out-position-of-a-control-inside-tgridpanel1Finding out position of a control inside TGridPanelHarriv2009-09-10T12:50:19Z2009-09-10T17:37:53Z
<p>How I can find out the position (row and column index) of controls inside TGridPanel? I'd like to use common OnClick event for number of buttons and need to know the X,Y position of the button.</p>
<p>I'm using Delphi 2007.</p>
http://stackoverflow.com/questions/388506/displaying-splash-screen-in-delphi-when-main-thread-is-busy6Displaying splash screen in Delphi when main thread is busyHarriv2008-12-23T09:42:12Z2009-09-03T06:43:01Z
<p>I'd like to display splash screen while the application is loading. However some 3rd party components block main thread during initilization for several seconds, which causes all forms not to update. Is it possible to have splash screen with own thread so it would update also when main thread is busy?</p>
<p>The application is win32 and Delphi version 2007.</p>
<p>Edit: I'm trying to avoid "undrawn splash screen" effect, which happens if some other windows (from other applications) are on the top of splash screen, eg alt-tabbing to another application and back.</p>
http://stackoverflow.com/questions/474881/open-source-machine-vision-libraries7Open source machine vision librariesHarriv2009-01-23T22:33:40Z2009-09-01T17:00:42Z
<p>Which free/open source machine/computer vision libraries do exist?</p>
<p>I'm aware of <a href="http://sourceforge.net/projects/opencvlibrary/" rel="nofollow">OpenCV</a> and <a href="http://vxl.sourceforge.net/" rel="nofollow">VxL</a>, what else is available?</p>
http://stackoverflow.com/questions/1248357/creating-a-custom-form-designer2Creating a custom form designerHarriv2009-08-08T08:31:33Z2009-08-10T08:35:20Z
<p>I'd like to create a custom "datamodule" in Delphi, a TDataModule like (maybe inherited) class which would have a custom grid based design interface (one component per line, some properties as columns). Is this possible? Where should I start?</p>
<p>I'm currently using Delphi 2007.</p>
http://stackoverflow.com/questions/1180861/how-do-you-turn-on-the-microphone/1181480#11814802Answer by Harriv for How do you turn on the microphone?Harriv2009-07-25T07:27:55Z2009-07-25T07:27:55Z<p><a href="http://www.mitov.com/html/audiolab.html" rel="nofollow">Audiolab</a> has all the needed (and more) functionality, and it's free for non-commercial use. It also supports both Win32 and .NET.</p>
<p>If you want to go low level, you need to explore one of the API's supporting recording, like <a href="http://www.techmind.org/wave/" rel="nofollow">Wave API (example in C++)</a></p>
http://stackoverflow.com/questions/1108075/how-to-bring-front-or-launch-browser-in-delphi1How to bring front or launch browser in DelphiHarriv2009-07-10T06:56:47Z2009-07-10T23:38:24Z
<p>I need to either bring front browser window if it is already running or launch the browser from my application. I'm now using ShellExecute to open a new browser, but it will eventually create many browser instances or tabs. So how to check if the browser is already running and switch the application to browser?</p>
<p>I'm currently using this:</p>
<pre><code>ShellExecute(Handle, 'open', URL, nil, nil, SW_SHOWNORMAL);
</code></pre>
http://stackoverflow.com/questions/1050724/using-tcollection-in-delphi2Using TCollection in DelphiHarriv2009-06-26T19:09:15Z2009-06-26T19:30:45Z
<p>I'm trying to create a custom component with a collection property. However if I try to open the collection editor during design time by clicking "..." button in object inspector, nothing happens. What I am missing?</p>
<p>Here's my TCollection descendant:</p>
<pre><code> TMyCollection = class(TOwnedCollection)
private
function GetItem(Index: Integer): TMyCollectionItem;
procedure SetItem(Index: Integer; const Value: TMyCollectionItem);
public
function Add : TMyCollectionItem;
property Items[Index: Integer]: TMyCollectionItem read GetItem write SetItem;
end;
</code></pre>
<p>And the item:</p>
<pre><code> TMyCollectionItem = class(TCollectionItem)
private
FValue: integer;
protected
function GetDisplayName: string; override;
public
procedure Assign(Source: TPersistent); override;
constructor Create(Collection: TCollection); override;
destructor Destroy; override;
published
property Value : integer read FValue write FValue;
end;
</code></pre>
http://stackoverflow.com/questions/1031484/why-does-sqlyog-returns-mysql-query-results-10x-faster-than-my-delphi-program/1032660#10326600Answer by Harriv for Why does SQLyog returns MySQL query results 10x faster than my Delphi program?Harriv2009-06-23T13:44:00Z2009-06-23T13:44:00Z<p>SQLyog won't probably load all 80000 rows at once, at least some db tools which I use do "load on demand" when scrolling. If you need absolutely to get all the records at once, considering using thread to execute the query and populate the internal array.</p>
http://stackoverflow.com/questions/986544/robust-unidirectional-messages-with-indy/1009574#10095740Answer by Harriv for Robust unidirectional messages with IndyHarriv2009-06-17T21:20:25Z2009-06-17T21:20:25Z<p>For simple TCP communications task I've used <a href="http://www.synapse.ararat.cz/doku.php" rel="nofollow">Synapse</a> package, it's not as bloated as Indy and feels "cleaner" to use.</p>
<p>From my recent code:</p>
<pre><code>procedure SendMessage(m: string);
var
sock : TTCPBlockSocket;
response : string;
begin
Sock := TTCPBlockSocket.Create;
try
Sock.SetTimeout(200);
Sock.Connect(PrinterServerAddr, IntToStr(PrinterServerPort));
Sock.SendString(m);
response := Sock.RecvString(1000);
finally
Sock.Free;
end;
end;
..
try
SendMessage(NewMessage);
except
//..handle exception..
end;
</code></pre>
<p>Wrap that inside TThread if you want to avoid blocking your current thread.</p>
http://stackoverflow.com/questions/986544/robust-unidirectional-messages-with-indy/988115#9881150Answer by Harriv for Robust unidirectional messages with IndyHarriv2009-06-12T17:59:33Z2009-06-12T17:59:33Z<p>If possible, consider using UDP. It's "connectionless", so sender will just send the message and receiving application will receive it if it is listening to the port. However the sender doesn't get any confirmation about the delivery unless the server sends some kind of acknowledgement.</p>
http://stackoverflow.com/questions/244750/ajax-console-window-with-ansi-vt100-support1AJAX console window with ANSI/VT100 support?Harriv2008-10-28T20:32:24Z2009-06-08T06:47:26Z
<p>I'm planning to write gateway web application, which would need "terminal window" with VT100/ANSI escape code support. Are there any AJAX based alternatives for such a task?</p>
<p>I'm thinking something like this: <a href="http://tryruby.hobix.com/" rel="nofollow">http://tryruby.hobix.com/</a></p>
<p>My preferred backend for the system is Python/Twisted/Pylons, but since I'm just planning, I will explore every option.</p>
http://stackoverflow.com/questions/950658/importing-d7-dpr-in-delphi-2009-invalid-character-in-text-content/956288#9562880Answer by Harriv for Importing D7 DPR in Delphi 2009: "Invalid character in text content"Harriv2009-06-05T14:48:45Z2009-06-05T14:48:45Z<p>Sounds like you have non-compatible 8-bit character in your .dpr file. Maybe it helps if you either clean the file or convert it to utf-8 with some text editor and try again.</p>
http://stackoverflow.com/questions/887252/machine-vision-in-python/930145#9301450Answer by Harriv for Machine vision in PythonHarriv2009-05-30T17:20:31Z2009-05-30T17:20:31Z<p>I've acquired image from FW camera using .NET and IronPython. On CPython I would checkout ctypes library, unless you find any library support for grabbing.</p>
http://stackoverflow.com/questions/882223/does-firebird-need-manual-reindexing/882274#8822742Answer by Harriv for Does Firebird need manual reindexing?Harriv2009-05-19T11:52:25Z2009-05-19T11:52:25Z<p>That does not reindex, it recomputes weights for indexes, which are used by optimizer to select most optimal index. You don't need to do that unless index size changes a lot. If you create the index before you add data, you need to do the recalculation.</p>
<p>Embedded and Server should have exactly same functionality apart the process model.</p>
http://stackoverflow.com/questions/792598/net-remoting-and-delphi-win321.NET remoting and Delphi win32Harriv2009-04-27T08:07:22Z2009-05-06T17:25:10Z
<p>Hi,</p>
<p>Is it possible (and feasible) to use .NET Remoting interface with Delphi win32 application?</p>
<p>I need communication between .NET application and Delphi win32 application, so .NET remoting would be native for other end of the pipe.</p>
<p>Any other solutions, as close to native as possible, for both ends without 3rd party libraries? Applications will be running each on a separate Windows machine.</p>
http://stackoverflow.com/questions/825925/resources-on-human-simulator-design-think-13th-floor/826369#8263690Answer by Harriv for Resources on human simulator design. (think 13th floor)Harriv2009-05-05T18:49:06Z2009-05-05T18:49:06Z<p>You should look at <a href="http://en.wikipedia.org/wiki/Discrete%5Fevent%5Fsimulation" rel="nofollow">discrete event simulation</a> frameworks (there's link to the list at the end). I only know <a href="http://simpy.sourceforge.net/" rel="nofollow">SimPy</a> for Python, but there are others, open source and commercial. Basic framework is also pretty simple, so it should be easy "programming exercise".</p>
http://stackoverflow.com/questions/808961/fxcop-stylecop-for-delphi/809343#8093438Answer by Harriv for FxCop / StyleCop for Delphi?Harriv2009-04-30T22:09:34Z2009-04-30T22:09:34Z<p>There's Pascal Analyzer from Peganza: <a href="http://www.peganza.com/products_pal.htm" rel="nofollow">http://www.peganza.com/products_pal.htm</a></p>
<p>I don't know how the features compare to FxCop, since I haven't really used either one.</p>
http://stackoverflow.com/questions/801432/how-to-create-idle-like-functionality-to-winforms-application0How to create IDLE -like functionality to WinForms applicationHarriv2009-04-29T08:28:24Z2009-04-30T21:34:55Z
<p>Hi,</p>
<p>I'd like to add "IDLE-like functionality" to C# WinForms application, but I don't quite have an idea how to do that and couldn't find anything useful with Google.</p>
<p>So basically I want interactive command line interface, where user could enter some Python code and execute it (not just expressions, should be possible to define new functions).</p>
<p>So, where to start? Are there any good tutorials or samples available?</p>
http://stackoverflow.com/questions/801432/how-to-create-idle-like-functionality-to-winforms-application/809220#8092200Answer by Harriv for How to create IDLE -like functionality to WinForms applicationHarriv2009-04-30T21:34:55Z2009-04-30T21:34:55Z<p>Thru IronPython mailing list I found <a href="http://www.codeproject.com/KB/edit/irontextbox2.aspx" rel="nofollow">IronTextBox2</a>, which is good example how things are done. It needs a little tweaking, to get it running, but otherwise is good solution.</p>
http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi/1722034#1722034Comment by Harriv on How to use argument in a cast with DelphiHarriv2009-11-13T12:09:03Z2009-11-13T12:09:03ZInteresting solution, but complicated. Is there ever reason for using this kind of solution?http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi/1721936#1721936Comment by Harriv on How to use argument in a cast with DelphiHarriv2009-11-13T12:07:58Z2009-11-13T12:07:58ZOf course, I wonder why i didn't think this myself.http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi/1721931#1721931Comment by Harriv on How to use argument in a cast with DelphiHarriv2009-11-13T12:07:11Z2009-11-13T12:07:11ZThis is great, I didn't know this difference between hard and safe type casting.http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphiComment by Harriv on How to use argument in a cast with DelphiHarriv2009-11-13T12:02:04Z2009-11-13T12:02:04ZJeroen, you're right.http://stackoverflow.com/questions/1721852/not-more-than-4-gb-allowed-on-64bit-processor/1721914#1721914Comment by Harriv on Not more than 4 GB allowed on 64bit processor!!Harriv2009-11-12T12:42:20Z2009-11-12T12:42:20ZHow it is crashing?http://stackoverflow.com/questions/1721852/not-more-than-4-gb-allowed-on-64bit-processor/1721882#1721882Comment by Harriv on Not more than 4 GB allowed on 64bit processor!!Harriv2009-11-12T12:35:07Z2009-11-12T12:35:07Z32bit or 64bit version? Which edition?http://stackoverflow.com/questions/1721852/not-more-than-4-gb-allowed-on-64bit-processorComment by Harriv on Not more than 4 GB allowed on 64bit processor!!Harriv2009-11-12T12:33:00Z2009-11-12T12:33:00ZWhich operating system? Which compiler?http://stackoverflow.com/questions/1680109/developing-nested-applicationsComment by Harriv on Developing nested applicationsHarriv2009-11-05T13:22:45Z2009-11-05T13:22:45ZAnother related question: <a href="http://stackoverflow.com/questions/1455111/how-to-create-chrome-like-application-in-delphi-which-runs-multiple-processes-ins" rel="nofollow" title="how to create chrome like application in delphi which runs multiple processes ins">stackoverflow.com/questions/1455111/…</a>http://stackoverflow.com/questions/1632902/lambda-versus-list-comprehension-performance/1633053#1633053Comment by Harriv on lambda versus list comprehension performanceHarriv2009-10-27T19:16:15Z2009-10-27T19:16:15ZAlso note that S should be ordered list when using binary search.http://stackoverflow.com/questions/1632902/lambda-versus-list-comprehension-performance/1633053#1633053Comment by Harriv on lambda versus list comprehension performanceHarriv2009-10-27T19:15:35Z2009-10-27T19:15:35ZBinary search copy-pasted from here: <a href="http://stackoverflow.com/questions/212358/binary-search-in-python" rel="nofollow" title="binary search in python">stackoverflow.com/questions/212358/…</a>
http://stackoverflow.com/questions/1612089/find-current-method-name-in-delphiComment by Harriv on Find current method name in DelphiHarriv2009-10-23T10:35:52Z2009-10-23T10:35:52ZWhich Delphi version?http://stackoverflow.com/questions/1601613/python-contour-for-binary-2d-matrix/1603760#1603760Comment by Harriv on python contour for binary 2D matrixHarriv2009-10-22T13:31:13Z2009-10-22T13:31:13ZIn machine vision application I've been using there's contour output in blob tool, but unfortunately I don't see such feature in OpenCV. That would've been elegant solution..
http://stackoverflow.com/questions/1601613/python-contour-for-binary-2d-matrix/1603760#1603760Comment by Harriv on python contour for binary 2D matrixHarriv2009-10-22T09:32:54Z2009-10-22T09:32:54ZOh wait, you got the example image with sobel and it has too many points?http://stackoverflow.com/questions/1601613/python-contour-for-binary-2d-matrix/1603760#1603760Comment by Harriv on python contour for binary 2D matrixHarriv2009-10-22T09:32:24Z2009-10-22T09:32:24ZThe filter will give you the bitmap/matrix where you can find all the indices like you did in your code.
http://stackoverflow.com/questions/1603688/python-image-recognition/1603783#1603783Comment by Harriv on python image recognitionHarriv2009-10-22T09:30:35Z2009-10-22T09:30:35ZThat's true, you should select the set of features which are most meaningful for the set of the objects you're trying to recognize. Fill ratio is only one feature.