User utku_karatas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T15:30:49Zhttp://stackoverflow.com/feeds/user/14716http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/175044/django-development-ide/1831510#18315101Answer by utku_karatas for django development IDEutku_karatas2009-12-02T08:43:51Z2009-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#17698820Answer by utku_karatas for How to catch onmouseleave event for TDateTimePicker component in Delphi 7utku_karatas2009-11-20T11:27:09Z2009-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#16992511Answer by utku_karatas for Returning a string from a BPL functionutku_karatas2009-11-09T05:37:43Z2009-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#16991681Answer by utku_karatas for Override default Show behaviour / SetVisible of TForm's descendant (Delphi VCL)utku_karatas2009-11-09T04:59:40Z2009-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-d20102Trouble playing with indexed propertes via new RTTI [D2010]utku_karatas2009-11-06T04:22:43Z2009-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-frequently9Django workflow when modifying models frequently?utku_karatas2009-01-30T23:18:54Z2009-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-twincontrol1Opacity of a TWinControl?utku_karatas2009-10-28T09:39:21Z2009-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-d20103How to set event handlers via new RTTI? [D2010]utku_karatas2009-09-27T00:10:14Z2009-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#14784632Answer by utku_karatas for Findfirst, findnext listing files but not directories... ?utku_karatas2009-09-25T17:01:18Z2009-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-applications9Delphi: How do you auto-update your applications?utku_karatas2008-11-10T10:15:58Z2009-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#14587369Answer by utku_karatas for Migrate to Delphi 2009 - Invalid Typecast problemutku_karatas2009-09-22T08:14:36Z2009-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 <= 2007).</p>
http://stackoverflow.com/questions/1452215/elegant-way-for-handling-this-string-issue-unicode-pansistring-issue2Elegant way for handling this string issue. (Unicode-PAnsiString issue)utku_karatas2009-09-20T22:42:37Z2009-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#14523951Answer by utku_karatas for Can anyone suggest a DBMS which is fast and efficient at writes?utku_karatas2009-09-21T00:11:24Z2009-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-vcl1Assorted list of what's new in Delphi [Language, RTL, VCL]?utku_karatas2009-09-18T20:42:38Z2009-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#14227551Answer by utku_karatas for Delphi < 2009, unicode replacement for JvAppStorage.utku_karatas2009-09-14T16:59:30Z2009-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-delphi2LoC (lines of code) metrics for Delphi?utku_karatas2009-09-14T11:45:14Z2009-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-challenge1Delphi drag images challengeutku_karatas2009-03-19T14:37:23Z2009-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&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 > 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#13990852Answer by utku_karatas for Pass a Delphi set to an external Delphi function from C#utku_karatas2009-09-09T11:23:55Z2009-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#13988750Answer by utku_karatas for Delphi VCL for Win32 - multiple event handlers.utku_karatas2009-09-09T10:41:36Z2009-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#13987903Answer by utku_karatas for Delphi PChar to C++ const char*utku_karatas2009-09-09T10:21:58Z2009-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#13979942Answer by utku_karatas for SynEdit & RegEx searchutku_karatas2009-09-09T07:10:25Z2009-09-09T07:10:25Z<p>Synedit comes with a builtin regex library and you can see an example search&replace application in the demos folder.</p>
http://stackoverflow.com/questions/1369288/can-a-batch-script-know-if-its-called-from-powershell1Can a Batch script know if it's called from PowerShell?utku_karatas2009-09-02T18:10:42Z2009-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-powershell0virtualenv in PowerShell?utku_karatas2009-09-01T23:03:59Z2009-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>> 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-data0Django Admin - Bulk editing data?utku_karatas2009-08-24T13:30:04Z2009-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#13134430Answer by utku_karatas for List products by category in Django templateutku_karatas2009-08-21T18:08:31Z2009-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#12997040Answer by utku_karatas for Getting Django Admin class variables from a viewutku_karatas2009-08-19T12:47:12Z2009-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#12920190Answer by utku_karatas for How can I tell whether my Django application is running on development server or not?utku_karatas2009-08-18T05:44:47Z2009-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#12856833Answer by utku_karatas for How do you render a django form in a view?utku_karatas2009-08-16T23:57:32Z2009-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-language8Back-end choice for a new dynamic programming language?utku_karatas2008-11-04T15:08:28Z2009-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#12174070Answer by utku_karatas for Open source editors using (Uni)SynEdit [except Dev-PHP/Dev-C++]utku_karatas2009-08-01T20:22:36Z2009-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#1721769Comment by utku_karatas on How to determine if the mouse cursor is inside a controlutku_karatas2009-11-12T15:23:17Z2009-11-12T15:23:17ZThe 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#1699251Comment by utku_karatas on Returning a string from a BPL functionutku_karatas2009-11-09T06:19:39Z2009-11-09T06:19:39ZNot 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#1699251Comment by utku_karatas on Returning a string from a BPL functionutku_karatas2009-11-09T06:08:10Z2009-11-09T06:08:10ZStrange. 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#1699251Comment by utku_karatas on Returning a string from a BPL functionutku_karatas2009-11-09T05:39:24Z2009-11-09T05:39:24Zand it seems stdcall; directive is missing.
http://stackoverflow.com/questions/1685392/trouble-playing-with-indexed-propertes-via-new-rtti-d2010Comment by utku_karatas on Trouble playing with indexed propertes via new RTTI [D2010]utku_karatas2009-11-07T03:58:40Z2009-11-07T03:58:40ZThanks, edited the code in post.http://stackoverflow.com/questions/1636132/opacity-of-a-twincontrol/1637274#1637274Comment by utku_karatas on Opacity of a TWinControl?utku_karatas2009-10-28T14:51:06Z2009-10-28T14:51:06ZThanks for the extra effort for linking.http://stackoverflow.com/questions/1600575/iterate-through-items-in-an-enumeration-in-delphi/1600600#1600600Comment by utku_karatas on Iterate through items in an enumeration in Delphiutku_karatas2009-10-21T13:38:36Z2009-10-21T13:38:36ZMaxEnum 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#498141Comment by utku_karatas on What non-programming books should programmers read?utku_karatas2009-10-20T15:09:46Z2009-10-20T15:09:46ZA+. Must read for an aspiring prophet!http://stackoverflow.com/questions/1482461/how-to-set-event-handlers-via-new-rtti-d2010/1482516#1482516Comment by utku_karatas on How to set event handlers via new RTTI? [D2010]utku_karatas2009-09-27T18:42:31Z2009-09-27T18:42:31ZThanks, Mason. That nails it.http://stackoverflow.com/questions/1478389/findfirst-findnext-listing-files-but-not-directoriesComment by utku_karatas on Findfirst, findnext listing files but not directories... ?utku_karatas2009-09-25T17:16:23Z2009-09-25T17:16:23ZUse "\\*" to display "\*". (even in comments - oh man!)http://stackoverflow.com/questions/1478389/findfirst-findnext-listing-files-but-not-directoriesComment by utku_karatas on Findfirst, findnext listing files but not directories... ?utku_karatas2009-09-25T16:55:30Z2009-09-25T16:55:30ZAnd the problem is....http://stackoverflow.com/questions/1477912/delphi-charset-detection-unisynedit-utf8decode-problemComment by utku_karatas on Delphi, charset detection ([Uni]SynEdit) - Utf8Decode problemutku_karatas2009-09-25T16:28:40Z2009-09-25T16:28:40ZWhat happens when there's BOM?http://stackoverflow.com/questions/1455111/how-to-create-chrome-like-application-in-delphi-which-runs-multiple-processes-ins/1455582#1455582Comment by utku_karatas on How to create Chrome like application in Delphi which runs multiple processes inside one Window?utku_karatas2009-09-21T20:44:34Z2009-09-21T20:44:34ZWait 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#1452256Comment by utku_karatas on Elegant way for handling this string issue. (Unicode-PAnsiString issue)utku_karatas2009-09-21T20:38:06Z2009-09-21T20:38:06ZDitto. 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#1452869Comment by utku_karatas on Elegant way for handling this string issue. (Unicode-PAnsiString issue)utku_karatas2009-09-21T20:37:04Z2009-09-21T20:37:04ZThis would be best solution if modifying the DLL structures were an option. Thank you.