User Scott W - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:47:01Zhttp://stackoverflow.com/feeds/user/3032http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889746/handling-arbitrary-bit-length-data-in-delphi/1889969#18899690Answer by Scott W for Handling arbitrary bit length data in Delphi?Scott W2009-12-11T18:25:13Z2009-12-11T18:25:13Z<p>One possible way to handle this, while being terribly inefficient in terms of memory usage, would be to break up the bits as the data is read in. So, let's say you read in the data from the port in 8-bit (1-byte) chunks. Your first read would bring in <code>00100101</code>. Break this into an array of 8 integers (e.g. <code>bits[0] := 0; bits[1] := 0; bits[2] := 1;</code> ...)</p>
<p>Now you can write helper routine(s) that will retrieve the value you are looking for from the array:</p>
<pre><code>function getInt(start, len: integer): integer;
function getChar(start: integer): String;
</code></pre>
<p>These functions would use the start (and possibly len) parameters to combine the appropriate bits out of your array into a usable value.</p>
http://stackoverflow.com/questions/1841978/change-username-programmatically-when-connecting-to-a-sql-server-using-windows-au/1842172#18421727Answer by Scott W for Change username programmatically when connecting to a Sql Server using Windows authentication from a Delphi applicationScott W2009-12-03T19:06:38Z2009-12-03T19:06:38Z<p>I think a combination of <a href="http://msdn.microsoft.com/en-us/library/aa378184%28VS.85%29.aspx" rel="nofollow"><code>LogonUser</code></a> and then <a href="http://msdn.microsoft.com/en-us/library/aa378612%28VS.85%29.aspx" rel="nofollow"><code>ImpersonateLoggedOnUser</code></a> will do the trick for you. That should change the user account for which the current process is running. As gbn mentioned, you will likely have to disconnect any active connection before changing the logon credentials.</p>
http://stackoverflow.com/questions/219401/is-there-an-easy-way-to-do-a-complete-migration-from-cvs-to-starteam2Is there an easy way to do a complete migration from CVS to StarTeam?Scott W2008-10-20T18:33:00Z2009-11-30T23:53:44Z
<p>I'm currently maintaining a CVS repository for source control. There is a push afoot to move to StarTeam. It has already been purchased and is a corporate standard for most projects. I was told by the corporate owners of the StarTeam servers that there is no known way to do a complete migration of our current CVS repository to StarTeam. We have been advised to do a checkout of the latest version and import that into StarTeam.</p>
<p>I would really prefer to keep all of my version history and not have to choose between simply losing all of the data or maintaining my CVS repository indefinitely.</p>
<p>Has anybody had any luck doing this? Any recommended tools or processes? Or am I just wasting my time and I should just migrate and cut my losses?</p>
<p>UPDATE: The official response from Borland is that this is definitely doable, but not with the boxed software. I can purchase services from Borland to help me accomplish this.</p>
http://stackoverflow.com/questions/1756589/relative-path-of-a-given-file-from-a-service-application-in-delphi/1757202#17572020Answer by Scott W for Relative path of a given file from a service application in DelphiScott W2009-11-18T16:21:08Z2009-11-18T16:21:08Z<p>My experience has been that services start with a working folder of <code>%SystemRoot%\System32</code> no matter where the actual executable is located.</p>
<p>The way that I have got around this limitation is to write a registry key during installation of the service (e.g. <code>HKLM\SOFTWARE\MyCompany\MyApp\INSTALL_PATH</code>) that points to what I would <em>like</em> the working folder to be. Then when the service starts, it grabs the data from the registry and uses that value as the base when creating paths to files.</p>
http://stackoverflow.com/questions/1743962/jvcl-component-documentation/1744114#17441140Answer by Scott W for JVCL Component DocumentationScott W2009-11-16T18:54:23Z2009-11-16T18:54:23Z<p>You might also want to take a look at the "Mega Demo" that shows how many of the visual components work: <a href="http://sourceforge.net/projects/jvcl/files/JVCL%20Demos/JVCL%203.00%20Mega%20Demo/" rel="nofollow">http://sourceforge.net/projects/jvcl/files/JVCL%20Demos/JVCL%203.00%20Mega%20Demo/</a></p>
http://stackoverflow.com/questions/1639125/form-is-hidden-behind-other-forms-when-showmodal-is-called/1639316#16393160Answer by Scott W for Form is hidden behind other forms when ShowModal is called.Scott W2009-10-28T18:50:13Z2009-10-28T21:41:31Z<p>I have found that using the "Always On Top" flag on more than one form causes problems with the Z order. And you may also find the need for the <a href="http://msdn.microsoft.com/en-us/library/ms632673%28VS.85%29.aspx" rel="nofollow"><code>BringWindowToTop</code></a> function.</p>
<p>When launching a message box using the built-in WinAPI (<code>MessageBox</code>), I have found that passing the calling window's handle is necessary in order to make sure that the the prompt appears on top all the time.</p>
http://stackoverflow.com/questions/1614857/how-do-i-retrieve-a-file-from-a-sql-server-database/1614900#16149000Answer by Scott W for How do I retrieve a file from a SQL Server database?Scott W2009-10-23T17:33:16Z2009-10-23T17:33:16Z<p>Have not tried this myself, but how about streaming the data into a temporary file on the local file system and then providing a link to that temporary file?</p>
http://stackoverflow.com/questions/1596220/accuracy-of-barcode-vs-qrcode/1596884#15968843Answer by Scott W for Accuracy of barcode vs qrcode?Scott W2009-10-20T19:46:55Z2009-10-20T19:46:55Z<p>The biggest difference here is that a linear barcode (e.g. Code 3 of 9, UPC, EAN, etc.) and a 2-dimensional symbology (e.g. QRCode, DataMatrix, etc.) store data in very different ways. A linear barcode can be read with a simple laser scanner, while most 2-D symbologies require an imager in order to be read. In general, imagers can also read linear barcodes, but are also more expensive than laser scanners.</p>
<p>You will want to consider whether your customers may already have linear scanners only, or whether they would be willing to pay the premium for an imager in order to get the benefit of the extra data that can be encoded in the 2-D symbologies.</p>
http://stackoverflow.com/questions/372175/any-idea-how-to-resolve-a-bde-error-251e0Any idea how to resolve a BDE error $251e?Scott W2008-12-16T18:16:12Z2009-09-22T20:32:38Z
<p>Here's the situation:</p>
<p>A user of our program suddenly started receiving an error from the Borland Database Engine (BDE) when attempting to start the application. The error message says that it was unable to initialize the BDE and gives error code $251e. User is on BDE 5.2.0.2.</p>
<p>I cannot find any official documentation on the error $251e. The only somewhat useful hit I can get on Google is <a href="http://www.mombu.com/microsoft/comp-databases-paradox/t-notes-bde-error-251e-and-other-25xx-codes-576309.html" rel="nofollow">not very instructive</a> and the suggestion there does no good.</p>
<p>Here are some things that we have tried / discovered:</p>
<ol>
<li>Other applications that access the BDE the exact same way have no complaints.</li>
<li>The error occurs on a line where we set Connected := True on the TDatabase component.</li>
<li>Reinstalling the BDE makes no difference.</li>
<li>Closing all BDE apps except the one in question makes no difference.</li>
<li>Changing from using an MSSQL database to a Paradox database makes no difference.</li>
<li>Making the logged in user a member of the Administrators group on the workstation makes no difference.</li>
<li>The typically logged in user is a domain user.</li>
<li>Logging in as a workstation administrator (non-domain) account that was originally setup on the machine as a last resort administration account, all works fine.</li>
<li>Creating a new workstation user with local admin rights, the problem returns.</li>
</ol>
<p>The user has been temporarily allowed to use the one workstation admin account that actually works, but this is not an acceptable long-term solution. Any idea where we might go from here? Any clue as to what $251e really means?</p>
<p>I know that the BDE is way out of date and no longer supported, but changing the use of the BDE is not an option right now.</p>
http://stackoverflow.com/questions/1408146/online-passes-with-barcode/1428116#14281161Answer by Scott W for Online passes with BarcodeScott W2009-09-15T16:08:06Z2009-09-15T16:08:06Z<p>mikeschuld has provided good information about barcode printing and scanning. My experience has been that Code 39 is one of the most pervasive barcode formats and every scanner that I have run into has been configured to read Code 39 barcodes by default.</p>
http://stackoverflow.com/questions/1401370/form-designer-for-dummies/1402237#14022370Answer by Scott W for Form Designer for Dummies...Scott W2009-09-09T21:36:51Z2009-09-09T21:36:51Z<p><a href="http://office.microsoft.com/en-us/visio/FX100487861033.aspx" rel="nofollow">Microsoft Office Visio</a> Professional has a built-in mode for designing Windows user interfaces.</p>
http://stackoverflow.com/questions/1335811/how-to-view-date-bug-was-closed-in-bugzilla/1348607#13486072Answer by Scott W for How to view date bug was closed in Bugzilla?Scott W2009-08-28T18:21:41Z2009-08-28T18:21:41Z<p>It's not super pretty and easy, but this query will give you the bug ID and the timestamp for the most recent time when the bug was changed to RESOLVED. You could adapt this for CLOSED as well, I am sure. If you wanted access to this information from within the Bugzilla user interface, then you would need to modify the code for your Bugzilla installation to expose this information.</p>
<pre><code>select bugs.bug_id, bugs_activity.bug_when as 'Resolved'
from bugs
left join bugs_activity on bugs.bug_id = bugs_activity.bug_id
and bugs_activity.fieldid=9
and bugs_activity.added='RESOLVED'
and bugs_activity.bug_when = (select max(a.bug_when)
from bugs_activity a
where a.bug_id = bugs.bug_id
and a.fieldid=9
and a.added='RESOLVED')
</code></pre>
http://stackoverflow.com/questions/1325641/barcode-reading-in-wpf/1329734#13297340Answer by Scott W for barcode reading in wpfScott W2009-08-25T17:30:52Z2009-08-25T17:30:52Z<p>My answer assumes that you are using a barcode scanner in "keyboard wedge" mode where it simply emulates a keyboard and does not have some special connection. These devices are often USB and work this way out of the box without any further configuration.</p>
<p>Would the user ever have occasion to actually type your <code>\pre</code> text? Often the prefix is chosen specifically to be a set of characters that the user will never enter or will at least very rarely want to enter. Thus, the mere presence of the prefix indicates a scanned barcode.</p>
<p>Another option would be to time the input. For example, the input from the barcode scanner will probably all be complete within a very short time (e.g. 50ms). If a user were typing the value via the keyboard, it would be impossible for him/her to type the prefix, the data and the postfix all within 50ms. (Of course, assumption here is that input will be made by an actual human and not by automated tools)</p>
http://stackoverflow.com/questions/1308994/redirect-dynamic-subdomain-to-same-subdomain-with-subpage-how/1309023#13090231Answer by Scott W for Redirect dynamic subdomain to same subdomain with subpage. How?Scott W2009-08-20T21:44:13Z2009-08-20T21:44:13Z<p>There are several options on the <a href="http://en.wikipedia.org/wiki/URL%5Fredirection" rel="nofollow">URL redirection</a> wiki page. For example, how about dropping an index.php in the root that redirects to the destination?</p>
<pre><code>header("Location: http://dynamicsubdomain.example.com/account/welcome.html");
</code></pre>
http://stackoverflow.com/questions/1306134/java-print-barcode-labels/1307775#13077751Answer by Scott W for Java print barcode labelsScott W2009-08-20T17:45:57Z2009-08-20T20:56:21Z<p>I think you will have to measure your Avery label page with a ruler and then in your Java code, you will have to create a full Letter/A4/whatever page to print and offset your barcode image on that page to the appropriate location based on your measurements with the ruler.</p>
http://stackoverflow.com/questions/1240673/how-can-i-access-the-palette-of-a-tpicture-graphic/1241001#12410010Answer by Scott W for How can I access the palette of a TPicture.Graphic?Scott W2009-08-06T19:52:34Z2009-08-06T19:52:34Z<p>I don't know myself, but you might take a look at <a href="http://www.wilsonc.demon.co.uk/d10resourceeditor.htm" rel="nofollow">XN Resource Editor</a>, which does display palette information, is written in Delphi and has source available.</p>
http://stackoverflow.com/questions/1221197/are-there-any-good-free-cheap-delphi-grid-controls/1222182#12221820Answer by Scott W for Are there any good free/cheap Delphi grid controls?Scott W2009-08-03T12:49:35Z2009-08-03T12:49:35Z<p>I'm not sure the price point that you would consider cheap, but we have had good success with <a href="http://www.x-files.pl/components/xdbgrid.html" rel="nofollow">X-DBGrid</a>.</p>
http://stackoverflow.com/questions/1211528/options-to-print-label-with-barcode/1212492#12124920Answer by Scott W for Options to print label with barcode?Scott W2009-07-31T13:19:12Z2009-07-31T13:19:12Z<p>While you certainly could render your canvas in code and then shove it off to the printer, I think that you will find value in using a reporting tool. We have used QuickReports for years to generate our barcode labels with great success.</p>
<p>The biggest value that I see of a reporting tool over rendering to a canvas in code is the WYSIWYG aspect of the reporting tool. You will be able to much of your layout and tweaking on screen at design-time.</p>
http://stackoverflow.com/questions/1206061/positive-performance-review-experiences/1206402#12064021Answer by Scott W for Positive Performance Review ExperiencesScott W2009-07-30T12:50:10Z2009-07-30T12:50:10Z<p>In my opinion, what works well is to separate as much as possible the performance conversation from the money conversation.</p>
<p>The performance conversation should be an on-going conversation that happens on a regular basis throughout the year. An employee should never be surprised about his/her annual review. It should just be a formalization of what is already known.</p>
<p>It is very tough to separate the performance and money conversations. However, if you at least separate them physically (e.g. performance reviews are in April, salary adjustments are in June), you get people actually paying attention to what is happening in the performance review and not just waiting impatiently for the salary adjustment memo.</p>
http://stackoverflow.com/questions/1164300/tserversocket-confusion-with-socket-objects/1165032#11650320Answer by Scott W for TServerSocket: Confusion with Socket ObjectsScott W2009-07-22T12:50:10Z2009-07-22T12:50:10Z<p>Typically, your server socket is not going to be broadcasting its outgoing messages to all connected clients. Instead, it will be choosing one specific connected client to send the response. Think of all those connections from different clients as unique. Sure, they may have some common settings, but they are unique connections. (In database-speak, the primary key for a connection is a combination of all of the server IP, server port, client IP, client port)</p>
<p>I've not used TServerSocket, but the <a href="http://www.nsoftware.com/portal/borland/" rel="nofollow">IPWorks</a> library makes this explicit by using a connection ID that is specified both on the receiving side and the sending side. This way you know that the data you are reading/writing will be using a specific connection and the data is from/to the expected client.</p>
http://stackoverflow.com/questions/978040/how-to-force-delphi-compiler-to-display-all-hints-and-warnings3How to force Delphi compiler to display all hints and warningsScott W2009-06-10T20:43:28Z2009-06-15T14:28:43Z
<p>Is there a way to force the Delphi compiler to display all hints and warnings all the time?</p>
<p>Here is the behavior that I am currently seeing in Delphi 6:</p>
<ol>
<li>Check out fresh copy of my application from source control</li>
<li>Open project in Delphi and Compile</li>
<li>All hints and warnings for the project are displayed</li>
<li>Make a change in one unit</li>
<li>Compile</li>
<li>Only the hints and warnings for the changed unit are displayed</li>
</ol>
<p>So, I thought maybe I can trick Delphi by deleting all of the <code>dcu</code> files to force it to recompile everything. No luck. The compiler does in fact recompile all of the units, but does not display the hints and warnings for those units.</p>
<p><strong>EDIT:</strong> Performing a full build (Project > Build) yields the same unfortunate results.</p>
<p><strong>NEW INFORMATION:</strong> If I modify a unit and then Compile, I get the warnings. However, if I modify a unit and then Build, I do not get the warnings. I'm thinking this points to warnings being turned off somewhere. Possibly in a third party library?</p>
<p>It seems there ought to be a way to ask Delphi to re-display all of those hints and warnings that doesn't require me to either check out a fresh copy from source control or modify each unit one-by-one. </p>
http://stackoverflow.com/questions/773966/can-an-individual-gain-any-real-benefit-from-virtualization/773980#7739808Answer by Scott W for Can an individual gain any real benefit from virtualization?Scott W2009-04-21T18:36:01Z2009-06-03T12:44:33Z<p>1) Use a virtualized environment as a sand box for new software. Got a program you want to try out, but don't quite trust? Throw it in a virtual environment by itself. If it becomes destructive, simply reset.</p>
<p>2) Use a virtualized environment for development: Need to develop and test a complex set of installation packages? With a virtual environment its much easier to reset back to a base point when the installations go haywire.</p>
http://stackoverflow.com/questions/919676/how-to-print-stickers-easily-in-colors/920698#9206981Answer by Scott W for How to print stickers easily (in colors)Scott W2009-05-28T12:57:51Z2009-05-28T12:57:51Z<p>We've been printing to Zebra label printers for years through standard printing functionality. We actually create a report (QuickReport) and send it to the printer using the basic Print command.</p>
<p>The ability to print color is going to depend on the facilities of your printer. For example, the Zebra printers that we use are thermal transfer ribbon printers which means that there is only one color possible.</p>
http://stackoverflow.com/questions/806913/strange-behavior-by-the-bde-administrator0Strange behavior by the BDE AdministratorScott W2009-04-30T13:30:59Z2009-04-30T17:56:06Z
<p>Logged into my Windows XP SP2 computer using my normal user account (which has Local Admin privileges), when I start the BDE Administrator -- either from the Control Panel or from the BDEADMIN.EXE directly -- I never get the GUI. It shows up on my task bar, and shows up in the Task Manager, but the GUI never appears. I can close the program by right-clicking on the task bar and choosing close. (note that "never" means not within 5 minutes of launching the program)</p>
<p>If I log into the same exact computer using a different user account (which also has Local Admin privileges), when I start the BDE Administrator, it loads the GUI within a couple seconds.</p>
<p>I used to be able to use the BDE Administrator while logged in under my normal user account, so it's not like this has always been a problem.</p>
<p>While this issue may not be directly programming related, it does make developing and testing a pain when I have to log off and back on a couple of times just to make changes to my BDE configuration.</p>
<p>I am totally stumped. Any idea what might be causing this odd behavior?</p>
http://stackoverflow.com/questions/717653/graphical-gui-for-sql-server/717667#7176672Answer by Scott W for Graphical GUI for sql server.Scott W2009-04-04T19:37:30Z2009-04-04T19:37:30Z<p>If you don't want to get pinned into one particular database vendor, you can try <a href="http://www.dbvisualizer.com/products/dbvis/" rel="nofollow">DbVisualizer</a> which is a nice graphical client that supports a whole host of database types.</p>
<p><img src="http://www.dbvisualizer.com/products/dbvis/features/images/screens/scaled/queryBuilder2.png" alt="alt text" /></p>
http://stackoverflow.com/questions/710051/installed-service-pack-3-for-sql-server-2005-but-it-does-not-show-up-when-selecti/710083#7100833Answer by Scott W for Installed Service Pack 3 for SQL Server 2005 but it does not show up when selecting @@versionScott W2009-04-02T15:01:36Z2009-04-02T15:01:36Z<p>The version 9.00.4035 uniquely identifies SP3, although it doesn't explicitly state SP3. That SP2 that you see is referring to the operating system, not the SQL Server. See <a href="http://support.microsoft.com/kb/321185" rel="nofollow">Microsoft's KB article</a> on SQL versions.</p>
http://stackoverflow.com/questions/682458/ienumerable-getenumerator-returns-ienumvariant-in-delphi-6/682784#6827842Answer by Scott W for IEnumerable.GetEnumerator() returns IEnumVariant in Delphi 6Scott W2009-03-25T18:06:34Z2009-03-25T18:06:34Z<p>A link to MSDN's explanation of the IEnumVARIANT may also be valuable: <a href="http://msdn.microsoft.com/en-us/library/ms221053.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms221053.aspx</a></p>
http://stackoverflow.com/questions/651559/t-sql-query-with-funny-behavior/651581#6515812Answer by Scott W for T-SQL query with funny behaviorScott W2009-03-16T18:20:56Z2009-03-16T18:20:56Z<p>I've never had luck with sub-selects in an UPDATE statement. Instead, try something like the following:</p>
<pre><code>UPDATE X SET X_Value = 'O'
FROM Y
WHERE Y.Y_ID = X.Y_ID_F
AND Y.Y_Value = 'A'
</code></pre>
http://stackoverflow.com/questions/612587/is-it-possible-to-install-multiple-instances-of-the-same-delphi-service-applicati0Is it possible to install multiple instances of the same delphi service application?Scott W2009-03-04T21:44:50Z2009-03-10T23:42:49Z
<p>I have a service application built in Delphi that works great. It does exactly what I want it to do and all is happy. All is fine until I want to run two (or more) instances of that service on a single machine. Since the service name is hard coded into the program (via the Name property of the service), I can only install the service once on any given computer. If I try to modify the Name property at run-time, the service does not respond unless the Name property is set to the same thing that was set during design time.</p>
<p>I have done a workaround for this where I have all of the code that is not interacting directly with the service control manager encapsulated out into separate unit(s). Then I write a separate Delphi project for each instance that I want of the service that has just enough code to launch itself and start running the main code.</p>
<p>This method is, in my opinion, ugly and is certainly inefficient. It works okay for two instances, but then we need a third and a fourth and ...</p>
<p>Is there any way that I can modify my code so that I have just one Delphi project that can install and run itself as multiple service instances with some simple run-time input (e.g. command line flag)?</p>
<p>Or perhaps a broader question: Is there a "right way" to accomplish goal?</p>
http://stackoverflow.com/questions/582414/how-do-i-enable-my-custom-format-for-enterbug-cgi0How do I enable my custom format for enter_bug.cgi?Scott W2009-02-24T16:20:15Z2009-03-04T14:04:46Z
<p>I have followed the instructions in the Bugzilla manual and have created and tested my own custom format for enter_bug.cgi. I have tested by manually entering "format=xxx" in the URL. Now I am ready to roll this out for the other users. What is the right way to enable my custom format as the default?</p>
<p>I have come up with a few solutions that seem not-so-nice to me:</p>
<ol>
<li>Hack choose-classification.html.tmpl or choose-product.html.tmpl to force the format</li>
<li>Replace the existing create.html.tmpl with my custom version</li>
<li>Hack common-links.html.tmpl to force the format</li>
</ol>
<p>It seems that the choose-classification.html.tmpl and choose-product.html.tmpl are already setup to properly handle a format variable that is passed in, but I can't seem to figure out the appropriate place to set that variable.</p>
http://stackoverflow.com/questions/1906446/how-do-you-quickly-check-if-a-network-location-exists-using-delphi-5/1907476#1907476Comment by Scott W on How do you quickly check if a network location exists using Delphi 5?Scott W2009-12-15T14:09:14Z2009-12-15T14:09:14ZCareful that this may provide invalid information if ICMP is blocked somewhere between you and the destination.http://stackoverflow.com/questions/1884157/to-www-or-not-to-wwwComment by Scott W on to www or not to wwwScott W2009-12-10T21:31:35Z2009-12-10T21:31:35ZShould be on serverfault?http://stackoverflow.com/questions/1799787/accessing-bugzilla-from-netComment by Scott W on Accessing Bugzilla from .NETScott W2009-11-30T15:46:27Z2009-11-30T15:46:27ZWhat version of Bugzilla are you testing against? It looks like the latest version of bugzproxy is for 3.0 series which is a few years old. I'm fairly certain there have been changes to the web service since 3.0.http://stackoverflow.com/questions/1748454/issues-with-nvidia-nview-desktop-manager-and-delphi-applications/1748947#1748947Comment by Scott W on Issues with nVidia nView desktop manager and Delphi applications?Scott W2009-11-17T14:52:45Z2009-11-17T14:52:45ZPerhaps a bug report to NVidia?http://stackoverflow.com/questions/219401/is-there-an-easy-way-to-do-a-complete-migration-from-cvs-to-starteamComment by Scott W on Is there an easy way to do a complete migration from CVS to StarTeam?Scott W2009-11-04T20:11:14Z2009-11-04T20:11:14ZActually, it's not too late. The powers-that-be have not twisted my arm hard enough yet to get me to move.http://stackoverflow.com/questions/1644189/can-i-optimize-this-piece-of-codeComment by Scott W on Can I optimize this piece of code?Scott W2009-10-29T15:03:22Z2009-10-29T15:03:22Zmaybe this is silly, but since (a + 0) == a, can't you just drop the line fn_val+=0 completely?http://stackoverflow.com/questions/1639125/form-is-hidden-behind-other-forms-when-showmodal-is-called/1639316#1639316Comment by Scott W on Form is hidden behind other forms when ShowModal is called.Scott W2009-10-28T21:37:39Z2009-10-28T21:37:39ZFair enough... on further inspection, I realize that I was thinking about using the Windows.MessageBox function and passing the calling window's handle to make sure that the MessageBox shows up on top of the caller -- which I was considering to be the "parent". Will edit my answer to reflect this.http://stackoverflow.com/questions/1596220/accuracy-of-barcode-vs-qrcode/1597054#1597054Comment by Scott W on Accuracy of barcode vs qrcode?Scott W2009-10-21T15:21:11Z2009-10-21T15:21:11ZOn the "ability to read" side, absolutely, since all scanners that I have worked with present the data as a string, no matter the source. On the "ability to write" side, it gets a bit trickier as you have to consider things like how much data needs to be encoded and what will be the reading capabilities of the folks who receive the documents.http://stackoverflow.com/questions/1505088/how-can-i-make-a-tcheckbox-without-transparent-text-ie-it-ignores-themesComment by Scott W on how can i make a TCheckbox without transparent text (ie: it ignores themes)?Scott W2009-10-05T17:41:42Z2009-10-05T17:41:42ZRob, thanks for clarifying, I am using Mike Lischke's theme library. I don't recall where I got this impression, but for some reason I thought that the themes code in later versions of Delphi was just Mike's code anyway, so I thought it might have been more of apples-to-apples.http://stackoverflow.com/questions/1505088/how-can-i-make-a-tcheckbox-without-transparent-text-ie-it-ignores-themesComment by Scott W on how can i make a TCheckbox without transparent text (ie: it ignores themes)?Scott W2009-10-01T18:54:37Z2009-10-01T18:54:37ZWhat version of Delphi? Using Delphi 6 with the Themes package active, I get the behavior that you desire without any extra consideration.http://stackoverflow.com/questions/1488223/gpl-and-webapp-sourcesComment by Scott W on GPL and Webapp sourcesScott W2009-09-28T17:17:51Z2009-09-28T17:17:51ZIf the answer to this question impacts the operation of your business at all, you really should consult with a lawyer and not a bunch of programmers.http://stackoverflow.com/questions/1432509/cbdedbf-problemComment by Scott W on C#+BDE+DBF problemScott W2009-09-17T13:09:43Z2009-09-17T13:09:43ZStrange. My experience with the BDE has been that if you aren't explicitly using it, you wouldn't even know it was there. Sorry I can't be of any further help.http://stackoverflow.com/questions/1432509/cbdedbf-problemComment by Scott W on C#+BDE+DBF problemScott W2009-09-16T16:12:48Z2009-09-16T16:12:48ZHow exactly are you using the BDE in this process? Based on your code, you are going directly through the Microsoft drivers, so you would never even access the BDE. How do you know that the DBF files that complain about being invalid are actually valid? Can you get them to open properly in some other program?http://stackoverflow.com/questions/1401370/form-designer-for-dummies/1402237#1402237Comment by Scott W on Form Designer for Dummies...Scott W2009-09-10T12:40:26Z2009-09-10T12:40:26ZThank you to whomever brought me back to zero with an up vote, but why the downvote? Seems this is a perfectly legitimate answer to the question posed.http://stackoverflow.com/questions/1356765/online-lorem-ipsum-generatorsComment by Scott W on Online lorem ipsum generatorsScott W2009-08-31T14:22:12Z2009-08-31T14:22:12ZSee also: <a href="http://stackoverflow.com/questions/94747/offline-lorem-ipsum-generator" rel="nofollow" title="offline lorem ipsum generator">stackoverflow.com/questions/94747/…</a>