User Dave - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:38:59Z http://stackoverflow.com/feeds/user/35229 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1600577/hosting-yui-in-ssl-site-ie-errors 2 Hosting YUI in SSL Site - IE Errors Dave 2009-10-21T12:46:09Z 2009-10-25T16:08:49Z <p>I'm using YUI on my site. It works fine with no errors when you access over HTTP. However, when IE users access the site over HTTPS they get the dreaded <a href="http://support.microsoft.com/kb/184960" rel="nofollow">"this page contains secure and nonsecure items"</a> error message, which makes it really close to unusable.</p> <p>I'm hosting the YUI files, so they're getting served up over HTTPS, but in the CSS file, it's referencing an image file over HTTP still which causes the IE error message to appear:</p> <pre><code>background:url(http://yui.yahooapis.com/2.7.0/build/assets/skins/sam/sprite.png) </code></pre> <p>Any suggestions for suppressing this error? There are a ton of HTTP links referenced in the CSS.</p> http://stackoverflow.com/questions/1609650/sql-query-to-show-if-two-users-in-same-group 0 SQL Query to Show If Two Users in Same Group Dave 2009-10-22T20:06:59Z 2009-10-22T20:34:42Z <p>I've got a database with 3 tables: users, groups, and groupmembers.</p> <pre><code>users: id int username varchar(50) groups: id int name varchar(50) groupmembers: id int groupid int user int </code></pre> <p>Given two user ids, how can I use one query to determine if they share membership in any group (not any particular one, but any group). I'd like the query to return null if they share no membership and not null if they do share membership.</p> http://stackoverflow.com/questions/1499670/sql-query-to-find-largest-drawdown-in-table-of-financial-transactions 0 SQL Query to Find Largest "Drawdown" in Table of Financial Transactions Dave 2009-09-30T17:51:37Z 2009-09-30T19:13:37Z <p>I have a table with the following columns:</p> <pre><code>id int(10) winner int(10) profit double created datetime </code></pre> <p>I'm trying to create a query that returns the largest drawdown, or "peak to trough decline" in terms of the profit column. (More <a href="http://www.investopedia.com/terms/d/drawdown.asp?&amp;viewed=1" rel="nofollow">info on drawdown here</a>.)</p> <p>Ideally it would return the value for created for the beginning and end of the drawdown and the depth in profit from beginning to end.</p> <p>Edit: The profit column is not cumulative, but the query needs to look for cumulative drawdown. A drawdown can have rises, but once the cumulative profit reaches a new high, the drawdown is over. Here's a <a href="http://www.andreassteiner.net/performanceanalysis/images/MaxDrawdownScreenshot.JPG" rel="nofollow">line graph</a> that shows it. The X distance between the red dot and the green dot is the maximum drawdown.</p> http://stackoverflow.com/questions/1493268/error-connecting-to-third-party-app-via-com-mscorlib-exception-from-hresult-0x8 0 Error Connecting to Third Party App via COM: mscorlib Exception from HRESULT: 0x80040202 Dave 2009-09-29T15:20:49Z 2009-09-29T17:36:55Z <p>One particular user is getting an exception when connecting an application I created to a third party app using COM. The connection fails with the following error:</p> <pre><code>Source: mscorlib Message: Exception from HRESULT: 0x80040202 </code></pre> <p>This software works fine for other users.</p> <p>Any ideas what could be going on?</p> <p>The error occurs just before the app adds some event handlers to some of the COM objects from the third party app. It is able to successfully instantiate the objects, though.</p> http://stackoverflow.com/questions/1478765/location-coordinates-on-computer-showing-x-32000-y-32000 2 Location Coordinates On Computer Showing X=-32000, Y=-32000 Dave 2009-09-25T18:02:40Z 2009-09-25T18:54:23Z <p>I have a C# application that saves its state when it is closed and then reads in the saved state when it starts up. One item that is saved is the location of the main form. Normally this works great - in my code there is a line like this that saves the location to a file that is then read back in on startup:</p> <pre><code>streamWriter.WriteLine("location:" + this.Location.X + "," + this.Location.Y); </code></pre> <p>Normally, the location coordinates look like this on my machine with multiple monitors:</p> <pre><code>location:-1069,283 </code></pre> <p>Occasionally I'll see coordinates that are saved like this:</p> <pre><code>location:-32000,-32000 </code></pre> <p>And then when the user brings the app back up, the form is way off the desktop and can't (easily) be retrieved by an average user.</p> <p>What is happening to make the coordinates be read this way and are there suggestions to prevent this situation?</p> http://stackoverflow.com/questions/1444399/why-is-my-zip-file-corrupted-after-an-http-file-upload 0 Why is my .zip file corrupted after an HTTP file upload? Dave 2009-09-18T12:57:31Z 2009-09-18T22:53:32Z <p>I'm trying to use a CGI script to accept and save a file from a program that is using an HTTP POST to send a zip file.</p> <p>In the MIME section of the HTTP header it looks something like this:</p> <pre><code>Content-Disposition: form-data; name="el_upload_file_0"; filename="BugReport.zip";\r\n Content-Type: application/octet-stream\r\n\r\n </code></pre> <p>In my CGI code I'm using this:</p> <pre><code> use CGI; use strict; my $cgi = CGI-&gt;new; my $upload_file = $cgi-&gt;upload('el_upload_file_0'); my $time = time; my $filename = "/tmp/$time.zip"; open TMP, "&gt;$filename"; binmode TMP; while (&lt;$upload_file&gt;) { print TMP $_; } close TMP; </code></pre> <p>The file that keeps getting saved is somehow getting corrupt and is not a valid zip file. The HTTP request is being sent by a C# app and it's possible that it might be sending a corrupt zip file, but I doubt it. Is there anything I can do to troubleshoot further?</p> http://stackoverflow.com/questions/1378579/change-control-types-but-not-names-on-form-with-minimal-impact 5 Change Control Types (but not names) on Form with Minimal Impact Dave 2009-09-04T11:05:40Z 2009-09-10T19:15:13Z <p>I need to change a lot of textboxes to NumericUpDowns and other similar changes on some forms in my multiform c# app. I'd like to keep the name of each control the same as I make the change. There's also code for events associated with some of the controls that I'd like to change as little as possible.</p> <p>How do I do this without screwing things up badly in Visual Studio? It's version 2008. I'm worried I'll surely run into the dreaded designer errors.</p> http://stackoverflow.com/questions/1346686/why-is-databinding-for-a-checkedlistbox-hidden 0 Why is Databinding for a CheckedListBox "Hidden"? Dave 2009-08-28T12:24:35Z 2009-08-28T12:27:23Z <p>The DataSource property on a CheckedListBox is hidden from Intellisense. Why? You can use the binding properties to make it work, but I'm worried that it's hidden for a reason and that I shouldn't be databinding on a CheckedListBox for some important reason that I'm not aware of.</p> <p>Is databinding on a CheckedListBox ok??</p> http://stackoverflow.com/questions/1324239/how-to-decide-whether-to-databind-a-control-or-not 1 How to Decide Whether To DataBind a Control or Not? Dave 2009-08-24T19:28:21Z 2009-08-24T19:41:38Z <p>What are some good guidelines to follow when deciding whether or not to databind a control (for example, bind a combobox to a List)?</p> <p>Are there situations where you should always or never databind a combobox?</p> <p>How do <i>you</i> decide?</p> http://stackoverflow.com/questions/1311634/passing-argument-to-method-that-requires-ref-system-array 0 Passing Argument To Method that Requires "ref System.Array" Dave 2009-08-21T12:22:30Z 2009-08-21T13:25:09Z <p>I'm using a third party library. One of the methods requires passing an array via ref that will be populated with some info. Here's the definition for the method:</p> <pre><code>int GetPositionList(ref Array arrayPos) </code></pre> <p>How do I construct arrayPos so that this method will work? In the library's not so complete documentation it defines the method as such:</p> <pre><code>long GetPositionList(structSTIPosUpdate() arrayPos) </code></pre> <p>I've tried this but of course I'm getting errors:</p> <pre><code>System.Array position_list = new System.Array(); sti_position.GetPositionList(ref position_list); </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1274486/make-an-existing-windows-form-inheritable 1 Make an Existing Windows Form Inheritable Dave 2009-08-13T20:47:54Z 2009-08-14T18:47:15Z <p>I didn't realize at the time I create this particular application that I'd need to reuse some of the components - some Windows forms and a class or two.</p> <p>Now that I've already created the fairly complex forms inside one project, what's the easiest way to transform those forms into inheritable forms that I can reuse in other projects? Once that's done I'd like to modify the existing project to use the newly created inheritable forms.</p> <p>How can I accomplish this with as little pain as possible? I'm using C# in Visual Studio 2008.</p> http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works 0 Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# Dave 2009-01-27T15:29:41Z 2009-08-14T16:04:58Z <p>I'm trying to access an OleVariant in a callback that is coming from an ActiveX library.</p> <p>Here's what the event handler is defined as in the TLB:</p> <pre><code>procedure(ASender: TObject; var structQSnap: {??structVTIQSnap}OleVariant) of object; </code></pre> <p>Here's the definition of structVTIQSnap in the TLB:</p> <pre><code>structVTIQSnap = packed record bstrSymbol: WideString; bstrListingExch: WideString; bstrLastExch: WideString; fLastPrice: Double; nLastSize: Integer; bstrBbo: WideString; bstrBidExch: WideString; fBidPrice: Double; nBidSize: Integer; bstrAskExch: WideString; fAskPrice: Double; nAskSize: Integer; fHighPrice: Double; fLowPrice: Double; fOpenPrice: Double; fClosePrice: Double; nCumVolume: Integer; bstrTradeCondition: WideString; nQuoteCondition: Integer; bstrCompanyName: WideString; f52WeekHigh: Double; f52WeekLow: Double; fEps: Double; nSharesOutstanding: Integer; nSpCode: Integer; fBeta: Double; bstrExDivDate: WideString; nDivFreq: Integer; fDivAmt: Double; nAvgVolume: Integer; bstrCusip: WideString; fVwap: Double; bstrUpdateTime: WideString; bstrExch: WideString; nSharesPerContract: Integer; end; </code></pre> <p>It compiles fine, but everytime I try to access the bstrSymbol, I get an "Invalid Variant Operation":</p> <pre><code> procedure TForm1.HandleVTIQuoteSnap(ASender: TObject; var structQSnap: OleVariant); var symbol: WideString; begin symbol := structQSnap.bstrSymbol; // this line causes the exception end; </code></pre> <p>How do I access structQSnap and its properties in Delphi?</p> <p>In C#, this function works fine for the event handler:</p> <pre><code> void vtiQ_OnVTIQSnap(ref vtiLib.structVTIQSnap structQSnap) { MessageBox.Show("Got qsnap for " + structQuoteSnap.bstrSymbol); } </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/462676/switching-control-types-but-not-names-for-lots-of-controls-on-a-form-in-delphi 2 Switching Control Types (but not names) for Lots of Controls on a Form in Delphi Dave 2009-01-20T19:17:41Z 2009-08-06T15:08:38Z <p>I need to switch every control of a particular type on a form to a different type while maintaining the name and the code associated with each control.</p> <p>For example, let's say I need to switch a dozen or more TEdit fields to TSpinEdits. How can I do that in Delphi 2007 with minimal effort?</p> http://stackoverflow.com/questions/1093957/new-version-of-third-party-com-dll-how-to-install-and-keep-old-versions-in-delp 1 New Version of Third Party COM DLL - How to Install and Keep Old Versions in Delphi? Dave 2009-07-07T18:22:43Z 2009-07-08T19:08:40Z <p>I need to have my Delphi program use a new version of a third party DLL. I'd like to be able to use the new version but revert to the old version if I need to.</p> <p>Some of the objects are invisible objects on a form in the app. Others I instantiate at runtime.</p> <p>How do I install the new version of the DLL into Delphi while maintaining the existing version? I'm using Delphi 2007.</p> http://stackoverflow.com/questions/1063151/create-a-c-dll-that-can-be-imported-in-a-delphi-app-using-stdcall-possible 3 Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible? Dave 2009-06-30T11:24:41Z 2009-06-30T16:48:39Z <p>I have a program that I need to create a DLL for, hopefully in C#. The program is written in Delphi and I have an interface file to code to. The interface uses the stdcall calling convention.</p> <p>Is it possible to create a C# DLL that conforms to the interface and can be used in the Delphi application?</p> <p>Is there some sample code that demonstrates how to code the C# DLL to a stdcall interface method?</p> http://stackoverflow.com/questions/1044518/delphi-app-communicates-with-program-that-ends-up-crashing-occasionally-vendor 3 Delphi App Communicates with Program That Ends Up Crashing Occasionally - Vendor Blames My Delphi App Dave 2009-06-25T15:15:39Z 2009-06-26T07:04:50Z <p>I've written a Delphi DLL that communicates with a third party program via COM. Some users report that the third party program crashes occasionally. Others using the software in an identical fashion have never experienced a crash. When this crash occurs, the third party program appears to simply become unavailable in my DLL app.</p> <p>The vendor swears that it is a problem with how the Delphi DLL is coded, although they have not seen the source code and can't tell what what the DLL is doing to cause the crash, but they know it's "something".</p> <p>Aside from the fact that I believe that the third party program shouldn't be crashing due to some minuscule problem in my DLL, let's assume that there is something in my DLL that needs fixing.</p> <p>How can I determine how my app might be causing this? Does anyone have experience communicating via COM with a hyper-sensitive program like this? Are there some common things to look for that might be crashing the third party program?</p> http://stackoverflow.com/questions/937480/app-that-uses-sdk-bsods-in-delphi-2007-but-works-in-c/938854#938854 0 Answer by Dave for App That Uses SDK BSODs in Delphi 2007 But Works in C# Dave 2009-06-02T10:36:23Z 2009-06-02T10:36:23Z <p>It turns out this was caused by Kaspersky antivirus. I tracked it down by running <a href="http://www.microsoft.com/whdc/devtools/debugging/install64bit.mspx#" rel="nofollow">Windbg</a> against the crash dump and it pointed to kl1.dll. After searching around I tracked down <a href="http://www.techsupportforum.com/microsoft-support/windows-vista-support/296140-bsod-problems.html" rel="nofollow">this article</a> which identified it as Kaspersky. I disabled Kaspersky and the BSOD no longer occurs.</p> http://stackoverflow.com/questions/937480/app-that-uses-sdk-bsods-in-delphi-2007-but-works-in-c 0 App That Uses SDK BSODs in Delphi 2007 But Works in C# Dave 2009-06-02T00:47:08Z 2009-06-02T10:36:23Z <p>I'm coding an application that uses a third party SDK (OCXs). I use the SDK in C# and it works just fine. However, I can create the simplest test application with the same objects from the SDK in Delphi 2007 and it compiles ok, but BSODs on the same machine when it gets to a certain point. I've run some other test applications that use the SDK and they operate correctly, so I know the SDK is installed ok and functioning properly.</p> <p>Other Delphi projects I work on that don't use this specific SDK operate properly.</p> <p>Any ideas on how to try to fix this problem? Might I need to remove the OCXs that I've installed in Delphi and add them back? How do you do that?</p> http://stackoverflow.com/questions/938850/exception-in-delphi-app-eoleerror-could-not-obtain-ole-control-window-handle 0 Exception in Delphi App: EOleError Could Not Obtain OLE Control Window Handle Dave 2009-06-02T10:32:34Z 2009-06-02T10:32:34Z <p>I'm coding a Delphi application using Delphi 2007. I'm using a third party OCX and when I try to show a form from the main form I'm getting an exception:</p> <p>Exception class EOleError with message 'Could not obtain OLE control window handle'.</p> <p>The form that I'm trying to show was created manually within Delphi with the OCX dragged from the tool palette.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/926695/format-for-passing-a-collection-to-a-method 1 Format for Passing a Collection to a Method Dave 2009-05-29T15:46:17Z 2009-05-29T18:40:25Z <p>I'm using an API that has a method that requires this type of argument:</p> <pre><code>System.Collections.ObjectModel.Collection&lt;GenericTickType&gt; genericTickList </code></pre> <p>How do I instantiate an object for that argument? Here's what I've tried but it keeps saying that the method call has some invalid arguments.</p> <pre><code>List&lt;TickType&gt; ticks_to_get = new List&lt;TickType&gt; { TickType.Price }; </code></pre> <p>I've tried instantiating a Collection directly instead of a List and that doesn't seem to work.</p> http://stackoverflow.com/questions/862594/querying-for-consecutive-rows-with-certain-characteristics 1 Querying for Consecutive Rows with Certain Characteristics Dave 2009-05-14T10:20:51Z 2009-05-14T18:19:48Z <p>I've got a table with the following columns:</p> <pre><code>id int(10) user int(10) winner int(10) profit double created datetime </code></pre> <p>The winner column can be either 0 or 1. I'd like to create a query that returns the maximum number of consecutive winners as ordered by the created datetime column along with the first and last created date as well as the sum of the profit column from that period of consecutive winners.</p> http://stackoverflow.com/questions/690739/convert-tdatetime-to-another-time-zone-regardless-of-local-time-zone 3 Convert TDateTime to Another Time Zone Regardless of Local Time Zone Dave 2009-03-27T17:35:32Z 2009-05-04T23:43:36Z <p>Regardless of what the user's local time zone is set to, using Delphi 2007, I need to determine the time (TDateTime) in the Eastern time zone.</p> <p>How can I do that? Of course, needs to be daylight savings time aware.</p> http://stackoverflow.com/questions/586603/opening-new-form-from-event-handler-in-main-form-hangs-app 0 Opening New Form From Event Handler in Main Form Hangs App Dave 2009-02-25T15:54:28Z 2009-04-21T01:26:54Z <p>I'm trying to open a new form from within an event handler in the main form in a C# program. The event handler gets called properly and it opens the new form, but the new form is frozen and doesn't even initially populate.</p> <p>I can create a button on the main form and have the new form created after the button is clicked, but it is not working properly when done from the event handler.</p> <p>The event handler doesn't need to know the results of anything done on the form it creates - it just needs to create it and get out of the way.</p> <p>What do I need to do? The new form needs to operate independently of the main form.</p> <p>Here's where I define the event handler:</p> <pre><code>ibclient.RealTimeBar += new EventHandler&lt;RealTimeBarEventArgs&gt;(ibclient_RealTimeBar); </code></pre> <p>Here's the event handler code:</p> <pre><code>void ibclient_RealTimeBar(object sender, RealTimeBarEventArgs e) { FancyForm a_fancy_form = new FancyForm(); a_fancy_form.Show(); } </code></pre> <p>Creating a new form via a button click works fine:</p> <pre><code>private void button7_Click(object sender, EventArgs e) { FancyForm a_fancy_form = new FancyForm(); a_fancy_form.Show(); } </code></pre> http://stackoverflow.com/questions/689402/how-to-subclass-a-form-in-delphi-best-practices 0 How To Subclass A Form in Delphi? Best Practices? Dave 2009-03-27T11:32:10Z 2009-03-27T11:40:26Z <p>I've got a base form in Delphi 2007 that I'd like to reuse in another project, adding some other buttons and such.</p> <p>I'm familiar with subclassing a non-GUI object, but it is possible to subclass a Form in the same fashion? Can you make changes to the subclass Form in design mode?</p> <p>How do you go about doing this and what are some things to look out for?</p> http://stackoverflow.com/questions/650784/determine-if-changed-event-occurred-from-user-input-or-not 2 Determine If Changed Event Occurred from User Input Or Not Dave 2009-03-16T15:00:07Z 2009-03-16T16:09:21Z <p>In C#, the Changed event for a control (say, a numericupdown) gets fired whether the value was change directly by the user or if it was changed programatically as the result of some other event.</p> <p>Is there a way to determine whether the event occurred as a result of user input? For example, both manually changing the value of numericUpDown1 and clicking on button1 will display "value changed". What if I only wanted to display "value changed" if it was changed through the user clicking on the up/down arrows in the control and not as a result of clicking on button1?</p> <pre><code> private void numericUpDown1_ValueChanged(object sender, EventArgs e) { MessageBox.Show("value changed"); } private void button1_Click_1(object sender, EventArgs e) { numericUpDown1.Value = 3; } </code></pre> http://stackoverflow.com/questions/640656/sql-query-for-summary-by-instances-per-day 1 SQL Query for Summary By Instances Per Day Dave 2009-03-12T21:55:26Z 2009-03-13T01:11:30Z <p>I've got a table in a mysql database that contains monetary transactions. Let's say the tabled is called <em>transactions</em>:</p> <pre><code>id int, to_user int, from_user int, created datetime, amount double </code></pre> <p>I'm trying to create a query that returns the average amount of a transaction grouped by the number of transactions that appear per day. The applicable columns are amount and created.</p> <p>So I'm trying to answer the question: what is the average amount of transactions that occur on days where there are between 0 and 2 transactions, between 2 and 4 transactions, between 4 and 6 transactions, etc.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/635982/what-happens-to-an-object-that-falls-out-of-scope-in-delphi 1 What Happens to an Object That Falls Out of Scope in Delphi? Dave 2009-03-11T19:23:21Z 2009-03-12T15:35:42Z <p>When an object that is created within a function and the function is completed, what happens to the object if it wasn't explicitly destroyed?</p> <p>Do all variables need to be destroyed when they fall out of scope or are they taken care of when they fall out of scope?</p> <p>So for example, what happens to locallist after custom_function has been called?</p> <pre><code>function TForm1.custom_function(string: test_string): boolean; var locallist: TStringList; begin locallist := TStringList.Create; // do a bunch of stuff here, but don't destroy locallist return true; end; </code></pre> http://stackoverflow.com/questions/610313/listening-to-events-in-main-form-from-another-form-in-c 0 Listening to Events in Main Form from Another Form in C# Dave 2009-03-04T12:22:24Z 2009-03-04T14:13:09Z <p>I have an application that has a main form and uses an event handler to process incoming data and reflect the changes in various controls on the main form. This works fine.</p> <p>I also have another form in the application. There can be multiple instances of this second form running at any given time.</p> <p>What I'd like to do is have each instance of this second form listen to the event handler in the main form and update controls on its instance of the second form.</p> <p>How would I do this?</p> <p>Here's some sample code. I want to information from the_timer_Tick event handler to update each instance of SecondaryForm.</p> <pre><code>public partial class Form1 : Form { Timer the_timer = new Timer(); public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { the_timer.Tick += new EventHandler(the_timer_Tick); the_timer.Interval = 2000; the_timer.Enabled = true; } void the_timer_Tick(object sender, EventArgs e) { // I would like code in here to update all instances of SecondaryForm // that happen to be open now. MessageBox.Show("Timer ticked"); } private void stop_timer_button_Click(object sender, EventArgs e) { the_timer.Enabled = false; } private void start_form_button_Click(object sender, EventArgs e) { SecondaryForm new_form = new SecondaryForm(); new_form.Show(); } } </code></pre> http://stackoverflow.com/questions/604442/how-do-i-parse-the-json-date-format-in-perl 0 How do I parse the JSON Date Format in Perl? Dave 2009-03-02T23:08:03Z 2009-03-03T17:54:08Z <p>How can I parse this date format that my web service is receiving in JSON format in Perl? I'd like to convert it to a DateTime object:</p> <pre><code>Date(1216647000000-0400) </code></pre> <p>I assumed it was milliseconds since the epoch along with a time zone offset but the dates are way off.</p> http://stackoverflow.com/questions/586829/change-color-of-button-in-datagridview-cell 0 Change Color of Button in DataGridView Cell Dave 2009-02-25T16:51:32Z 2009-02-25T19:06:26Z <p>I have a large DataGridView control that has several cells most of which contain a button. How can I change the color of those buttons?</p> <p>This changes the "outline" of the button but not the button itself.</p> <pre><code>row.Cells[2].Style.BackColor = System.Drawing.Color.Red; </code></pre> <p>This doesn't seem to change anything that's visible:</p> <pre><code>row.Cells[2].Style.ForeColor = System.Drawing.Color.Red; </code></pre> <p>If it's not possible to change the background, is it possible to change the font on the button?</p> <p>Using .NET 2.0.</p> http://stackoverflow.com/questions/1600577/hosting-yui-in-ssl-site-ie-errors/1600601#1600601 Comment by Dave on Hosting YUI in SSL Site - IE Errors Dave 2009-10-21T12:54:19Z 2009-10-21T12:54:19Z do you know if there's a utility to mirror every image that's referenced in a CSS file? http://stackoverflow.com/questions/1499670/sql-query-to-find-largest-drawdown-in-table-of-financial-transactions Comment by Dave on SQL Query to Find Largest "Drawdown" in Table of Financial Transactions Dave 2009-09-30T19:14:11Z 2009-09-30T19:14:11Z I added a link to an image that shows a line graph that should make it easier to follow. http://stackoverflow.com/questions/1478765/location-coordinates-on-computer-showing-x-32000-y-32000/1478980#1478980 Comment by Dave on Location Coordinates On Computer Showing X=-32000, Y=-32000 Dave 2009-09-30T10:17:17Z 2009-09-30T10:17:17Z Thanks, Jon. Can you point me to a URL the explains how you're using Program.AppSettings? I don't have AppSettings underneath my Program object. http://stackoverflow.com/questions/1493268/error-connecting-to-third-party-app-via-com-mscorlib-exception-from-hresult-0x8/1493292#1493292 Comment by Dave on Error Connecting to Third Party App via COM: mscorlib Exception from HRESULT: 0x80040202 Dave 2009-09-29T17:37:17Z 2009-09-29T17:37:17Z Edited question with: The error occurs just before the app adds some event handlers to some of the COM objects from the third party app. It is able to successfully instantiate the objects, though. http://stackoverflow.com/questions/1478765/location-coordinates-on-computer-showing-x-32000-y-32000/1478847#1478847 Comment by Dave on Location Coordinates On Computer Showing X=-32000, Y=-32000 Dave 2009-09-25T18:28:53Z 2009-09-25T18:28:53Z How would I detect the non-minimized coordinates? http://stackoverflow.com/questions/1378579/change-control-types-but-not-names-on-form-with-minimal-impact/1378665#1378665 Comment by Dave on Change Control Types (but not names) on Form with Minimal Impact Dave 2009-09-04T14:02:19Z 2009-09-04T14:02:19Z I was hoping to avoid that. ;-) http://stackoverflow.com/questions/1311634/passing-argument-to-method-that-requires-ref-system-array/1311688#1311688 Comment by Dave on Passing Argument To Method that Requires "ref System.Array" Dave 2009-08-21T13:02:56Z 2009-08-21T13:02:56Z @Vinay - yes, it's the Sterling API. I get this when I try to do what you've described: The best overloaded method match for 'SterlingLib.ISTIPosition.GetPositionList(ref System.Array)' has some invalid arguments and Argument '1': cannot convert from 'ref SterlingLib.structSTIPositionUpdate[]' to 'ref System.Array' http://stackoverflow.com/questions/1274486/make-an-existing-windows-form-inheritable/1274501#1274501 Comment by Dave on Make an Existing Windows Form Inheritable Dave 2009-08-14T18:22:44Z 2009-08-14T18:22:44Z This works great. How can I override a method on the parent form? http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484286#484286 Comment by Dave on Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# Dave 2009-08-14T16:06:01Z 2009-08-14T16:06:01Z I just updated the post and added the full definition of the structVTIQSnap from the _TLB.pas file. I assume that is what you mean? http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484286#484286 Comment by Dave on Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# Dave 2009-08-14T14:26:56Z 2009-08-14T14:26:56Z The TLB importer imports it as a &quot;packed record&quot;, but the values are weird unless I modify it to be a &quot;record&quot;. BTW, my .NET app can access the data fine without crashes. Any way to examine how VS imported it and see how the type should be defined? I also thought about seeing if Delphi 2009 might import it properly - think that's worth it? http://stackoverflow.com/questions/1274486/make-an-existing-windows-form-inheritable/1274507#1274507 Comment by Dave on Make an Existing Windows Form Inheritable Dave 2009-08-14T10:14:44Z 2009-08-14T10:14:44Z @Stephen - I've created a new Windows Forms Control Library&quot; to my existing project and dragged (moved) a form to it. How do I access it from the existing project now? http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484286#484286 Comment by Dave on Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# Dave 2009-08-13T16:11:58Z 2009-08-13T16:11:58Z @TOndrej: This mostly works, although the program that we're comm. with crashes consistently although not right away. Their support has narrowed it down to this section of their code. It seems like this might be the culprit, although this section of code executes dozens and dozens of times successfully before the program eventually crashes. Any ideas? http://stackoverflow.com/questions/1093957/new-version-of-third-party-com-dll-how-to-install-and-keep-old-versions-in-delp Comment by Dave on New Version of Third Party COM DLL - How to Install and Keep Old Versions in Delphi? Dave 2009-07-07T18:55:41Z 2009-07-07T18:55:41Z Yes, Lars. That's what I'm trying to do. http://stackoverflow.com/questions/1044518/delphi-app-communicates-with-program-that-ends-up-crashing-occasionally-vendor/1044640#1044640 Comment by Dave on Delphi App Communicates with Program That Ends Up Crashing Occasionally - Vendor Blames My Delphi App Dave 2009-06-25T19:58:09Z 2009-06-25T19:58:09Z Yes, the vendor is not very helpful at all here. I'm more than happy to admit a mistake if I find it. What are the chances that the third party app doesn't handle the &quot;multi-threadedness&quot; of my DLL? Is it possible it simply doesn't have the capabilities to handle it properly? http://stackoverflow.com/questions/1044518/delphi-app-communicates-with-program-that-ends-up-crashing-occasionally-vendor/1044771#1044771 Comment by Dave on Delphi App Communicates with Program That Ends Up Crashing Occasionally - Vendor Blames My Delphi App Dave 2009-06-25T19:01:18Z 2009-06-25T19:01:18Z Samuel - is there way way to tell if this is occurring in my situation?