User edosoft - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T14:49:16Z http://stackoverflow.com/feeds/user/6399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1924706/my-visual-studio-2005-solution-sometimes-does-not-open-the-entire-projects/1924721#1924721 1 Answer by edosoft for My visual studio 2005 solution sometimes does not open the entire projects edosoft 2009-12-17T21:30:03Z 2009-12-17T21:30:03Z <p>Have you tried creating a new solution and adding all the relevant projects to see if perhaps your current .sln is corrupt?</p> http://stackoverflow.com/questions/1867483/which-orm-supports-multiple-row-updates-and-deletes/1867588#1867588 0 Answer by edosoft for Which ORM Supports Multiple row Updates and Deletes edosoft 2009-12-08T15:09:53Z 2009-12-08T15:24:22Z <p>I am using LLBLgen, which can do cascading deletes. You might want to try it, it's very good. Example. Delete all users in username[] from all roles in rolenames[]</p> <pre><code>string[] usernames; string[] rolenames; UserRoleCollection userRoles = new UserRoleCollection (); PredicateExpression filter = new PredicateExpression(); filter.Add(new FieldCompareRangePredicate(UserFields.logincode, usernames)); filter.AddWithAnd(new FieldCompareRangePredicate(RoleFields.Name, rolenames)); userRoles.DeleteMulti(filter) </code></pre> http://stackoverflow.com/questions/1851883/how-to-find-list-of-all-tables-in-access-database-matching-certaing-format-in-del/1851970#1851970 1 Answer by edosoft for How to find list of all tables in Access Database matching certaing format in Delphi edosoft 2009-12-05T11:36:12Z 2009-12-05T11:36:12Z <p>Here's a vbscript/asp type solution. You can adapt this to Delphi</p> <pre><code>Const adSchemaTables = 20 Set objConnection = CreateObject("ADODB.Connection") Set objRecordSet = CreateObject("ADODB.Recordset") objConnection.Open _ "Provider = Microsoft.Jet.OLEDB.4.0; " &amp; _ "Data Source = 'C:\Scripts\Test.mdb'" Set objRecordSet = objConnection.OpenSchema(adSchemaTables) Do Until objRecordset.EOF Wscript.Echo "Table name: " &amp; objRecordset.Fields.Item("TABLE_NAME") Wscript.Echo "Table type: " &amp; objRecordset.Fields.Item("TABLE_TYPE") Wscript.Echo objRecordset.MoveNext Loop </code></pre> http://stackoverflow.com/questions/1851756/how-to-hide-querystring-in-asp-net-content-page/1851958#1851958 0 Answer by edosoft for how to hide querystring in asp.net content page? edosoft 2009-12-05T11:32:16Z 2009-12-05T11:32:16Z <p>There are many ways to carry values from one page to the next. You could store the values in some Session type container, or add them as hidden fields.</p> <p>If you want a ugly way, you could use a good old frameset.</p> http://stackoverflow.com/questions/487675/how-can-i-schedule-a-daily-backup-with-sql-server-express 4 How can I schedule a daily backup with SQl Server Express? edosoft 2009-01-28T13:51:01Z 2009-12-04T17:53:17Z <p>Aloha,</p> <p>I'm running a small web application with SQL server express (2005) as backend. I can create a backup with a SQL script, however, I'd like to schedule this on a daily basis. As extra option (should-have) I'd like to keep only the last X backups (for space-saving reasons obviously) Any pointers?</p> <p>[edit] SQL server agent is unavailable in SQL server express...</p> <p>-Edoode</p> http://stackoverflow.com/questions/1841146/log-session-and-session-changes-of-a-asp-net-web-user/1841438#1841438 1 Answer by edosoft for Log session and session changes of a asp.net web user edosoft 2009-12-03T17:14:54Z 2009-12-03T17:14:54Z <p>The way I've set this up sometime is to create two tables. One holds a row per session, with some session data (id, timestamp, ip, username (if any), other stuff) and a session_data table with a few rows per session, each row containing a sessionid (referencing the sessions table). a key (describing what is logged, like 'entryform', 'searchform', or 'orderform') and a XML field containing the serialized session state object.</p> <p>Insert a row in the session table using global.asa's session_onstart. Insert rows in session_data as needed.</p> <p>I used simple stored procedures, but I gather you can setup log4net to insert the row. One caveat: I did setup nlog one time to log the sessions and session data, but nlog (and I suppose log4net as well) logs on its on thread and does't always write to the database. I switched away from nlog for storing the critical session data (but used it for all other debug/logging/tracing purposes)</p> http://stackoverflow.com/questions/1825220/char-column-converted-to-varchar-still-inserting-padding/1832891#1832891 0 Answer by edosoft for char column converted to varchar still inserting padding edosoft 2009-12-02T13:25:15Z 2009-12-02T13:25:15Z <p>Wild guess: if you are using some form of ORM the ORM code might still have the column as char(200) and insert it as char. Or, if you are using a stored procedure, did you change the datatype there?</p> http://stackoverflow.com/questions/1832770/asp-net-timer-to-load-page-content/1832858#1832858 0 Answer by edosoft for asp.net timer to load page content edosoft 2009-12-02T13:19:46Z 2009-12-02T13:19:46Z <p>Some code to get you started: </p> <p>In the asp.net page:</p> <pre><code>&lt;asp:Timer ID="Timer1" OnTick="Timer1_Tick" runat="server" Interval="1"&gt; &lt;/asp:Timer&gt; &lt;asp:UpdatePanel ID="updatePanel1" runat="server" UpdateMode="Conditional"&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" /&gt; &lt;/Triggers&gt; &lt;ContentTemplate&gt; .... your stuff here &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="100"&gt; &lt;ProgressTemplate&gt; Please wait... &lt;/ProgressTemplate&gt; &lt;/asp:UpdateProgress&gt; </code></pre> <p>In the code behind:</p> <pre><code>protected void Timer1_Tick(object sender, EventArgs e) { this.Timer1.Enabled = false; StartLongRunningTask(); } </code></pre> http://stackoverflow.com/questions/1819199/excel-comment-invisible-under-cell/1819246#1819246 0 Answer by edosoft for Excel comment invisible under cell edosoft 2009-11-30T11:22:27Z 2009-11-30T11:22:27Z <p>Right-click the cell with the comment and choose 'Show/Hide comment' might do the trick</p> http://stackoverflow.com/questions/1819171/form-action-attribute-not-working-have-to-click-submit-button-twice/1819239#1819239 0 Answer by edosoft for Form action attribute not working - have to click submit button twice! edosoft 2009-11-30T11:21:00Z 2009-11-30T11:21:00Z <p>If you need to retain the POST data between pages you might want to use Server.Tranfer. See here for a most excellent explanation: <a href="http://stackoverflow.com/questions/1482470/using-asp-net-how-do-i-redirect-a-user-and-change-the-post-data-at-the-same-time">http://stackoverflow.com/questions/1482470/using-asp-net-how-do-i-redirect-a-user-and-change-the-post-data-at-the-same-time</a></p> http://stackoverflow.com/questions/1808459/genericerrorpage-htm-missing/1808816#1808816 1 Answer by edosoft for GenericErrorPage.htm missing edosoft 2009-11-27T13:35:53Z 2009-11-27T13:35:53Z <p>The files 'GenericErrorPage.htm', 'NoAccess.htm' and 'FileNotFound.htm' are default filenames, created by Visual Studio when creating a web application. You can use any HTML file or aspx page and use that name in the web.config. These names are just dummy values.</p> http://stackoverflow.com/questions/1807811/server-error-in-domain-website-application/1807861#1807861 0 Answer by edosoft for Server Error in '/domain/website' Application. edosoft 2009-11-27T10:12:44Z 2009-11-27T10:12:44Z <p>This is possibly because there is a syntax error in web.config. You could try replacing your current web.config with one that only contains this and see what happens:</p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;customErrors mode="Off"/&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/1807524/copy-trigger-from-one-database-to-another/1807634#1807634 0 Answer by edosoft for Copy trigger from one database to another edosoft 2009-11-27T09:22:29Z 2009-11-27T09:22:29Z <p>You could read the text of the trigger with <code>sp_helptext (triggername)</code></p> <p>Or you can select the text into a variable and execute that:</p> <pre><code>declare @sql varchar(8000) select @sql = object_definition(object_id) from sys.triggers where name = 'testtrigger' EXEC @sql </code></pre> http://stackoverflow.com/questions/1807479/select-only-first-four-lines-from-sql-text-field/1807511#1807511 1 Answer by edosoft for Select only first four lines, from Sql text field edosoft 2009-11-27T08:51:24Z 2009-11-27T09:10:53Z <p>This will return this first 1000 characters from the review.</p> <pre><code>SELECT Name, Category, CAST(Review AS VARCHAR(1000) FROM ReviewTable </code></pre> <p>If you must have the first 4 lines you need to use some split function. This could work:</p> <pre><code>CREATE FUNCTION [dbo].[Split] ( @SearchString VARCHAR(8000), @Separator VARCHAR(5), @MaxItems INT ) RETURNS @strtable TABLE (strval VARCHAR(8000)) AS BEGIN DECLARE @tmpStr VARCHAR(8000), @intSeparatorLength INT, @counter int IF @MaxItems IS NULL SET @MaxItems = 2147483647 -- max int SET @intSeparatorLength = LEN(@Separator) SET @Counter = 0 SET @tmpStr = @SearchString WHILE 1=1 BEGIN INSERT INTO @strtable VALUES ( SUBSTRING(@tmpStr, 0 ,CHARINDEX(@Separator, @tmpStr))) SET @tmpStr = SUBSTRING(@tmpStr,CHARINDEX(@Separator,@tmpStr)+LEN(@Separator),8000) SET @counter = @counter + 1 IF (CHARINDEX(@Separator,@tmpStr) &lt; 1 OR @counter &gt;= @MaxItems) BREAK END RETURN END </code></pre> <p>Usage: <code>select * from dbo.split('aaa**bbbb**CCCC**dddd**eeee**dffff**ggggg', '**', 4)</code></p> http://stackoverflow.com/questions/1807454/making-text-box-hidden-in-asp-net/1807474#1807474 0 Answer by edosoft for Making text box hidden in ASP.NET edosoft 2009-11-27T08:42:46Z 2009-11-27T08:42:46Z <p>If it must be a textbox for whatever reason just hide it with javascript:</p> <pre><code>&lt;input type="text" name="blah" style="display:none" /&gt; </code></pre> http://stackoverflow.com/questions/374600/how-can-i-generate-multiple-classes-from-xsds-with-common-includes 2 How can I generate multiple classes from xsd's with common includes? edosoft 2008-12-17T13:57:09Z 2009-11-23T03:40:00Z <p>Aloha</p> <p>I received a few nice xsd files which I want to convert to classes (using xsd.exe) All the xsd's have the same includes, like this:</p> <pre><code>&lt;xs:include schemaLocation="kstypes.xsd" /&gt; &lt;xs:include schemaLocation="ksparams.xsd" /&gt; </code></pre> <p>When I generate a class for each xsd the types declared in these files are duplicated for each original xsd. Is there any easy way to 1) only generate the types in the included xsd's once and 2) make sure all other classes use these types?</p> <p>-Edoode</p> http://stackoverflow.com/questions/1728464/using-classes-in-a-dictionary-in-classic-asp 1 Using Classes in a Dictionary in Classic ASP edosoft 2009-11-13T10:43:12Z 2009-11-13T11:12:44Z <p>Hi</p> <p>I usually do C# but have inherited a classic ASP project.</p> <p>I have defined a class:</p> <pre><code> Class clsPayment Public Name End Class Set objPayment = New clsPayment objPayment.Name = "StackOverflow payment" </code></pre> <p>And a dictionary:</p> <pre><code>Set colPayments = CreateObject("Scripting.Dictionary") colPayments.Add 1, objPayment </code></pre> <p>When reading the objects later on I cannot call the public field:</p> <pre><code>For i = 0 to colPayments.Count - 1 objPayment = colPayments.Item(i) Response.Write(objPayment.Name) Next </code></pre> <p>This throws an error on the Response.Write line:</p> <blockquote> <p>Microsoft VBScript runtime error '800a01a8' </p> <p>Object required: ''</p> </blockquote> <p>What did I do wrong?</p> http://stackoverflow.com/questions/1578692/changing-the-page-layout-using-office-web-components 0 Changing the page layout using Office Web Components edosoft 2009-10-16T15:13:05Z 2009-10-22T08:39:46Z <p>I am using Office Web components to fill an Excel template with values. The template is in Excel xml format, containing all relevant fields and layout options including the page layout, landscape in this case. I'm filling this template with some real fields using the code below.</p> <pre><code>Set objSpreadsheet = Server.CreateObject("OWC11.Spreadsheet") objSpreadsheet.XMLURL = Server.MapPath("xml") &amp; "\MR1_Template.xls" 'Fill cells with values here Response.ContentType = "application/vnd.ms-excel" Response.AddHeader "Content-Disposition", "inline; filename=" &amp; strFileNaam Response.write objSpreadsheet.xmlData </code></pre> <p>After the new Excel file has been saved, the page layout options are gone. I've looked at the API documentation for the OWC but cannot find the option to specify the landscape page-layout</p> http://stackoverflow.com/questions/1578692/changing-the-page-layout-using-office-web-components/1605813#1605813 0 Answer by edosoft for Changing the page layout using Office Web Components edosoft 2009-10-22T08:39:46Z 2009-10-22T08:39:46Z <p>After some detailed comparison of the template excel sheet (as xml) and the resulting xmlData I've decided to hack the page layout in the resulting Xml. These are the options I've added:</p> <pre><code>&lt;x:WorksheetOptions&gt; &lt;x:PageSetup&gt;&lt;x:Layout x:Orientation="Landscape"/&gt;&lt;/x:PageSetup&gt; &lt;x:FitToPage/&gt; &lt;x:Print&gt; &lt;x:FitWidth&gt;2&lt;/x:FitWidth&gt; &lt;x:ValidPrinterInfo/&gt; &lt;x:PaperSizeIndex&gt;9&lt;/x:PaperSizeIndex&gt; &lt;x:Scale&gt;87&lt;/x:Scale&gt; &lt;/x:Print&gt; &lt;/x:WorksheetOptions&gt; </code></pre> http://stackoverflow.com/questions/1602420/inexpensive-tools-for-sql-server-erds-and-forward-engineering/1602509#1602509 0 Answer by edosoft for Inexpensive tools for SQL Server ERDs and forward-engineering? edosoft 2009-10-21T18:02:13Z 2009-10-21T18:02:13Z <p>I have use <a href="http://live.gnome.org/Dia" rel="nofollow">Dia</a> with SQL helper scripts for this kind of thing. Dia is free. A SQL generator is Dia2SQL. See <a href="http://projects.gnome.org/dia/links.html" rel="nofollow">here</a> for some links. And here is a <a href="http://dia-installer.de/index%5Fen.html" rel="nofollow">Windows installer for Dia</a></p> http://stackoverflow.com/questions/528186/what-is-the-best-ajax-control-to-display-floating-windows 0 What is the best ajax control to display floating windows? edosoft 2009-02-09T13:45:02Z 2009-10-21T15:23:02Z <p>Aloha,</p> <p>I'm looking for a floating div type of control, to display another (user)control over an aspx page, using ASP.NET and Ajax. As far as I can see the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/" rel="nofollow">Ajax Control Toolkit</a> doesn't have a nice overlay control. Can anyone point me at a solution?</p> http://stackoverflow.com/questions/1588444/use-sql-to-count-cases-in-a-certain-state-at-a-certain-time 0 Use SQL to count cases in a certain state at a certain time edosoft 2009-10-19T12:35:59Z 2009-10-19T17:28:26Z <p>Hi</p> <p>I need to develop a query that will count the total number of 'open' cases per month. I have a 'cases' table with an id and a name, and a 'state_changes' table with a datetime column, a caseid column and a state.</p> <p>How can I calculate the number of cases in each month that have a record with state 'open' in the past, but without a corresponding record with state closed?</p> <p>I'm using SQL server 2000.</p> http://stackoverflow.com/questions/1589866/how-do-i-add-the-style-property-to-an-asp-net-custom-date-control/1589915#1589915 1 Answer by edosoft for How do I add the style property to an ASP.Net custom date control? edosoft 2009-10-19T17:06:24Z 2009-10-19T17:06:24Z <p>This should work (untested)</p> <pre><code>private string textboxStyle; public string TextboxStyle { get { return textboxStyle; } set { textboxStyle = value;} } </code></pre> <p>In the control:</p> <pre><code> &lt;asp:TextBox runat="server" ID="txtCalender" CssClass="netcontrolstyle" Style="&lt;%# TextboxStyle %&gt;" /&gt; </code></pre> <p>In the declaration</p> <pre><code>&lt;uc1:datecontrol runat="server" ID="StartDate" TextboxStyle ="width: 75px;"/&gt; </code></pre> http://stackoverflow.com/questions/881992/why-does-f10-continue-in-visual-studio-not-work 2 Why does F10 (continue) in Visual Studio not work? edosoft 2009-05-19T10:35:13Z 2009-10-18T04:32:01Z <p>I'm debugging a (web) project in Visual Studio 2008. I'm hitting a breakpoint. F10 continues to the next line, as expected, but the next F10 just stops debugging and the code continues without any more debugging (like pressing F5). Why is this happening?</p> <ul> <li>I have tried 'clean solution'.</li> <li>Other breakpoints sometimes(!) skipped, even in the same method</li> </ul> <p>Any clues?</p> http://stackoverflow.com/questions/352654/could-not-find-default-endpoint-element 0 Could not find default endpoint element edosoft 2008-12-09T13:06:41Z 2009-10-15T18:57:48Z <p>I've added a proxy to a webservice to a VS2008/.NET 3.5 solution. When constructing the client .NET throws this error:</p> <blockquote> <p>Could not find default endpoint element that references contract 'IMySOAPWebService' in the service model client configuaration section. This might be because no configuaration file was found for your application or because no end point element matching this contract could be found in the client element</p> </blockquote> <p>Searching for this error tells me to use the full namespace in the contract. Here's my app.config with full namespace:</p> <pre><code>&lt;client&gt; &lt;endpoint address="http://192.168.100.87:7001/soap/IMySOAPWebService" binding="basicHttpBinding" bindingConfiguration="IMySOAPWebServicebinding" contract="Fusion.DataExchange.Workflows.IMySOAPWebService" name="IMySOAPWebServicePort" /&gt; &lt;/client&gt; </code></pre> <p>I'm running XP local (I mention this because a number of Google hits mention win2k3) The app.config is copied to app.exe.config, so that is also not the problem.</p> <p>Any clues?</p> http://stackoverflow.com/questions/1508668/why-is-there-no-string-isnumeric-function-in-c/1508699#1508699 0 Answer by edosoft for Why is there no String.IsNumeric Function in C# edosoft 2009-10-02T10:05:27Z 2009-10-02T10:05:27Z <p>I believe this was discussed (among other things) with Anders Anders Heljsberg during a whiteboard session at TechEd (USA). Apparently, a video of that session will be up on MSDNTV at some point.</p> http://stackoverflow.com/questions/1293330/sql-update-with-join/1293339#1293339 4 Answer by edosoft for SQL UPDATE with JOIN edosoft 2009-08-18T11:42:17Z 2009-10-01T02:12:23Z <p>This should work in MSSQL:</p> <pre><code>update ud set assid = sale.assid from sale where sale.udid = id </code></pre> http://stackoverflow.com/questions/1497224/using-identity-fields-in-a-switch-statement 1 Using identity fields in a switch statement edosoft 2009-09-30T10:19:55Z 2009-09-30T13:29:20Z <p>Hi</p> <p>I have a SQL lookup table like this:</p> <pre><code>CREATE TABLE Product(Id INT IDENTITY PRIMARY KEY, Name VARCHAR(255)) </code></pre> <p>I've databound a ASP.NET DropDownList to a LLBLGen entity. User selects a product, and the Id get saved. Now I need to display some product specific details later on. Should I use the Product's ID, and hope the ID is always the same between installations ?</p> <pre><code>switch (selectedProduct.Id) { case 1: //product one break; case 2: case 3: //product two or three break; } </code></pre> <p>or use the name, and hope that never changes?</p> <pre><code>switch (selectedProduct.Name) { case "product one": break; } </code></pre> <p>Or is there a better alternative?</p> http://stackoverflow.com/questions/1486091/how-to-generate-edifact-messages-ifimin-from-net-c/1486311#1486311 1 Answer by edosoft for How to generate EDIFACT messages (IFIMIN) from .net (C#)? edosoft 2009-09-28T10:14:35Z 2009-09-28T10:14:35Z <p>I have not been able to find a framework for edifact that we could use. In the end we used <a href="http://filehelpers.sourceforge.net/" rel="nofollow">FileHelpers Libabry</a> to read the files and coded the rest by hand. FileHelpers lib does support record based files, much like edifact.</p> http://stackoverflow.com/questions/1486256/creating-excel-or-excel-compatible-spreadsheets-on-the-server-side-in-c/1486286#1486286 1 Answer by edosoft for Creating Excel or Excel compatible Spreadsheets on the server side in C# edosoft 2009-09-28T10:07:18Z 2009-09-28T10:07:18Z <p>I've used <a href="http://www.smartxls.com/" rel="nofollow">SmartXLS</a> to create (and process) Excel sheets on the server.</p> http://stackoverflow.com/questions/1923048/allow-anonymous-access-to-a-special-file-in-asp-net Comment by edosoft on Allow anonymous access to a special file in Asp.Net edosoft 2009-12-17T17:08:41Z 2009-12-17T17:08:41Z Can you access a standard .css file in ~/stylesheets (when not logged in) ? ie is your authorization node correct? http://stackoverflow.com/questions/1825220/char-column-converted-to-varchar-still-inserting-padding/1832891#1832891 Comment by edosoft on char column converted to varchar still inserting padding edosoft 2009-12-15T07:50:22Z 2009-12-15T07:50:22Z Glad to be of help http://stackoverflow.com/questions/1798817/why-is-the-center-tag-deprecated-in-html/1798853#1798853 Comment by edosoft on Why is the <center> tag deprecated in HTML? edosoft 2009-12-04T15:14:05Z 2009-12-04T15:14:05Z The &lt;center&gt; cannot hold... http://stackoverflow.com/questions/136485/copypaste-from-office-2007-into-textarea/136671#136671 Comment by edosoft on Copy&paste from Office 2007 into <textarea> edosoft 2009-12-02T12:18:58Z 2009-12-02T12:18:58Z Which third party tool(s) are you referring to? http://stackoverflow.com/questions/1819530/mysql-select-in-two-tables/1819687#1819687 Comment by edosoft on mysql select in two tables edosoft 2009-11-30T13:08:58Z 2009-11-30T13:08:58Z +1 for looking at the design rather than the query http://stackoverflow.com/questions/1807811/server-error-in-domain-website-application/1807861#1807861 Comment by edosoft on Server Error in '/domain/website' Application. edosoft 2009-11-27T12:00:05Z 2009-11-27T12:00:05Z Like I said it's possible the error is in the web.config. My suggestion eliminates any problems with the web.config http://stackoverflow.com/questions/1807524/copy-trigger-from-one-database-to-another/1807634#1807634 Comment by edosoft on Copy trigger from one database to another edosoft 2009-11-27T11:58:15Z 2009-11-27T11:58:15Z you are welcome :) http://stackoverflow.com/questions/1807479/select-only-first-four-lines-from-sql-text-field/1807514#1807514 Comment by edosoft on Select only first four lines, from Sql text field edosoft 2009-11-27T09:11:41Z 2009-11-27T09:11:41Z Nitpick: substring doesn't work on the Text datatype, cast to varchar(8000) or varchar(max) http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/179#179 Comment by edosoft on How do I programmatically create a PDF in my .NET application? edosoft 2009-11-27T08:49:14Z 2009-11-27T08:49:14Z I use PDFsharp and more recently the 'higher level' migradoc in alot of projects http://stackoverflow.com/questions/1728464/using-classes-in-a-dictionary-in-classic-asp/1728552#1728552 Comment by edosoft on Using Classes in a Dictionary in Classic ASP edosoft 2009-11-13T12:02:45Z 2009-11-13T12:02:45Z Also good call on 'Avoid parentheses when using a procedure statement' http://stackoverflow.com/questions/1728464/using-classes-in-a-dictionary-in-classic-asp/1728552#1728552 Comment by edosoft on Using Classes in a Dictionary in Classic ASP edosoft 2009-11-13T12:02:11Z 2009-11-13T12:02:11Z Thanks. I assume the first line must read 'For Each key in colPayments.Keys' ? And I'm not using the ordinal, it's just that the Dictionary requires a key. http://stackoverflow.com/questions/1588444/use-sql-to-count-cases-in-a-certain-state-at-a-certain-time/1588481#1588481 Comment by edosoft on Use SQL to count cases in a certain state at a certain time edosoft 2009-10-19T16:57:52Z 2009-10-19T16:57:52Z Thanks, I'll go with this. Problem now is I need to know the count in a each month, which is not the same as the month of the casedate. I'll try and update when I have something http://stackoverflow.com/questions/1588444/use-sql-to-count-cases-in-a-certain-state-at-a-certain-time/1588518#1588518 Comment by edosoft on Use SQL to count cases in a certain state at a certain time edosoft 2009-10-19T16:56:02Z 2009-10-19T16:56:02Z Nice allthough now I have to figure out how to group by month http://stackoverflow.com/questions/1578692/changing-the-page-layout-using-office-web-components/1588072#1588072 Comment by edosoft on Changing the page layout using Office Web Components edosoft 2009-10-19T12:24:03Z 2009-10-19T12:24:03Z It's not abous xls transformations but about creating Excel documents using a COM component. http://stackoverflow.com/questions/1578692/changing-the-page-layout-using-office-web-components Comment by edosoft on Changing the page layout using Office Web Components edosoft 2009-10-19T12:22:39Z 2009-10-19T12:22:39Z I didn't fix the title because I didn't notice it was broken :) Thanks for fixing it.