User utku_karatas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T15:30:49Z http://stackoverflow.com/feeds/user/14716 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/175044/django-development-ide/1831510#1831510 1 Answer by utku_karatas for django development IDE utku_karatas 2009-12-02T08:43:51Z 2009-12-02T08:43:51Z <p>Well I've been using my own one. And very selfish at that as I haven't released it publicly yet :) </p> <p>I'm planning to release it as shareware soon but in the meantime <a href="http://pfaide.com" rel="nofollow">you can visit the homepage</a> and subscribe for the release notification. </p> <p><img src="http://pfaide.com/static/scrshot.png" alt="alt text"></p> http://stackoverflow.com/questions/1769719/how-to-catch-onmouseleave-event-for-tdatetimepicker-component-in-delphi-7/1769882#1769882 0 Answer by utku_karatas for How to catch onmouseleave event for TDateTimePicker component in Delphi 7 utku_karatas 2009-11-20T11:27:09Z 2009-11-20T11:27:09Z <p><a href="http://jvcl.delphi-jedi.org/" rel="nofollow">JVCL</a> has a datetimepicker control and it should have OnMouseEnter/OnMouseLeave events regardless of Delphi version (AFAIK all JVCL controls have those).</p> http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251 1 Answer by utku_karatas for Returning a string from a BPL function utku_karatas 2009-11-09T05:37:43Z 2009-11-09T05:37:43Z <p>Does your import declaration exactly match the exported function's signature? </p> <p>Must be like this:</p> <pre><code>DoAProc: function (amount: currency; var Info: string): Currency; stdcall; </code></pre> http://stackoverflow.com/questions/1698922/override-default-show-behaviour-setvisible-of-tforms-descendant-delphi-vcl/1699168#1699168 1 Answer by utku_karatas for Override default Show behaviour / SetVisible of TForm's descendant (Delphi VCL) utku_karatas 2009-11-09T04:59:40Z 2009-11-09T04:59:40Z <p>You can override the protected TCustomForm.VisibleChanging.</p> http://stackoverflow.com/questions/1685392/trouble-playing-with-indexed-propertes-via-new-rtti-d2010 2 Trouble playing with indexed propertes via new RTTI [D2010] utku_karatas 2009-11-06T04:22:43Z 2009-11-07T03:57:50Z <pre><code> ShowMessage(TRttiContext.Create.GetType(TStringList) .GetProperty('Strings').ToString); </code></pre> <p>Above code fails as .GetProperty returns nil on properties like "Strings", "Objects", "Values" (ones with indexers). I assume this is a known limitation and the question is if there's any way to access those indexed properties (preferably without falling back to the old RTTI utils).</p> http://stackoverflow.com/questions/497654/django-workflow-when-modifying-models-frequently 9 Django workflow when modifying models frequently? utku_karatas 2009-01-30T23:18:54Z 2009-10-30T19:17:16Z <p>Hi gents, as I usually don't do the up front design of my models in Django projects I end up modifying the models a lot and thus deleting my test database every time (because "syncdb" won't ever alter the tables automatically for you). Below lies my workflow and I'd like to hear about yours. Any thoughts welcome.. </p> <ol> <li>Modify the model.</li> <li>Delete the test database. (always a simple sqlite database for me.)</li> <li>Run "syncdb".</li> <li>Generate some test data via code.</li> <li>goto 1.</li> </ol> <p>A secondary question regarding this.. In case your workflow is like above, how do you execute the 4. step? Do you generate the test data manually or is there a proper hook point in Django apps where you can inject the test-data-generating-code at server startup?\</p> <p>TIA.</p> http://stackoverflow.com/questions/1636132/opacity-of-a-twincontrol 1 Opacity of a TWinControl? utku_karatas 2009-10-28T09:39:21Z 2009-10-28T13:35:12Z <p>How could one change the opacity of a TWinControl based control? And why didn't they add this capability to TControl/TWinControl level (why only TForm)? </p> http://stackoverflow.com/questions/1482461/how-to-set-event-handlers-via-new-rtti-d2010 3 How to set event handlers via new RTTI? [D2010] utku_karatas 2009-09-27T00:10:14Z 2009-09-27T00:47:20Z <p>Hi all,</p> <p>Playing with new RTTI module, I couldn't find a way to set an event handler with the new utilities. Trying something like this:</p> <pre><code>LProp := TRttiContext.Create.GetType(Form1.ClassInfo).AsInstance.GetProperty('OnClick'); LProp.SetValue(Form1, {a TValue!}); </code></pre> <p>SetValue needs a TValue passed but I've yet to find a way to represent a TMethod via a TValue. Any comments?</p> <p>ps. And a side question.. It seems prefixing RTTI variables with "L" is a convention (and a good one IMO, meta code turns into a puzzle real quick). But what does it actually stand for?</p> http://stackoverflow.com/questions/1478389/findfirst-findnext-listing-files-but-not-directories/1478463#1478463 2 Answer by utku_karatas for Findfirst, findnext listing files but not directories... ? utku_karatas 2009-09-25T17:01:18Z 2009-09-25T17:12:56Z <p>What about findfirst('c:\test\*', <strong>faanyfile</strong>, rec); // not faanyfile-fadirectory</p> http://stackoverflow.com/questions/277514/delphi-how-do-you-auto-update-your-applications 9 Delphi: How do you auto-update your applications? utku_karatas 2008-11-10T10:15:58Z 2009-09-23T21:46:19Z <p>Hi gents, I've been thinking of rolling my own code for enabling my Delphi application to update seamlessly as I'll be going for "release often, release early" mentality furthermore. There are various Delphi solutions both freeware or paid out there and I'd like to ask if you've been using any of them or simply went on with your own solutions in this area? Any comments on the auto-update topic welcome. TIA.</p> http://stackoverflow.com/questions/1458720/migrate-to-delphi-2009-invalid-typecast-problem/1458736#1458736 9 Answer by utku_karatas for Migrate to Delphi 2009 - Invalid Typecast problem utku_karatas 2009-09-22T08:14:36Z 2009-09-22T15:27:21Z <p>"char" is now a 2 byte data type. What happens if you change the declaration to "ansichar"? (That is the equivalent of "char" in Delphi &lt;= 2007).</p> http://stackoverflow.com/questions/1452215/elegant-way-for-handling-this-string-issue-unicode-pansistring-issue 2 Elegant way for handling this string issue. (Unicode-PAnsiString issue) utku_karatas 2009-09-20T22:42:37Z 2009-09-22T04:13:13Z <p>Consider the following scenario:</p> <pre><code>type PStructureForSomeCDLL = ^TStructureForSomeCDLL; TStructureForSomeCDLL = record pName: PAnsiChar; end function FillStructureForDLL: PStructureForSomeDLL; begin New(Result); // Result.pName := PAnsiChar(SomeObject.SomeString); // Old D7 code working all right Result.pName := Utf8ToAnsi(UTF8Encode(SomeObject.SomeString)); // New problematic unicode version end; ...code to pass FillStructureForDLL to DLL... </code></pre> <p>The problem in unicode version is that the string conversion involved now returns a new string on stack and that's reclaimed at the end of the FillStructureForDLL call, leaving the DLL with corrupted data. In old D7 code, there were no intermediate conversion funcs and thus no problem.</p> <p>My current solution is a converter function like below, which is IMO too much of an hack. Is there a more elegant way of achieving the same result?</p> <pre><code>var gKeepStrings: array of AnsiString; { Convert the given Unicode value S to ANSI and increase the ref. count of it so that returned pointer stays valid } function ConvertToPAnsiChar(const S: string): PAnsiChar; var temp: AnsiString; begin SetLength(gKeepStrings, Length(gKeepStrings) + 1); temp := Utf8ToAnsi(UTF8Encode(S)); gKeepStrings[High(gKeepStrings)] := temp; // keeps the resulting pointer valid // by incresing the ref. count of temp. Result := PAnsiChar(temp); end; </code></pre> http://stackoverflow.com/questions/1452369/can-anyone-suggest-a-dbms-which-is-fast-and-efficient-at-writes/1452395#1452395 1 Answer by utku_karatas for Can anyone suggest a DBMS which is fast and efficient at writes? utku_karatas 2009-09-21T00:11:24Z 2009-09-21T00:11:24Z <p><a href="http://www.mongodb.org/display/DOCS/Home" rel="nofollow">MongoDB</a> is supposed to be good at this. <a href="http://blog.mongodb.org/post/172254834/mongodb-is-fantastic-for-logging" rel="nofollow">Have a look at this post especially.</a></p> http://stackoverflow.com/questions/1446750/assorted-list-of-whats-new-in-delphi-language-rtl-vcl 1 Assorted list of what's new in Delphi [Language, RTL, VCL]? utku_karatas 2009-09-18T20:42:38Z 2009-09-18T21:58:14Z <p>Hi gents, </p> <p>As someone who's been stuck at the older versions of Delphi and upgraded to D2010 lately, I figure I still use the language, RTL and VCL features from the D5 era and refrain from using these new features as the documents on those are somewhat decentralized around the blogospehere. So I'd like to ask if there was an assorted list like <a href="http://docs.python.org/whatsnew/index.html" rel="nofollow">what's new docs of Python's</a> - clear and concise to the point.</p> <p>Btw, please no screenshots. They seem to be quite abundant lately (probably because of CodeRages) but I find them very unintuitive to learn from. Let's leave that docs in video format thing to RoR community, shall we :).</p> http://stackoverflow.com/questions/1422546/delphi-2009-unicode-replacement-for-jvappstorage/1422755#1422755 1 Answer by utku_karatas for Delphi < 2009, unicode replacement for JvAppStorage. utku_karatas 2009-09-14T16:59:30Z 2009-09-14T16:59:30Z <p>Recently converted to JSON from ini files (and dreaded xml!) for setting storage. It's just so convenient and flexible. See <a href="http://www.progdigy.com/?page%5Fid=6" rel="nofollow">SuperObject</a>.</p> http://stackoverflow.com/questions/1421058/loc-lines-of-code-metrics-for-delphi 2 LoC (lines of code) metrics for Delphi? utku_karatas 2009-09-14T11:45:14Z 2009-09-14T15:57:29Z <p>What do you use to measure LoC metrics of your projects?</p> http://stackoverflow.com/questions/662448/delphi-drag-images-challenge 1 Delphi drag images challenge utku_karatas 2009-03-19T14:37:23Z 2009-09-09T21:41:10Z <p>Hi all,</p> <p>The code below enables a control (a label for instance) to show drag images while the dragging operation. </p> <p>My problem is that I do <strong>not</strong> want to show the drag image instanly when the dragging begins, I want the image to be displayed <strong>when</strong> the mouse is on specific boundaries of the control - eg. in the right half of the label . </p> <p>So far I haven't been able to find a solution for this - the image just gets displayed instantly (unless I modify the VCL source). I appreciate any tricks at this point to get the desired behaviour before abondoning VCL drag&amp;drop utilities and roll a custom one capturing the mouse.</p> <p>Here's an example pseudocode to enable drag images for a label.. </p> <pre><code>{ turn on dragging } Label1.DragMode := dmManual; Label1.ControlStyle := Label1.ControlStyle + [csDisplayDragImage]; type // VCL needs this for getting drag images.. TMyDragObject = class(TDragControlObject) protected function GetDragImages: TDragImageList; override; end; function TMyDragObject.GetDragImages: TDragImageList; begin Result := Form1.ImageList1; end; procedure TForm1.Label1MouseDown(...); begin { start the dragging manually } Label1.BeginDrag(False, 4); // the problem area! image is shown instantly at here! end; procedure TForm1.Label1StartDrag(Sender: TObject; var DragObject: TDragObject); var b : TBitmap; begin ImageList1.Clear; DragObject := TMyDragObject.Create(self); b := TBitmap.Create; try b.Width := ImageList1.Width; b.Height := ImageList1.Height; b.LoadFromFile('/path/to/image'); ImageList1.Add(b, nil); finally b.Free; end; end; procedure TForm1.Label1MouseMove(...); begin if X &gt; Label1.Width div 2 then // right half // ??? - do show the drag image else // ??? - no drage image should be shown end; </code></pre> http://stackoverflow.com/questions/1398873/pass-a-delphi-set-to-an-external-delphi-function-from-c/1399085#1399085 2 Answer by utku_karatas for Pass a Delphi set to an external Delphi function from C# utku_karatas 2009-09-09T11:23:55Z 2009-09-09T11:32:15Z <p>Ideally you should never expose set involving interfaces to other languages as most languages don't have the notion but technically what you want is possible. </p> <p>As you say sets are simple bitfields Delphi automatically manages for you but it's trickier than that because the size of a set variable depends on the number of set elements. Sets can have up to 256 elements and this makes it possible that a set variable can hold between 1 to 32 bytes in memory.</p> <p>This in mind, you could do some bit fiddling on a byte value and pass it to a Delphi call as your set can only contain 4 elements.</p> http://stackoverflow.com/questions/1396721/delphi-vcl-for-win32-multiple-event-handlers/1398875#1398875 0 Answer by utku_karatas for Delphi VCL for Win32 - multiple event handlers. utku_karatas 2009-09-09T10:41:36Z 2009-09-09T10:41:36Z <p>If you're implementing a plugin system, I think, you can't just get away with event handlers - be it multicast or not. I suggest having a look at <a href="http://blogs.teamb.com/joannacarter/articles/690.aspx" rel="nofollow">observer pattern</a>. Might sound a little bit too verbose near multicast events but at least more flexible when you need.</p> http://stackoverflow.com/questions/1398763/delphi-pchar-to-c-const-char/1398790#1398790 3 Answer by utku_karatas for Delphi PChar to C++ const char* utku_karatas 2009-09-09T10:21:58Z 2009-09-09T10:21:58Z <p>If I understand correctly your function prototype should be stdcall as well.</p> <pre><code>function Setup(ip, port: PChar):Integer: virtual; stdcall; abstract; </code></pre> <p>ps. Delphi strings are already null-terminated. </p> http://stackoverflow.com/questions/1396736/synedit-regex-search/1397994#1397994 2 Answer by utku_karatas for SynEdit & RegEx search utku_karatas 2009-09-09T07:10:25Z 2009-09-09T07:10:25Z <p>Synedit comes with a builtin regex library and you can see an example search&amp;replace application in the demos folder.</p> http://stackoverflow.com/questions/1369288/can-a-batch-script-know-if-its-called-from-powershell 1 Can a Batch script know if it's called from PowerShell? utku_karatas 2009-09-02T18:10:42Z 2009-09-03T04:05:25Z <p>Is there any way a batch script can know if it's called from PowerShell (without extra parameters feeded)?</p> <p>Need something like..</p> <pre><code>if (%THIS_BATCH_CALLED_FROM_POWERSHELL%) ... warn the user or drop back to powershell to execute the proper instructions... </code></pre> <p>Question related with <a href="http://stackoverflow.com/questions/1365081/virtualenv-in-powershell/1365119#1365119">this question - virtualenv-in-powershell</a>.</p> http://stackoverflow.com/questions/1365081/virtualenv-in-powershell 0 virtualenv in PowerShell? utku_karatas 2009-09-01T23:03:59Z 2009-09-02T02:36:52Z <p>Hi fellow pythonistas, there seems to be a problem when <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow">virtualenv</a> is used in PowerShell.</p> <p>When I try to activate my environment in PowerShell like..</p> <p>&gt; env/scripts/activate</p> <p>.. nothing happens. (the shell prompt should have changed as well as the PATH env. variable .)</p> <p>I guess the problem is that PowerShell spawns a new cmd. process just for running the activate.bat thus rendering the changes activate.bat does to the shell dead after it completes. </p> <p>Do you have any workarounds for the issue? (I'm sticking with cmd.exe for now)</p> http://stackoverflow.com/questions/1322425/django-admin-bulk-editing-data 0 Django Admin - Bulk editing data? utku_karatas 2009-08-24T13:30:04Z 2009-08-24T13:34:59Z <p>Are there any admin extensions to let bulk editing data in Django Admin? (ie. Changing the <em>picture</em> fields of all <em>product</em> models at once. Note that this is needed for a users POV so scripting doesn't count.) Any thoughts on subject welcome.</p> http://stackoverflow.com/questions/1311715/list-products-by-category-in-django-template/1313443#1313443 0 Answer by utku_karatas for List products by category in Django template utku_karatas 2009-08-21T18:08:31Z 2009-08-21T18:08:31Z <p>In addition to what @Wade suggests you can also add a method to your Category model to return the products it has. </p> <p>Example..</p> <pre><code>class Category: ... ... def get_products(self): return Product.objects.filter(category=self) </code></pre> <p>Then in a template you can..</p> <pre><code>{% for category in categories %} # assuming categories is passed from the view. {% for product in category.get_products %} ... </code></pre> http://stackoverflow.com/questions/1298842/getting-django-admin-class-variables-from-a-view/1299704#1299704 0 Answer by utku_karatas for Getting Django Admin class variables from a view utku_karatas 2009-08-19T12:47:12Z 2009-08-19T12:47:12Z <p>So you want access to associated ModelAdmin objects from the model instance? How about this:</p> <pre><code>from django.contrib import admin print admin.site._registry[Order].list_display </code></pre> http://stackoverflow.com/questions/1291755/how-can-i-tell-whether-my-django-application-is-running-on-development-server-or/1292019#1292019 0 Answer by utku_karatas for How can I tell whether my Django application is running on development server or not? utku_karatas 2009-08-18T05:44:47Z 2009-08-18T05:44:47Z <p>Relying on settings.DEBUG is the most elegant way AFAICS as it is also used in Django code base on occasion. </p> <p>I suppose what you really want is a way to set that flag automatically without needing you update it manually everytime you upload the project to production servers. </p> <p>For that I check the path of settings.py (in settings.py) to determine what server the project is running on:</p> <pre><code>if __file__ == "path to settings.py in my development machine": DEBUG = True elif __file__ in [paths of production servers]: DEBUG = False else: raise WhereTheHellIsThisServedException() </code></pre> <p>Mind you, you might also prefer doing this check with environment variables as @Soviut suggests. But as someone developing on Windows and serving on Linux checking the file paths was plain easier than going with environment variables.</p> http://stackoverflow.com/questions/1285558/how-do-you-render-a-django-form-in-a-view/1285683#1285683 3 Answer by utku_karatas for How do you render a django form in a view? utku_karatas 2009-08-16T23:57:32Z 2009-08-16T23:57:32Z <p>As <a href="http://docs.djangoproject.com/en/dev/topics/forms/#displaying-a-form-using-a-template" rel="nofollow">explained here</a>, form instances have some predefined rendering methods like <code>as_table</code>, <code>as_ul</code>, <code>as_p</code> that you can use in templates. </p> <p><code>as_table</code> seems to cut your needs but in case not, you can easily add your custom rendering methods to your own form classes. Having a look at django.forms.forms.BaseForm class is a good idea at this point.</p> http://stackoverflow.com/questions/262089/back-end-choice-for-a-new-dynamic-programming-language 8 Back-end choice for a new dynamic programming language? utku_karatas 2008-11-04T15:08:28Z 2009-08-06T10:05:36Z <p>I've been developing a Smalltalk variant for just the fun of it and I wonder what would be a fellow stackoverflowers choice when it comes to targeting a back-end. These were my current considerations:</p> <p>.NET, JVM: These two VM's are mainly for statically typed languages and I assume it would be quite hard to target such a dynamic language like smalltalk.</p> <p>Python (as source code): Seems to be the simplest way. Also it would be better if I could emit Python bytecode but it's not well documented as other VM's AFAIK (Need to dig Python's source code for details!). </p> <p>Self made interpreter: Out of the question as it's no fun :-)</p> <p>LLVM, NekoVM, Parrot are other options I'm checking out. What would be your take on this?</p> http://stackoverflow.com/questions/1216888/open-source-editors-using-unisynedit-except-dev-php-dev-c/1217407#1217407 0 Answer by utku_karatas for Open source editors using (Uni)SynEdit [except Dev-PHP/Dev-C++] utku_karatas 2009-08-01T20:22:36Z 2009-08-01T20:22:36Z <p>There is <a href="http://sourceforge.net/projects/syn/" rel="nofollow">Syn text editor</a>. Somewhat dated but should give you an idea.</p> http://stackoverflow.com/questions/1721700/how-to-determine-if-the-mouse-cursor-is-inside-a-control/1721769#1721769 Comment by utku_karatas on How to determine if the mouse cursor is inside a control utku_karatas 2009-11-12T15:23:17Z 2009-11-12T15:23:17Z The problem with mouseenter/leave way is that those events are fired for the child controls too. So David M's solution gets my vote. http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251 Comment by utku_karatas on Returning a string from a BPL function utku_karatas 2009-11-09T06:19:39Z 2009-11-09T06:19:39Z Not sure if fastmm would add extra help that the debugger can't. http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251 Comment by utku_karatas on Returning a string from a BPL function utku_karatas 2009-11-09T06:08:10Z 2009-11-09T06:08:10Z Strange. Ok, here's a wild shot - are both projects compiled with same Delphi version and same memory managers? http://stackoverflow.com/questions/1699195/returning-a-string-from-a-bpl-function/1699251#1699251 Comment by utku_karatas on Returning a string from a BPL function utku_karatas 2009-11-09T05:39:24Z 2009-11-09T05:39:24Z and it seems stdcall; directive is missing. http://stackoverflow.com/questions/1685392/trouble-playing-with-indexed-propertes-via-new-rtti-d2010 Comment by utku_karatas on Trouble playing with indexed propertes via new RTTI [D2010] utku_karatas 2009-11-07T03:58:40Z 2009-11-07T03:58:40Z Thanks, edited the code in post. http://stackoverflow.com/questions/1636132/opacity-of-a-twincontrol/1637274#1637274 Comment by utku_karatas on Opacity of a TWinControl? utku_karatas 2009-10-28T14:51:06Z 2009-10-28T14:51:06Z Thanks for the extra effort for linking. http://stackoverflow.com/questions/1600575/iterate-through-items-in-an-enumeration-in-delphi/1600600#1600600 Comment by utku_karatas on Iterate through items in an enumeration in Delphi utku_karatas 2009-10-21T13:38:36Z 2009-10-21T13:38:36Z MaxEnum probably is buggy; returning more than the actual count of enums. And GetEnumName uses that buggy result to analyze the internal structures in your code. What you get is random bits of memory past the internal structures. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/498141#498141 Comment by utku_karatas on What non-programming books should programmers read? utku_karatas 2009-10-20T15:09:46Z 2009-10-20T15:09:46Z A+. Must read for an aspiring prophet! http://stackoverflow.com/questions/1482461/how-to-set-event-handlers-via-new-rtti-d2010/1482516#1482516 Comment by utku_karatas on How to set event handlers via new RTTI? [D2010] utku_karatas 2009-09-27T18:42:31Z 2009-09-27T18:42:31Z Thanks, Mason. That nails it. http://stackoverflow.com/questions/1478389/findfirst-findnext-listing-files-but-not-directories Comment by utku_karatas on Findfirst, findnext listing files but not directories... ? utku_karatas 2009-09-25T17:16:23Z 2009-09-25T17:16:23Z Use &quot;\\&#42;&quot; to display &quot;\&#42;&quot;. (even in comments - oh man!) http://stackoverflow.com/questions/1478389/findfirst-findnext-listing-files-but-not-directories Comment by utku_karatas on Findfirst, findnext listing files but not directories... ? utku_karatas 2009-09-25T16:55:30Z 2009-09-25T16:55:30Z And the problem is.... http://stackoverflow.com/questions/1477912/delphi-charset-detection-unisynedit-utf8decode-problem Comment by utku_karatas on Delphi, charset detection ([Uni]SynEdit) - Utf8Decode problem utku_karatas 2009-09-25T16:28:40Z 2009-09-25T16:28:40Z What happens when there's BOM? http://stackoverflow.com/questions/1455111/how-to-create-chrome-like-application-in-delphi-which-runs-multiple-processes-ins/1455582#1455582 Comment by utku_karatas on How to create Chrome like application in Delphi which runs multiple processes inside one Window? utku_karatas 2009-09-21T20:44:34Z 2009-09-21T20:44:34Z Wait a minute! Is that it? SetParent? Good god! When I heard about the seperate process per tab thing I thought they wrote this uber-magical complex IPC library allowing you do that. Suddenly I feel enlightened :) http://stackoverflow.com/questions/1452215/elegant-way-for-handling-this-string-issue-unicode-pansistring-issue/1452256#1452256 Comment by utku_karatas on Elegant way for handling this string issue. (Unicode-PAnsiString issue) utku_karatas 2009-09-21T20:38:06Z 2009-09-21T20:38:06Z Ditto. No perfect solution except modifying the DLL structures. Thanks for the suggestions. http://stackoverflow.com/questions/1452215/elegant-way-for-handling-this-string-issue-unicode-pansistring-issue/1452869#1452869 Comment by utku_karatas on Elegant way for handling this string issue. (Unicode-PAnsiString issue) utku_karatas 2009-09-21T20:37:04Z 2009-09-21T20:37:04Z This would be best solution if modifying the DLL structures were an option. Thank you.