User graham.reeds - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T03:36:21Z http://stackoverflow.com/feeds/user/342 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1867284/returned-ajax-array-not-being-copied-to-array 1 Returned AJAX array not being copied to array graham.reeds 2009-12-08T14:24:35Z 2009-12-08T15:02:21Z <p>I have simple AJAX function that uses jQuery to return an array of 300 test objects from a database. I can see the data is returned, and I can use FireBug to step through the first loop and step into the constructor.</p> <p>This data is copied to an JS array. The code fragment looks like:</p> <pre><code> //retrieve star locations to display on page $.getJSON("stars.php?jsoncallback=?", function(data) { for (var x=0, xx=data.length; x&lt;xx; x++) { // planetArray[x] = new Planet(data[x].xpos, data[x].ypos); // also doesn't work. planetArray.push(new Planet(data[x].xpos, data[x].ypos)); } }); for (var i=0, ii=planetArray.length; i&lt;ii; i++) { // display the data. } </code></pre> <p>FireBug says <code>planetArray.length</code> is zero. The <code>Planet</code> constructor looks like:</p> <pre><code>function Planet(x, y) { this.x = x; this.y = y; } </code></pre> <p>I think it is a scoping issue but I can't seem to figure it out. In other languages creating a new object means it exists on the heap and survives the scope, but here it seems to disappear into the ether.</p> <p>How can I return an array and push it into my own array for use later (or even in another function)?</p> http://stackoverflow.com/questions/1112597/stretch-image-as-background/1866587#1866587 0 Answer by graham.reeds for Stretch image as background graham.reeds 2009-12-08T12:14:54Z 2009-12-08T12:14:54Z <p>I don't want to hijack this question, but if you had this code:</p> <pre><code>background-image: url('images/background.gif'); background-size: 100%; </code></pre> <p>This repeats the image in all current browsers (IE, FF, GC, SF, OP) which while unsavory works across all the browsers, unlike the z-index depth method (I have a complex foreground).</p> <p>However if a browser was to suddenly get bg-size CSS3 support, does the CSS3 spec say what should happen? Should it stretch the image or do what it always did and repeat?</p> http://stackoverflow.com/questions/921543/free-vb6-vba-profiler-and-best-excel-practices 0 Free VB6/VBA profiler and best Excel practices graham.reeds 2009-05-28T15:37:57Z 2009-12-03T15:49:33Z <p>We have a lot of reports that are generated via VBA &amp; Excel. Only a small percentage of the reports are actual calculations - the majority of the work is sql calls and formatting/writing of cells. The longest of which takes several hours, the majority takes around 20-30 mins each.</p> <p>The VBA/Excel code plugs into a dll that the VB6 desktop apps use - it's here that all the sql calls are made. While I am sure that there is room for improvement here, it's not this that concerns me - the desktop apps are fairly snappy.</p> <p>Two VBA functions are used in abundance: These are called GetRange and SetupCell and they nearly always appear together. The GetRange function is a wrapper for the Excel.Range object. It takes a sheet, and 4 values for the extents of the range. Its main use is to pick the cell for editing. There doesn't appear to be much chance of optmising it, but is it the best way?</p> <p>Its partner is SetupCell. This takes a Excel.Range object, text and a dozen parameters about the cell (font, borders, etc). Most of these parameters are optional booleans but again, it seems very wasteful. Some of these can be set posthumously but some are dependant on the values contained in the cell.</p> <p>There's quite a lot of code contained in these functions, mainly if statements and work won't appreciate me posting it.</p> <p>I guess I've got two questions: <strong>Is there a better way and what is it</strong> and <strong>is there are free profiler that I can use to see if the bulk of the time is here or in the dll?</strong></p> http://stackoverflow.com/questions/1803315/report-fails-with-a-severe-error-occurred 0 Report fails with 'A severe error occurred...' graham.reeds 2009-11-26T12:06:25Z 2009-11-28T15:08:22Z <p>I have a report that calls 5 stored procedures, 3 of which are used for the display of data.</p> <p>The stored procedures work fine if called from Query Analyzer.</p> <p>However in Preview Mode in Visual Studio 2008 and on the Web Page it would throw an error on the last procedure - GenerateInstallReport. This report </p> <ul> <li>takes 4 parameters (customer id, from, to and user id),</li> <li>calls 1 internal store procedure, </li> <li>returns 12 columns (one of which is a large (3072 characters) varchar field), </li> <li>takes approximately 1 second to run and </li> <li>returns (for the testing time period) 9 rows.</li> </ul> <p>I had the SysAdmin enable remote errors on and the error became a little more specific with:</p> <blockquote> <p>An error occurred during local report processing. <br> A error has occurred during report processing. <br> Query exectuion failed for dataset 'GenerateInstallReport'. <br> A severe error occurred on the current command. The results, if any, should be discarded. <br></p> </blockquote> <p>If I am to delete this procedure from the dataset the report completes fine (the meat of the report takes about 2 mins to complete).</p> <p>Reducing the number of parameters returned in the procedure seems to point the very last field returned from the procedure which is a datetime. If this is commented out and the corresponding field from preview then it works. There is nothing special about this field apart from they are all null for that time period. However I have other reports that have null datetime fields but they aren't the last field in the report. Moving the field from last doesn't have an effect. Just simply returning the field seems to the cause the failure.</p> <p>It is running on SQL Server 2008 Sp1 with cumulative update 4 installed. All 5 procedures have their permissions set to public. The called procedure is also set to public.</p> http://stackoverflow.com/questions/1795203/how-to-use-cpp-unit/1795534#1795534 3 Answer by graham.reeds for how to use cpp unit graham.reeds 2009-11-25T08:54:54Z 2009-11-25T10:45:23Z <p>When you do start to use unit-testing, don't aim for 100% coverage - that way lies madness.</p> <p>Look to cover all the major methods within the class (the low hanging fruit).</p> <p>When I started unit testing (via <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>) I went for total coverage, making methods that should of been private protected and then using wrapper classes to be able to test them. Seam functions so I could test classes that were closer to the metal.</p> <p>A good book on unit testing is <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> which despite it's name talks about green fields development too, is well written and has good examples to boot.</p> <p>Update: Also don't worry too much about covering every single possibility at the start when writing the tests. You will miss some stuff. I once had a test that passed but the live code would crash in that function. Running the inputs through the test showed what was wrong and allowed me to rewrite the function so it passed all tests. The original test had held strong for about 7 or 8 months before a customer (unfortunately for me) discovered the bug.</p> http://stackoverflow.com/questions/1762084/what-libraries-do-i-need-to-run-this-keygenerator-class/1762093#1762093 0 Answer by graham.reeds for what libraries do i need to run this keygenerator class graham.reeds 2009-11-19T09:47:55Z 2009-11-19T09:47:55Z <p>You don't say where you got it from, etc., but Eclipse gives you hints based on what it can determine from your code and what code is it's libraries.</p> <p>IIRC: Where you see the yellow exclamation double clicking that will give you a list based on what it thinks you meant (I find that it is right about 90% of the time) or (AFM) press F1 when the caret is on that line.</p> http://stackoverflow.com/questions/1680751/concat-multiple-rows-into-a-comma-delimited-value-during-update 0 Concat multiple rows into a comma-delimited value during Update graham.reeds 2009-11-05T13:57:23Z 2009-11-18T15:54:14Z <p>I have a temporary table with a field called Method, thus:</p> <pre><code>DECLARE @CaseSites TABLE ( BriefID int, Method varchar(60) -- other fields ) </code></pre> <p>Method will be filled from several rows in another table - CaseEventTypeList.</p> <p>Running</p> <pre><code>SELECT * FROM CaseEventTypeList WHERE RefID = 1 </code></pre> <p>Gives</p> <pre><code>RefID TypeID 1 2 1 3 1 6 </code></pre> <p>Turning this into a single comma delimited result is fairly trivial:</p> <pre><code>DECLARE @CETList varchar(30) SELECT @CETList = COALESCE(@CETList + ',', '') + CAST(CETL.[TypeID] AS varchar) FROM CaseEventTypeList CETL WHERE CETL.RefID = 1 PRINT @CETList </code></pre> <p>Giving:</p> <pre><code>2,3,6 </code></pre> <p>Now I need to expand this to take in the entire table. This is what I came up with:</p> <pre><code>UPDATE @CaseSites SET Method = COALESCE(Method + ',','') + CAST(CETL.TypeID AS VARCHAR) FROM CaseEvents CE JOIN CaseEventTypeList AS CETL ON CETL.RefID = CE.TypeListID WHERE BriefID = CE.CaseID </code></pre> <p>However this only fills Method with the first value from each set of values.</p> <p>I <a href="http://www.sqlprof.com/blogs/sqldev/archive/2008/03/31/how-to-list-multiple-rows-of-data-on-same-line.aspx" rel="nofollow">looked online and found this</a> but would rather not use a udf - especially when the solution feels so close.</p> <p><strong>UPDATE:</strong> The data is fairly simple, the RefId is incremented for each case, the TypeID can be any number, though only 1 to 8 are modelled currently. Thus you might have:</p> <pre><code>RefID TypeID 12 2 12 7 13 1 14 1 14 3 14 6 </code></pre> <p>And this will hopefully be modelled as</p> <pre><code>SELECT Method from @CaseSites Method ... 12 2,7 13 1 14 1,3,6 ... </code></pre> http://stackoverflow.com/questions/1631387/parameter-selection-for-update 0 Parameter selection for update graham.reeds 2009-10-27T14:57:08Z 2009-11-17T19:00:02Z <p>I am trying to convert one of our most simple reports to Reporting Services.</p> <p>The original excel report calls several stored procedures using the results of one to structure the next as it drills down through the data.</p> <p>I currently have 2 datasets both of which call stored procedures.</p> <p>The first is called GetGlobalCustomers. This populates a resultset which returns the connection info for each database (we have split our database per customer) and returns the fields ID, Name, Customer and Server.</p> <p>The second is called GetSchedules which needs the Server and Name provided by GetGlobalCustomers to query the correct database.</p> <p>However I only want to select the Customer by name, not the individual server/name (remembering which customer is on which server and what their database name is nigh impossible).</p> <p>So I have a parameter called CustomerName, pushed to the top of the parameters list which presents the user the Customer to select first with the value being the ID. I also have two parameters called DBServer and DBName. How do I set DBServer and DBName to be dependent on the Customer selected? There doesn't appear to be a readily apparent means.</p> <p>I am guessing that it needs to be part of Available Values and Specify Values but I can't figure out how to say "For this customer ID use this database/Name". I think I could by creating two extra datasets which perform a select by id queries for dbserver/dbname, but if I need to do that each time I want to select by parameter I will have dozens of datasets.</p> <p>Thanks</p> http://stackoverflow.com/questions/1747750/select-column-if-blank-select-from-another 1 Select column, if blank select from another graham.reeds 2009-11-17T09:56:17Z 2009-11-17T13:52:32Z <p>How does one detect whether a field is blank (not null) and then select another field if it is?</p> <p>What I really need is a IsBlank function that works the same as IsNull but with with blanks.</p> <p>REPLACE doesn't work with blanks, COALESCE only works with NULLS.</p> http://stackoverflow.com/questions/1747420/i-need-to-print-20-000-word-documents-is-there-a-3rd-party-tool-that-will-help-m/1747488#1747488 5 Answer by graham.reeds for I need to print 20,000 Word documents, is there a 3rd party tool that will help me do this or do I need to write custom code? graham.reeds 2009-11-17T09:04:17Z 2009-11-17T09:04:17Z <p>Outsource the job to a specialist printing company.</p> http://stackoverflow.com/questions/1715241/merge-these-two-queries-into-a-single-query 1 Merge these two queries into a single query graham.reeds 2009-11-11T13:42:30Z 2009-11-12T04:13:13Z <p>I have the following queries:</p> <pre><code>SELECT Sites.EDISID, Sites.[Name], (SUM(DLData.Quantity) / 8) AS TiedDispense FROM Sites JOIN UserSites ON UserSites.EDISID = Sites.EDISID JOIN Users ON Users.[ID] = UserSites.UserID JOIN MasterDates ON MasterDates.EDISID = UserSites.EDISID JOIN DLData ON DLData.DownloadID = MasterDates.[ID] JOIN Products ON Products.[ID] = DLData.Product LEFT JOIN SiteProductTies ON SiteProductTies.EDISID = UserSites.EDISID AND SiteProductTies.ProductID = Products.[ID] LEFT JOIN SiteProductCategoryTies ON SiteProductCategoryTies.EDISID = UserSites.EDISID AND SiteProductCategoryTies.ProductCategoryID = Products.CategoryID WHERE Users.[ID] = @UserID AND (COALESCE(SiteProductTies.Tied, SiteProductCategoryTies.Tied, Products.Tied) = @Tied OR @Tied IS NULL) AND MasterDates.[Date] BETWEEN @From AND @To AND MasterDates.[Date] &gt;= Sites.SiteOnline GROUP BY Sites.EDISID, Sites.[Name] SELECT Sites.EDISID, Sites.[Name], SUM(Delivery.Quantity) AS TiedDelivered FROM Sites JOIN UserSites ON UserSites.EDISID = Sites.EDISID JOIN Users ON Users.[ID] = UserSites.UserID JOIN MasterDates ON MasterDates.EDISID = UserSites.EDISID JOIN Delivery ON Delivery.DeliveryID = MasterDates.[ID] JOIN Products ON Products.[ID] = Delivery.Product LEFT JOIN SiteProductTies ON SiteProductTies.EDISID = UserSites.EDISID AND SiteProductTies.ProductID = Products.[ID] LEFT JOIN SiteProductCategoryTies ON SiteProductCategoryTies.EDISID = UserSites.EDISID AND SiteProductCategoryTies.ProductCategoryID = Products.CategoryID WHERE Users.[ID] = @UserID AND (COALESCE(SiteProductTies.Tied, SiteProductCategoryTies.Tied, Products.Tied) = @Tied OR @Tied IS NULL) AND MasterDates.[Date] BETWEEN @From AND @To AND MasterDates.[Date] &gt;= Sites.SiteOnline GROUP BY Sites.EDISID, Sites.[Name] </code></pre> <p>As you can see they are very similar - only the lines regarding whether the query is for <code>DLData</code> or <code>Delivery</code> are different. One returns the total delivered the other returns the total dispensed. </p> <p>Currently I am using them as two separate sub-queries in a third query. Singly they take approximately 1-2 seconds each. As two subqueries they are taking between 6 and 10 seconds (depending on load) and both return just 47 rows (though they are touching thousands of rows total).</p> <p>I was thinking that combining them will give me a decent speed up - especially as this query will be called a lot.</p> <p>However my attempts have failed as the number of rows change when I try to combine the two. I have tried various JOIN combinations but nothing returns the correct results.</p> <p>Do the SO'ers have any suggestions? </p> http://stackoverflow.com/questions/1715131/the-future-of-ssrs 0 The future of SSRS graham.reeds 2009-11-11T13:20:04Z 2009-11-11T13:35:03Z <p>Does anyone know of where future features of SSRS are listed?</p> <p><a href="http://blogs.msdn.com/sqlrsteamblog/archive/2009/11/09/sql-server-2008-r2-november-ctp-what-s-new-in-reporting-services.aspx" rel="nofollow">I found a page</a> that describes the features that are released with SS2K8 R2 but they don't solve the main problem I have porting our Excel reports to SSRS which is vertical merging (plus rotated text to go in those cells) and horizontal tables.</p> <p>I would like to be able to tell my angry users if/when they will be available...</p> http://stackoverflow.com/questions/1672788/calculate-percentage-from-two-colums-and-write-back-to-table 0 Calculate Percentage from two colums and write back to table graham.reeds 2009-11-04T10:03:22Z 2009-11-04T15:54:11Z <p>With a temporary table as:</p> <pre><code>DECLARE @Results TABLE ( CDA varchar(60), Found int default 0, Accepted int default 0, Percentage decimal(3,0) default 0.0, ) </code></pre> <p>How do you take populated Found and Accepted columns and write it back to the Pecentage column?</p> <p>I have:</p> <pre><code>UPDATE @Results SET Percentage = ( SELECT (((Accepted * 1.00) / Found) * 100) FROM @Results ) </code></pre> <p>Which if you take the SELECT line (comment out the UPDATE) it returns the correct values. However in the context of the UPDATE it fails with <code>Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, &lt;, &lt;= , &gt;, &gt;= or when the subquery is used as an expression. The statement has been terminated.</code></p> <p><strong>How do I write the values back to the correct row?</strong></p> http://stackoverflow.com/questions/1661238/how-can-a-client-gracefully-detect-when-a-server-disconnects/1661336#1661336 0 Answer by graham.reeds for How can a client gracefully detect when a server disconnects? graham.reeds 2009-11-02T13:26:38Z 2009-11-02T13:26:38Z <p>Take a look on <a href="http://www.codeproject.com/" rel="nofollow">Code Project</a> for Len Holgates stuff - <a href="http://stackoverflow.com/users/7925/len-holgate">he hangs out here too</a>. He is <em>the</em> brain on Sockets and his IOCP stuff is the best I've seen, and I know his stuff does exactly what you are looking for.</p> http://stackoverflow.com/questions/1658776/beat-em-up-game-space-management/1660873#1660873 1 Answer by graham.reeds for Beat em' up game space management ? graham.reeds 2009-11-02T11:58:53Z 2009-11-02T11:58:53Z <p>Fire them out to the Z buffer and let that worry about it.</p> <p>If you find that in the future it is too slow (via profiling obviously) then look at optimizing it.</p> <p>Take the simplest solution and move on.</p> http://stackoverflow.com/questions/1572012/logic-in-stored-procedure 0 Logic in stored procedure graham.reeds 2009-10-15T12:19:04Z 2009-10-25T12:06:04Z <p>I have need of some logic in a stored procedure. All the stored procedure does it perform a couple of logic rules and then returns a true or false depending on the result.</p> <p>The pseudo SQL code:</p> <pre><code>CREATE TABLE #PV ([Date] DATETIME, Dis FLOAT, Del Float, Sold Float) INSERT #PV exec GetPVSummaryReport @ID, @PID, @From, @To SELECT AVG(Dis) / 8 AS DisAvg, AVG(Del) AS DelAvg FROM #PV IF DisAvg &gt; 20 -- this is the bit I am having problems grokking RETURN TRUE ELSE -- do longer calculation </code></pre> <p><strong>How do you do this sort of logic?</strong></p> <p>Notes about the code: The table #PV has 4 fields - those provided (Date, Dis, Del and Sold).</p> http://stackoverflow.com/questions/1589521/use-a-left-hand-value-in-right-hand-sql-comparison 0 Use a left hand value in right hand SQL comparison graham.reeds 2009-10-19T15:52:23Z 2009-10-20T10:30:00Z <p>I have this <code>SELECT</code> statement:</p> <pre><code>SELECT SUM(dbo.DLData.Quantity) FROM dbo.MasterDates JOIN dbo.DLData ON MasterDates.[ID] = dbo.DLData.DownloadID WHERE dbo.MasterDates.[Date] BETWEEN @From AND @To AND dbo.MasterDates.SiteID = @X </code></pre> <p>If you plug in the <code>@From</code>, <code>@To</code> and <code>@X</code> it works. This is to be the right hand side of a comparison. However in the comparison the <code>@X</code> needs to come from the left hand side of the as the <code>SELECT</code> on the outside is performing test on every <code>SiteID</code> in the set. Without this clause the main clause works. They need to go together. Here is the full select statement with the above select left in. Eventually the two having clauses will determine the key products for a site. </p> <pre><code>--INSERT INTO SiteKeyProducts SELECT dbo.MasterDates.SiteID as SiteID , dbo.DLData.Product as ProductID FROM dbo.MasterDates JOIN dbo.DLData ON dbo.MasterDates.[ID] = dbo.DLData.DownloadID WHERE dbo.MasterDates.[Date] BETWEEN @From AND @To GROUP BY dbo.MasterDates.SiteID , dbo.DLData.Product HAVING SUM(dbo.DLData.Quantity) &gt; 960 OR SUM(dbo.DLData.Quantity) &gt; (SELECT SUM(dbo.DLData.Quantity) FROM dbo.MasterDates JOIN dbo.DLData ON MasterDates.[ID] = dbo.DLData.DownloadID WHERE dbo.MasterDates.[Date] BETWEEN @From AND @To AND dbo.MasterDates.SiteID = @X) ORDER BY dbo.MasterDates.SiteID </code></pre> <p><strong>How do you use the outer clause on an inner statement?</strong> Hell, I don't even know if I am using the correct terminology to describe my problem.</p> <p>Arrgghh - Set based logic does my head in!!</p> http://stackoverflow.com/questions/1589521/use-a-left-hand-value-in-right-hand-sql-comparison/1593725#1593725 0 Answer by graham.reeds for Use a left hand value in right hand SQL comparison graham.reeds 2009-10-20T10:30:00Z 2009-10-20T10:30:00Z <p><a href="http://ask.sqlservercentral.com/users/17/matt-whitfield" rel="nofollow">Matt Whitfield</a> on the <a href="http://ask.sqlservercentral.com/" rel="nofollow">ask.sqlservercentral</a> StackExchange site came up with the following answer to <a href="http://ask.sqlservercentral.com/questions/522/use-a-left-hand-value-in-right-hand-sql-comparison" rel="nofollow">this problem</a>:</p> <pre><code>SELECT outerMaster.SiteID as SiteID , dbo.DLData.Product as ProductID FROM dbo.MasterDates outerMaster JOIN dbo.DLData ON outerMaster.[ID] = dbo.DLData.DownloadID WHERE outerMaster.[Date] BETWEEN @From AND @To GROUP BY outerMaster.SiteID , dbo.DLData.Product HAVING SUM(dbo.DLData.Quantity) &gt; 960 OR SUM(dbo.DLData.Quantity) &gt; (SELECT SUM(dbo.DLData.Quantity) FROM dbo.MasterDates innerMaster JOIN dbo.DLData ON innerMaster.[ID] = dbo.DLData.DownloadID WHERE innerMaster.[Date] BETWEEN @From AND @To AND innerMaster.SiteID = outerMaster.SiteID) ORDER BY outerMaster.SiteID </code></pre> <p>And <a href="http://ask.sqlteam.com/users/64/rickd" rel="nofollow">RickD</a> came up with this answer on the <a href="http://ask.sqlteam.com" rel="nofollow">ask.sqlteam.com</a> site:</p> <pre><code>--INSERT INTO SiteKeyProducts SELECT MD.SiteID as SiteID , DLD.Product as ProductID FROM dbo.MasterDates MD JOIN dbo.DLData DLD ON MD.[ID] = DLD.DownloadID LEFT JOIN (SELECT SiteID, SUM(dbo.DLData.Quantity) SumMDQuantity FROM dbo.MasterDates JOIN dbo.DLData ON MasterDates.[ID] = dbo.DLData.DownloadID WHERE dbo.MasterDates.[Date] BETWEEN @From AND @To GROUP BY SiteID) as sumMD ON sumMD.SiteID = MD.SiteID WHERE MD.[Date] BETWEEN @From AND @To GROUP BY MD.SiteID , DLD.Product HAVING SUM(DLD.Quantity) &gt; 960 OR SUM(DLD.Quantity) &gt; sumMD.SumMDQuantity ORDER BY MD.SiteID </code></pre> <p>Both work great, though Matts bests Ricks effort despite my initial view that a Join would be faster. Matts takes ~2m 10s while Ricks takes ~2m 40s. This is for the largest live database as both takes less than 10s on the test db.</p> http://stackoverflow.com/questions/1587726/variables-and-stored-procedures 0 Variables and stored procedures graham.reeds 2009-10-19T09:29:21Z 2009-10-19T09:41:41Z <p>As a follow-up to my <a href="http://stackoverflow.com/questions/1572012/logic-in-stored-procedure/1572021#1572021">previous question</a> I would like to know if there is a simple way of doing the following (which doesn't compile):</p> <pre><code>CREATE TABLE #PV ([ID] INT, [Date] DATETIME, Dis FLOAT, Del Float, Sold Float) INSERT #PV @ID, exec GetPVSummaryReport @ID, @PID, @From, @To </code></pre> <p>The reason is I need to join #PV onto another table by [ID], but the original stored procedure doesn't have the necessary parameter. </p> <p>Updating the SP is difficult (not impossible) as the code is 'out-in-the-wild' and I'd prefer not to have 'GetPVSummaryReport2' (which we already have several of already).</p> http://stackoverflow.com/questions/574587/how-to-debug-a-bad-dll-calling-convention-error-in-msaccess-vba-code/1561138#1561138 0 Answer by graham.reeds for How to debug a Bad DLL calling convention error in MSAccess VBA code graham.reeds 2009-10-13T15:51:22Z 2009-10-13T15:51:22Z <p>I've just got this in Excel and wondered if anyone else have gotten it previously. My solution was to move around the references to my own DLL and click 'Compile &lt;Project&gt;'.</p> http://stackoverflow.com/questions/1559737/handling-integer-having-large-number-of-digits/1559813#1559813 0 Answer by graham.reeds for handling integer having large number of digits graham.reeds 2009-10-13T12:09:13Z 2009-10-13T12:09:13Z <p>I did a similar thing at Uni in Pascal to add and subtract extrememly large numbers. Simply you need to handle any number above the limit of your numbers, then any overflow goes into a larger bucket. The reverse applies (though you need to be more careful) for subtraction.</p> <p>If you want to handle multiplication and division, and you don't want to use a third party package, then I refer you to a copy of Mike Abrash's <a href="http://2020ok.com/books/72/zen-of-graphics-programming-2nd-edition-40472.htm" rel="nofollow">Zen of Graphics Programming</a>. In it he lists 32bit Multiplication and Divisions using 16bit numbers. It's in assembler, but you can handle that can't you?-)</p> http://stackoverflow.com/questions/1507999/opposite-of-abstractor/1554006#1554006 0 Answer by graham.reeds for Opposite of "Abstractor" graham.reeds 2009-10-12T11:21:31Z 2009-10-12T11:21:31Z <p>When I read the title for this question I immeadiately thought of <strong>instantiator</strong> like you.</p> http://stackoverflow.com/questions/1537964/visual-c-equivalent-of-gccs-attribute-packed/1538014#1538014 3 Answer by graham.reeds for Visual C++ equivalent of GCC's __attribute__ ((__packed__)) graham.reeds 2009-10-08T14:03:04Z 2009-10-08T14:03:04Z <p>Why do you need something to go in the struct?</p> <p>I think <code>#pragma pack(1)</code> is the same, or am I missing something?</p> <p>You can do this:</p> <pre><code>struct Foo { #pragma push(1) int Bar; #pragma pop }; </code></pre> <p>But it looks ugly.</p> http://stackoverflow.com/questions/1334794/locked-visible-cells-excel-problem 0 Locked visible cells Excel problem graham.reeds 2009-08-26T13:43:17Z 2009-10-07T21:33:15Z <p>I have a problem with an Excel Template in Excel 2007. I need to remove a row from a summary report but the developer who created this report has somehow managed to set it so that only certain number of rows &amp; columns are visible (in case you are interested it is A1:G30) - no headers, no grid, just blue nothingness.</p> <p>Deleting the offending line just peels back the white-ness. I want to change the resolution of the visible grid to A1:G29.</p> <p>I would ask on google but I haven't the foggiest what the tool would be called to do this (if I did I probably wouldn't be asking). Giving generic terms gives very generic results. I've been through every ribbon and came up blank.</p> <p>Help me out my misery - please!</p> http://stackoverflow.com/questions/1525107/one-massive-css-or-lots-of-little-ones/1525265#1525265 0 Answer by graham.reeds for One massive CSS - or lots of little ones? graham.reeds 2009-10-06T12:19:47Z 2009-10-06T13:34:52Z <p>I have a site css file that controls the styles for the overall site (layout mainly).</p> <p>Then I have smaller css files for page specific stuff.</p> <p>I even sometimes have more than one if I am planning on ripping out an entire section at a later date.</p> <p>Better to download and parse 2 files at 20kb than 1 file at 200kb.</p> <p><strong>Update:</strong> Besides, isn't this a moot point? It only has to be downloaded once. If the pause is that big a deal, have a 'loading' screen like what GMail has.</p> http://stackoverflow.com/questions/1487058/inline-data-representation 1 Inline data representation graham.reeds 2009-09-28T13:32:37Z 2009-09-29T10:12:50Z <p>I would like to represent data that gives an overview but allows them to drill down in an inline fashion - so if you had a grouping of say 6 objects the user could expand the data and it would show the 6 objects immeadiately below it before any more high level data.</p> <p>It would appear that MSHFlexgrid gives this ability but I can't find any information about actually using it, or what it's limitations are (can you have differing number of fields and/or can they have different spacing, what about column headers, indentation at for the start, etc).</p> <p>I found <a href="http://visualbasic-programming.blogspot.com/2007/11/hierarchical-flexgrid-control.html" rel="nofollow">this site</a>, but the images are broken (in ie8 and ff3.5). Google searches show people just using the flat data representation but nothing using the hierarchical properties). <strong>Does anyone know any good tutorials or forums with a good discussion about pitfalls?</strong> </p> <p>Due to lack of information about using it, I am thinking of coding my own version but if anyone has done work in this area I haven't found it - I would of thought it would be a natural wish for data representation. <strong>If someone has coded a version of this (any language) then I wouldn't mind reading about it</strong> - maybe my idea of how to do it wouldn't be the best way.</p> http://stackoverflow.com/questions/1476299/what-is-the-fastest-way-to-do-image-rotation-in-php-without-using-gds-imagerotat/1476341#1476341 3 Answer by graham.reeds for What is the fastest way to do image rotation in PHP without using GD's imagerotate? graham.reeds 2009-09-25T09:27:24Z 2009-09-25T09:27:24Z <p><a href="http://www.leptonica.com/rotation.html" rel="nofollow">This page</a> seems to list a series of methods, but you will have to do the coding yourself. <a href="http://www.leptonica.com/rotation.html" rel="nofollow">http://www.leptonica.com/rotation.html</a></p> http://stackoverflow.com/questions/1447701/c-template-abuse-question-augmenting-floats-with-additional-type-information/1448685#1448685 0 Answer by graham.reeds for C++ Template abuse question - Augmenting floats with additional type information graham.reeds 2009-09-19T14:45:18Z 2009-09-19T14:45:18Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201633620" rel="nofollow">Lakos</a> touches on this (amongst other things).</p> <p>In his opinion (and I happen to agree with him) you shouldn't have degrees and radians tied to each other. If you need to convert from one to another then have a third class/struct to perform the switch.</p> <p>So you would have 3 classes, <code>Radians</code>, <code>Degrees</code> and <code>RadiansToDegrees</code>, of which you could use <code>RadiansToDegrees</code> as a simple functor.</p> http://stackoverflow.com/questions/3150/how-to-set-up-unit-testing-for-visual-studio-c/3162#3162 0 Answer by graham.reeds for How to set up unit testing for Visual Studio C++ graham.reeds 2008-08-06T08:28:14Z 2009-09-10T08:15:40Z <p>I use <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>.</p> <p>While the <a href="http://unittest-cpp.sourceforge.net/money%5Ftutorial/" rel="nofollow">example tutorial</a> is for Visual Studio 2005, the concepts are similar (try setting one up for VC6...).</p> <p><strong>Update</strong>: The VC6 hacks are now included in the source!</p> http://stackoverflow.com/questions/13699/choosing-a-c-unit-testing-tool-framework/14226#14226 8 Answer by graham.reeds for choosing a c++ unit testing tool/framework graham.reeds 2008-08-18T05:45:54Z 2009-09-10T05:57:50Z <p>I use <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>. For starters it will work with any C++ you care to mention including (with a bit of hacking) VC6. It comes with solutions for VS2002-2005 and make files for posix environs.</p> <p>It also works well with <a href="http://code.google.com/p/amop/" rel="nofollow">AMOP</a> - a mock object framework.</p> <p><strong>Update:</strong> And now it shouldn't need any hacking to work with VC6 - the hacks are included with the source!</p> http://stackoverflow.com/questions/1795203/how-to-use-cpp-unit Comment by graham.reeds on how to use cpp unit graham.reeds 2009-12-09T10:58:21Z 2009-12-09T10:58:21Z It's probably most advocated because of it's name and probably because people have heard of it but haven't used it. http://stackoverflow.com/questions/145443/multiple-repositories-single-setup Comment by graham.reeds on Multiple repositories, single setup graham.reeds 2009-12-09T10:55:53Z 2009-12-09T10:55:53Z In 2008 when I posted this, SO was the only game in town and it is more of a developer question than a SysAdmin question. http://stackoverflow.com/questions/1867284/returned-ajax-array-not-being-copied-to-array/1867312#1867312 Comment by graham.reeds on Returned AJAX array not being copied to array graham.reeds 2009-12-08T15:06:53Z 2009-12-08T15:06:53Z But what if I want to use that array elsewhere in my code? How can I guarentee that the data has loaded? A low-tech way would be to check that 'planetArray.length &gt; 0' but even that might have problems. http://stackoverflow.com/questions/1867284/returned-ajax-array-not-being-copied-to-array/1867306#1867306 Comment by graham.reeds on Returned AJAX array not being copied to array graham.reeds 2009-12-08T15:03:46Z 2009-12-08T15:03:46Z That was left out for brevity. Actually I used <code>var planetArray = new Array();</code> but it is all the same. http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1798142#1798142 Comment by graham.reeds on What do you do to write better code? graham.reeds 2009-11-27T13:08:47Z 2009-11-27T13:08:47Z @envalid: 'My coworkers wouldn't do reviews if their lives depended upon it (and I have tried numerous times).' So if they didn't do the code reviews you asked for, you killed them? All of them? Where do you store the bodies? http://stackoverflow.com/questions/5629/any-reason-not-to-start-using-the-html-5-doctype/5697#5697 Comment by graham.reeds on Any reason not to start using the HTML 5 doctype? graham.reeds 2009-11-26T09:13:16Z 2009-11-26T09:13:16Z Canvas: Want to use it? You can't. Or you can, but you are now in the land of targeted programming. Which is not the point of standards. http://stackoverflow.com/questions/1795203/how-to-use-cpp-unit/1795548#1795548 Comment by graham.reeds on how to use cpp unit graham.reeds 2009-11-25T10:39:30Z 2009-11-25T10:39:30Z Another good book that I own too. http://stackoverflow.com/questions/1795203/how-to-use-cpp-unit/1795534#1795534 Comment by graham.reeds on how to use cpp unit graham.reeds 2009-11-25T10:38:46Z 2009-11-25T10:38:46Z I have to say the section on levelisation is probably the most boring section (and largest) of the book, which I have to admit is very good. It probably has something to do with it being his dissertation for his doctorate. http://stackoverflow.com/questions/5629/any-reason-not-to-start-using-the-html-5-doctype/5697#5697 Comment by graham.reeds on Any reason not to start using the HTML 5 doctype? graham.reeds 2009-11-23T09:10:57Z 2009-11-23T09:10:57Z @Laurent: So if I want a header to be now a sidebar, I have to go through all my css and markup switching them around because it's no longer semantically correct? No. Make it a div, call it what it does and use it how you will. @Laith:In what respect will it be good for search engines? http://stackoverflow.com/questions/1754397/are-you-using-c0x-today/1755060#1755060 Comment by graham.reeds on Are you using C++0x today? graham.reeds 2009-11-18T14:23:24Z 2009-11-18T14:23:24Z I changed company from a VC6 shop: I now use VB6 so it's not always a step in the right direction. http://stackoverflow.com/questions/1747750/select-column-if-blank-select-from-another/1749040#1749040 Comment by graham.reeds on Select column, if blank select from another graham.reeds 2009-11-17T14:52:57Z 2009-11-17T14:52:57Z Moving the answer to yours as it is more elegant than the Case statement. http://stackoverflow.com/questions/1747750/select-column-if-blank-select-from-another/1749040#1749040 Comment by graham.reeds on Select column, if blank select from another graham.reeds 2009-11-17T14:51:33Z 2009-11-17T14:51:33Z Answer - yes you can: <code>COALESCE(NULLIF(Address2,''), NULLIF(Address3,''), Address4)</code> http://stackoverflow.com/questions/1747750/select-column-if-blank-select-from-another/1749040#1749040 Comment by graham.reeds on Select column, if blank select from another graham.reeds 2009-11-17T14:49:39Z 2009-11-17T14:49:39Z Interesting...can it be easily extended to work with 3 columns? http://stackoverflow.com/questions/1747750/select-column-if-blank-select-from-another/1748556#1748556 Comment by graham.reeds on Select column, if blank select from another graham.reeds 2009-11-17T13:11:55Z 2009-11-17T13:11:55Z I assume you could make it support <i>N</i> number of expressions since COALESCE does anyway via case statement like Raj More. http://stackoverflow.com/questions/1747750/select-column-if-blank-select-from-another/1747768#1747768 Comment by graham.reeds on Select column, if blank select from another graham.reeds 2009-11-17T10:20:25Z 2009-11-17T10:20:25Z I can't seem to get it working: <code>SELECT IF(Address2!='', Address2, Address3) AS Address FROM Sites</code> gives Incorrect syntax near the keyword 'IF'.