User Vladimir Radmilovic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T11:11:10Zhttp://stackoverflow.com/feeds/user/12891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1502301/exposing-variables-to-google-analytics/1575337#1575337-1Answer by Vladimir Radmilovic for Exposing variables to Google AnalyticsVladimir Radmilovic2009-10-15T21:56:54Z2009-10-15T22:04:55Z<p>Here's an idea, but it won't work with GA or other tag-based analytics, just with log analyzers: upload one or more 1x1 pixel white/transparent gifs to a server and include something like this on each page:</p>
<pre><code><img src="/myvars.gif?user=<?php echo $username; ?>" />
<img src="/myvars.gif?type=<?php echo $usertype; ?>" />
</code></pre>
<p>I presume that you are using PHP, but you can easily adjust it to your language of choice.</p>
<p>After this, use Queries report and filters to extract information you need. I'm not sure which analyzers support such kind of reports/filters and give you other details you mention (<a href="http://www.weblogstorming.com/" rel="nofollow">our product does</a>, but it's not free), so you might want to research a bit.</p>
http://stackoverflow.com/questions/1245958/when-is-google-analytics-not-good-enough/1333009#13330090Answer by Vladimir Radmilovic for When is Google Analytics not good enough?Vladimir Radmilovic2009-08-26T07:48:19Z2009-08-26T07:48:19Z<p>Recently I wrote an article on this subject: <a href="http://www.weblogstorming.com/articles/10-strengths-of-web-log-analyzers-compared-to-javascript-based-analytics.html" rel="nofollow">"10 strengths of web log analyzers compared to javascript based analytics"</a>. Of course, not all of points are relevant to everyone.</p>
http://stackoverflow.com/questions/940113/ms-word-ole-automation-ado-and-foreign-characters1MS Word Ole Automation, ADO and foreign charactersVladimir Radmilovic2009-06-02T15:10:49Z2009-06-05T21:51:49Z
<p>I'm trying to export WideString texts from the database (ADO / MS Access) to the MS Word document (Delphi 7), but foreign characters are not correctly transferred (i.e. "<b>è</b>" instead of "<b>č</b>"):</p>
<pre><code>while not ADOQuery1.Eof do
begin
WordApplication1.Selection.TypeText(ADOQuery1Text.AsVariant); // TWideStringField
WordApplication1.Selection.TypeParagraph;
ADOQuery1.Next;
end;
</code></pre>
<p>I've also tried to use <code>CreateOleObject()</code> directly, but no difference.</p>
<p>What am I missing?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/305016/what-are-major-incentives-to-upgrade-to-d2009-unicode-excluded7What are major incentives to upgrade to D2009 (Unicode excluded)?Vladimir Radmilovic2008-11-20T11:33:12Z2009-05-04T16:55:04Z
<p>I'm a hesitant upgrader when it comes to development tools. For roughly half of my product I still use D7, and for others D2006.</p>
<p>The truth is, although Unicode support is more than welcomed and very useful, it could cause me more troubles than gains with my current projects (they are more-or-less Unicode ready already). It's especially case with one of them who's performance would suffer a lot if each string takes twice as much memory as before.</p>
<p>So, Unicode aside, what are other major incentives to upgrade?</p>
http://stackoverflow.com/questions/706902/best-auto-update-components-for-delphi/736839#7368392Answer by Vladimir Radmilovic for Best auto-update component(s) for DelphiVladimir Radmilovic2009-04-10T05:58:30Z2009-04-10T05:58:30Z<p>I use <a href="http://www.maxcomponents.net/index.php?id=1&page=1" rel="nofollow">TmxWebUpdate</a>. It's free, simple and easy to customize. I also own TMS Component Pack with TWebUpdate, but never really found a good incentive to switch.</p>
http://stackoverflow.com/questions/736339/reading-ms-access-mdb-files-in-delphi-for-free/736814#7368145Answer by Vladimir Radmilovic for Reading MS Access mdb files in Delphi (for free)?Vladimir Radmilovic2009-04-10T05:45:29Z2009-04-10T05:45:29Z<p>I use ADO components included with Delphi for this ("Microsoft Jet 4.0 OLE Provider"). It requires MDAC installed on client, which is already included in XP and newer systems.</p>
http://stackoverflow.com/questions/435144/operation-not-supported-and-printer-selected-is-not-valid-errors-while-printi0"Operation not supported" and "Printer selected is not valid" errors while printingVladimir Radmilovic2009-01-12T11:20:29Z2009-01-13T14:50:23Z
<p>Hello,</p>
<p>Hopefully somebody will be able to help. In my Delphi 7 application small percentage of users report errors when printing and I'm trying to resolve this with last of them. I'm slightly limited when it comes to testing (as user is physically distant and we are working it out via e-mail), but I get some additional information from EurekaLog.</p>
<p>Anyway, first error that he got is <strong>"Operation not supported on selected printer"</strong>, at this line of code:</p>
<pre><code>Printer.Orientation := AOrientation;
</code></pre>
<p>So, I assumed that his printer doesn't support Orientation (I never heard of this, but I guess it's possible) and tried without this line of code. But now he gets <strong>"Printer selected is not valid"</strong> at this line:</p>
<pre><code>Result := Printer.PageWidth / GetDeviceCaps(Printer.Handle, LOGPIXELSX);
</code></pre>
<p>As far as I know, printer is correctly selected (it's Canon Pixma iP1500, but other users have other models, inkjet or laser), and he already tried to update drivers. OS also varies - from XP to Vista SP1).</p>
<p>I suggested to him to try with another printer, but whatever he responds, I don't know where to look next. Google search didn't give any useful results (for me, at least). Does anyone have an idea?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/302409/how-does-one-escape-characters-in-delphi-string/302437#3024372Answer by Vladimir Radmilovic for How does one escape characters in Delphi stringVladimir Radmilovic2008-11-19T16:17:15Z2008-11-19T16:17:15Z<p>For ' character put it twice. For example: 'Don''t'. Null byte type as #0.</p>
http://stackoverflow.com/questions/299548/is-there-a-tdbcombobox-equivalent-that-goes-by-itemindex/300011#3000111Answer by Vladimir Radmilovic for Is there a TDBComboBox equivalent that goes by ItemIndex?Vladimir Radmilovic2008-11-18T20:23:12Z2008-11-18T20:23:12Z<p>You can fill TDBComboBox items with numbers ('0, '1', '2', ...), but set DBComboBox1.Style to csOwnerDrawFixed and write OnItemDraw event. Something like this:</p>
<pre><code>procedure TForm1.DBComboBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
begin
with (Sender as TDBComboBox).Canvas do
begin
FillRect(Rect);
TextRect(Rect, Rect.Left+1, Rect.Top+1, MyValueDescriptions[Index]);
end;
end;
</code></pre>
http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi/295577#2955771Answer by Vladimir Radmilovic for How to set a GUID as ADO query parameters from Delphi?Vladimir Radmilovic2008-11-17T13:40:41Z2008-11-17T13:40:41Z<p>That's correct way to set parameters with ADO. The message you get is most probably due to typo with some of fields (you get same message if field does not exist).</p>
http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects/295322#2953221Answer by Vladimir Radmilovic for What is the best way to share Delphi source files among projects?Vladimir Radmilovic2008-11-17T11:02:41Z2008-11-17T11:02:41Z<p>I'm not sure if I understood question properly. Anyway, when building application suite (several projects but lot of common code), we create folder structure like this:</p>
<pre><code>\Main
\Project1
\Project2
...
\CommonUnits
</code></pre>
<p>We add common units to relevant projects (regardless it's not in same folder as project file). Further, sometimes it's easier to use project-level conditional defines (Project | Options | Directories/Conditionals) for small code differences. For example, Project1 will have something like "APP_PROJECT1" defined and you can then use $IFDEF in common units to write specific code.</p>
<p>What's important: in this case it's better to have one source control repository for whole suite (root is \Main, of course).</p>
http://stackoverflow.com/questions/274958/delphi-using-tclientdataset-as-an-in-memory-dataset/295271#2952713Answer by Vladimir Radmilovic for Delphi: using TClientDataset as an in-memory datasetVladimir Radmilovic2008-11-17T10:33:56Z2008-11-17T10:33:56Z<p>Don't forget to include MIDAS.DLL in your installation or simply include MidasLib in uses clause. Otherwise using TClientDataSet will raise an error on client's machine. Maybe it's obvious, but I actually forgot this once.</p>
http://stackoverflow.com/questions/277514/delphi-how-do-you-auto-update-your-applications/295268#2952681Answer by Vladimir Radmilovic for Delphi: How do you auto-update your applications?Vladimir Radmilovic2008-11-17T10:30:02Z2008-11-17T10:30:02Z<p>I use <a href="http://www.maxcomponents.net/index.php?id=1&page=1" rel="nofollow">TmxWebUpdate</a>. It's free, simple and gives you good control over the process. I actually own TMS Component Pack with TWebUpdate but never really found a good reason to switch.</p>
http://stackoverflow.com/questions/111673/learning-c-c-or-delphi/295255#2952555Answer by Vladimir Radmilovic for Learning C, C++ or Delphi ?Vladimir Radmilovic2008-11-17T10:21:43Z2008-11-17T10:21:43Z<p>Delphi is not really dead, although it's going through difficult times recently. I think it's all about positioning: smaller teams and single-developers, who choose tools on they own (not forced by MS biased management) often choose Delphi. Cost of changing development foundation for small teams/single developers are much less than for larger companies.</p>
<p>So, if you are "one-man show", take whatever feels better for you personally (pick Delphi pick Delphi...<em>grin</em>), but if you plan to search for a job, it could be better to learn C/C++, although I wouldn't advise it. :) If I were you, as you are already familiar with desktop development, I would get into web (PHP, Ruby on Rails, ...). I think that learning new platform would bring you more gain than simply learning another way to do same thing.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/295155#2951553Answer by Vladimir Radmilovic for Which embedded database to use in a Delphi application?Vladimir Radmilovic2008-11-17T09:14:09Z2008-11-17T09:14:09Z<p>It really depends what you need. For single-user applications, Firebird Embedded or SQLite are probably best choices (and price is right). On the other end, if you need support for large number of multiple users, you should probably use regular Firebird instead of Embedded version (server is simple to install so you won't have much problems here).</p>
<p>And if you need something in between, for a moderate multi-user application, one of flat databases would be better. I found that <a href="http://componentace.com/absolute_database_features.htm" rel="nofollow">ComponentAce's Absolute Database</a> better choice for my needs than DBISAM, NexusDB or VistaDB.</p>
<p>It leaves relatively small footprint (no DLLs), it's a single-file db (a must for me), supports Unicode, BLOB compression, crypting, and technical limits seem impressing for a flat database. Moreover, support was good in few occasions when I needed it.</p>
<p>For cons, I have noticed it doesn't support nested transactions, but other than that, I had no problems.</p>
http://stackoverflow.com/questions/435144/operation-not-supported-and-printer-selected-is-not-valid-errors-while-printiComment by Vladimir Radmilovic on "Operation not supported" and "Printer selected is not valid" errors while printingVladimir Radmilovic2009-06-10T06:21:48Z2009-06-10T06:21:48ZThis specific user has re-installed printer drivers and problem has gone.http://stackoverflow.com/questions/940113/ms-word-ole-automation-ado-and-foreign-characters/958305#958305Comment by Vladimir Radmilovic on MS Word Ole Automation, ADO and foreign charactersVladimir Radmilovic2009-06-06T07:58:54Z2009-06-06T07:58:54ZAlthough fields in the database are marked as Unicode, this solution works. Thank you very much and well done! :)http://stackoverflow.com/questions/940113/ms-word-ole-automation-ado-and-foreign-characters/940469#940469Comment by Vladimir Radmilovic on MS Word Ole Automation, ADO and foreign charactersVladimir Radmilovic2009-06-02T16:41:26Z2009-06-02T16:41:26ZAnd unfortunately, Delphi 7 is client's requirement (it's the only version they have).http://stackoverflow.com/questions/940113/ms-word-ole-automation-ado-and-foreign-characters/940469#940469Comment by Vladimir Radmilovic on MS Word Ole Automation, ADO and foreign charactersVladimir Radmilovic2009-06-02T16:35:22Z2009-06-02T16:35:22ZNo, there's no AsWideString method in Delphi 7. In other cases AsVariant works okay.
http://stackoverflow.com/questions/435144/operation-not-supported-and-printer-selected-is-not-valid-errors-while-printi/438424#438424Comment by Vladimir Radmilovic on "Operation not supported" and "Printer selected is not valid" errors while printingVladimir Radmilovic2009-01-13T10:37:33Z2009-01-13T10:37:33ZThanks. Is there any list of these bugs? Maybe already updated version? Quick Google search don't give much results.http://stackoverflow.com/questions/435144/operation-not-supported-and-printer-selected-is-not-valid-errors-while-printi/435986#435986Comment by Vladimir Radmilovic on "Operation not supported" and "Printer selected is not valid" errors while printingVladimir Radmilovic2009-01-12T17:13:53Z2009-01-12T17:13:53ZYes, I did suggested PDFCreator but I'm still waiting for answer (time zone difference). Still, I have no idea what to do next no matter of results. I hoped that someone had similar problem before.
I'll mark all answers as helpful (because they are), but I will leave question open for now.http://stackoverflow.com/questions/435144/operation-not-supported-and-printer-selected-is-not-valid-errors-while-printi/435199#435199Comment by Vladimir Radmilovic on "Operation not supported" and "Printer selected is not valid" errors while printingVladimir Radmilovic2009-01-12T11:54:42Z2009-01-12T11:54:42ZThank you for your answer. While I get system information from those who do report problem, I have no idea if it works to others with similar systems (there's thousands of them and not all submit an error report if it happens).http://stackoverflow.com/questions/305016/what-are-major-incentives-to-upgrade-to-d2009-unicode-excludedComment by Vladimir Radmilovic on What are major incentives to upgrade to D2009 (Unicode excluded)?Vladimir Radmilovic2008-11-21T06:36:50Z2008-11-21T06:36:50ZSome application are Unicode-ready through WideStrings and TNT controls. The one that would suffer performance is not Unicode ready and it uses plain strings. But you are right, replacing String with AnsiString where needed should solve the problem.http://stackoverflow.com/questions/305016/what-are-major-incentives-to-upgrade-to-d2009-unicode-excluded/305031#305031Comment by Vladimir Radmilovic on What are major incentives to upgrade to D2009 (Unicode excluded)?Vladimir Radmilovic2008-11-20T12:15:03Z2008-11-20T12:15:03ZThis is nice to know. But in this case, bottle-neck is actually extensive memory use, not CPU. So application would use close to twice RAM than before (for example, 1 GB instead of 500 MB is not small difference).
It's a log parser and analyzer that keeps all strings in memory by design.