User edosoft - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T14:49:16Zhttp://stackoverflow.com/feeds/user/6399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1924706/my-visual-studio-2005-solution-sometimes-does-not-open-the-entire-projects/1924721#19247211Answer by edosoft for My visual studio 2005 solution sometimes does not open the entire projectsedosoft2009-12-17T21:30:03Z2009-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#18675880Answer by edosoft for Which ORM Supports Multiple row Updates and Deletesedosoft2009-12-08T15:09:53Z2009-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#18519701Answer by edosoft for How to find list of all tables in Access Database matching certaing format in Delphiedosoft2009-12-05T11:36:12Z2009-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; " & _
"Data Source = 'C:\Scripts\Test.mdb'"
Set objRecordSet = objConnection.OpenSchema(adSchemaTables)
Do Until objRecordset.EOF
Wscript.Echo "Table name: " & objRecordset.Fields.Item("TABLE_NAME")
Wscript.Echo "Table type: " & 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#18519580Answer by edosoft for how to hide querystring in asp.net content page?edosoft2009-12-05T11:32:16Z2009-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-express4How can I schedule a daily backup with SQl Server Express?edosoft2009-01-28T13:51:01Z2009-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#18414381Answer by edosoft for Log session and session changes of a asp.net web useredosoft2009-12-03T17:14:54Z2009-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#18328910Answer by edosoft for char column converted to varchar still inserting paddingedosoft2009-12-02T13:25:15Z2009-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#18328580Answer by edosoft for asp.net timer to load page contentedosoft2009-12-02T13:19:46Z2009-12-02T13:19:46Z<p>Some code to get you started: </p>
<p>In the asp.net page:</p>
<pre><code><asp:Timer ID="Timer1" OnTick="Timer1_Tick" runat="server" Interval="1">
</asp:Timer>
<asp:UpdatePanel ID="updatePanel1" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
</Triggers>
<ContentTemplate>
.... your stuff here
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="100">
<ProgressTemplate>
Please wait...
</ProgressTemplate>
</asp:UpdateProgress>
</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#18192460Answer by edosoft for Excel comment invisible under cell edosoft2009-11-30T11:22:27Z2009-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#18192390Answer by edosoft for Form action attribute not working - have to click submit button twice!edosoft2009-11-30T11:21:00Z2009-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#18088161Answer by edosoft for GenericErrorPage.htm missingedosoft2009-11-27T13:35:53Z2009-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#18078610Answer by edosoft for Server Error in '/domain/website' Application.edosoft2009-11-27T10:12:44Z2009-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><configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
</code></pre>
http://stackoverflow.com/questions/1807524/copy-trigger-from-one-database-to-another/1807634#18076340Answer by edosoft for Copy trigger from one database to anotheredosoft2009-11-27T09:22:29Z2009-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#18075111Answer by edosoft for Select only first four lines, from Sql text fieldedosoft2009-11-27T08:51:24Z2009-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) < 1 OR @counter >= @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#18074740Answer by edosoft for Making text box hidden in ASP.NETedosoft2009-11-27T08:42:46Z2009-11-27T08:42:46Z<p>If it must be a textbox for whatever reason just hide it with javascript:</p>
<pre><code><input type="text" name="blah" style="display:none" />
</code></pre>
http://stackoverflow.com/questions/374600/how-can-i-generate-multiple-classes-from-xsds-with-common-includes2How can I generate multiple classes from xsd's with common includes?edosoft2008-12-17T13:57:09Z2009-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><xs:include schemaLocation="kstypes.xsd" />
<xs:include schemaLocation="ksparams.xsd" />
</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-asp1Using Classes in a Dictionary in Classic ASPedosoft2009-11-13T10:43:12Z2009-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-components0Changing the page layout using Office Web Componentsedosoft2009-10-16T15:13:05Z2009-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") & "\MR1_Template.xls"
'Fill cells with values here
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "inline; filename=" & 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#16058130Answer by edosoft for Changing the page layout using Office Web Componentsedosoft2009-10-22T08:39:46Z2009-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><x:WorksheetOptions>
<x:PageSetup><x:Layout x:Orientation="Landscape"/></x:PageSetup>
<x:FitToPage/>
<x:Print>
<x:FitWidth>2</x:FitWidth>
<x:ValidPrinterInfo/>
<x:PaperSizeIndex>9</x:PaperSizeIndex>
<x:Scale>87</x:Scale>
</x:Print>
</x:WorksheetOptions>
</code></pre>
http://stackoverflow.com/questions/1602420/inexpensive-tools-for-sql-server-erds-and-forward-engineering/1602509#16025090Answer by edosoft for Inexpensive tools for SQL Server ERDs and forward-engineering?edosoft2009-10-21T18:02:13Z2009-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-windows0What is the best ajax control to display floating windows?edosoft2009-02-09T13:45:02Z2009-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-time0Use SQL to count cases in a certain state at a certain timeedosoft2009-10-19T12:35:59Z2009-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#15899151Answer by edosoft for How do I add the style property to an ASP.Net custom date control?edosoft2009-10-19T17:06:24Z2009-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> <asp:TextBox runat="server" ID="txtCalender" CssClass="netcontrolstyle" Style="<%# TextboxStyle %>" />
</code></pre>
<p>In the declaration</p>
<pre><code><uc1:datecontrol runat="server" ID="StartDate" TextboxStyle ="width: 75px;"/>
</code></pre>
http://stackoverflow.com/questions/881992/why-does-f10-continue-in-visual-studio-not-work2Why does F10 (continue) in Visual Studio not work?edosoft2009-05-19T10:35:13Z2009-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-element0Could not find default endpoint element edosoft2008-12-09T13:06:41Z2009-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><client>
<endpoint address="http://192.168.100.87:7001/soap/IMySOAPWebService"
binding="basicHttpBinding" bindingConfiguration="IMySOAPWebServicebinding"
contract="Fusion.DataExchange.Workflows.IMySOAPWebService" name="IMySOAPWebServicePort" />
</client>
</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#15086990Answer by edosoft for Why is there no String.IsNumeric Function in C#edosoft2009-10-02T10:05:27Z2009-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#12933394Answer by edosoft for SQL UPDATE with JOINedosoft2009-08-18T11:42:17Z2009-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-statement1Using identity fields in a switch statementedosoft2009-09-30T10:19:55Z2009-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#14863111Answer by edosoft for How to generate EDIFACT messages (IFIMIN) from .net (C#)?edosoft2009-09-28T10:14:35Z2009-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#14862861Answer by edosoft for Creating Excel or Excel compatible Spreadsheets on the server side in C#edosoft2009-09-28T10:07:18Z2009-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-netComment by edosoft on Allow anonymous access to a special file in Asp.Netedosoft2009-12-17T17:08:41Z2009-12-17T17:08:41ZCan 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#1832891Comment by edosoft on char column converted to varchar still inserting paddingedosoft2009-12-15T07:50:22Z2009-12-15T07:50:22ZGlad to be of helphttp://stackoverflow.com/questions/1798817/why-is-the-center-tag-deprecated-in-html/1798853#1798853Comment by edosoft on Why is the <center> tag deprecated in HTML?edosoft2009-12-04T15:14:05Z2009-12-04T15:14:05ZThe <center> cannot hold...http://stackoverflow.com/questions/136485/copypaste-from-office-2007-into-textarea/136671#136671Comment by edosoft on Copy&paste from Office 2007 into <textarea>edosoft2009-12-02T12:18:58Z2009-12-02T12:18:58ZWhich third party tool(s) are you referring to?http://stackoverflow.com/questions/1819530/mysql-select-in-two-tables/1819687#1819687Comment by edosoft on mysql select in two tablesedosoft2009-11-30T13:08:58Z2009-11-30T13:08:58Z+1 for looking at the design rather than the queryhttp://stackoverflow.com/questions/1807811/server-error-in-domain-website-application/1807861#1807861Comment by edosoft on Server Error in '/domain/website' Application.edosoft2009-11-27T12:00:05Z2009-11-27T12:00:05ZLike I said it's possible the error is in the web.config. My suggestion eliminates any problems with the web.confighttp://stackoverflow.com/questions/1807524/copy-trigger-from-one-database-to-another/1807634#1807634Comment by edosoft on Copy trigger from one database to anotheredosoft2009-11-27T11:58:15Z2009-11-27T11:58:15Zyou are welcome :)http://stackoverflow.com/questions/1807479/select-only-first-four-lines-from-sql-text-field/1807514#1807514Comment by edosoft on Select only first four lines, from Sql text fieldedosoft2009-11-27T09:11:41Z2009-11-27T09:11:41ZNitpick: 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#179Comment by edosoft on How do I programmatically create a PDF in my .NET application?edosoft2009-11-27T08:49:14Z2009-11-27T08:49:14ZI use PDFsharp and more recently the 'higher level' migradoc in alot of projectshttp://stackoverflow.com/questions/1728464/using-classes-in-a-dictionary-in-classic-asp/1728552#1728552Comment by edosoft on Using Classes in a Dictionary in Classic ASPedosoft2009-11-13T12:02:45Z2009-11-13T12:02:45ZAlso good call on 'Avoid parentheses when using a procedure statement'http://stackoverflow.com/questions/1728464/using-classes-in-a-dictionary-in-classic-asp/1728552#1728552Comment by edosoft on Using Classes in a Dictionary in Classic ASPedosoft2009-11-13T12:02:11Z2009-11-13T12:02:11ZThanks. 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#1588481Comment by edosoft on Use SQL to count cases in a certain state at a certain timeedosoft2009-10-19T16:57:52Z2009-10-19T16:57:52ZThanks, 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 somethinghttp://stackoverflow.com/questions/1588444/use-sql-to-count-cases-in-a-certain-state-at-a-certain-time/1588518#1588518Comment by edosoft on Use SQL to count cases in a certain state at a certain timeedosoft2009-10-19T16:56:02Z2009-10-19T16:56:02ZNice 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#1588072Comment by edosoft on Changing the page layout using Office Web Componentsedosoft2009-10-19T12:24:03Z2009-10-19T12:24:03ZIt'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-componentsComment by edosoft on Changing the page layout using Office Web Componentsedosoft2009-10-19T12:22:39Z2009-10-19T12:22:39ZI didn't fix the title because I didn't notice it was broken :) Thanks for fixing it.