User GordonB - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:41:47Z http://stackoverflow.com/feeds/user/66112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/925210/generating-mhtml-from-html 0 Generating MHTML from HTML GordonB 2009-05-29T09:45:04Z 2009-11-20T18:53:55Z <p>I'm looking for a way of generating mhtml from a page in my asp.net web app.</p> <p>I've seen this website and played with the code but i don't really want to use interop.cdo and interop.adodb. <a href="http://www.codeproject.com/KB/aspnet/aspnethtml2mht.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/aspnethtml2mht.aspx</a></p> <p>Other than generating all the mhtml myself i'm a bit stumped.... Anyone got any clever ideas?</p> http://stackoverflow.com/questions/1530306/xml-literal-with-linq-statement 0 XML Literal with Linq statement GordonB 2009-10-07T08:37:12Z 2009-10-07T13:07:52Z <p>I am going to be performing an XSLT transformation, transforming XML to an HTML table. It's tabular data, so that's why I'm not using div's. ;) </p> <p>Anyway, I need to repeat one part of the XSLT for the size of one of my collections. Here's a snippet of the code...</p> <pre><code>Dim styleSheet = &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:rh="ReportHub" exclude-result-prefixes="msxsl" &gt; &lt;xsl:output method="html" indent="yes" /&gt; &lt;xsl:template match="rh:Report/rh:Tablix1/rh:Details_Collection"&gt; &lt;xsl:variable name="alternating-row" select="position() mod 2" /&gt; &lt;table class=&lt;%= dataFormatter.formattingTableClass %&gt;&gt; &lt;xsl:choose&gt; &lt;xsl:when test="count(rh:Details)=0"&gt; &lt;tr&gt; &lt;td&gt;There are no items listed for this client&lt;/td&gt; &lt;/tr&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;xsl:for-each select="rh:Details"&gt; &lt;tr class=&lt;%= dataFormatter.formattingTRClass %&gt;&gt; &lt;xsl:variable name="mainrow-position" select="position()" /&gt; &lt;xsl:for-each select="@*"&gt; &lt;%= From x In dataFormatter.dataColumnSettings Select &lt;xsl:if test="name() != 'colName'"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$mainrow-position=1"&gt; &lt;th&gt; &lt;xsl:value-of select="name()"/&gt; &lt;/th&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;td&gt; &lt;xsl:value-of select="."/&gt; &lt;/td&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/xsl:if&gt; %&gt; &lt;/xsl:for-each&gt; &lt;/tr&gt; &lt;/xsl:for-each&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/table&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>The problem is that because the XML inside the LINQ query references the xsl namespace, I get:</p> <pre> Error 9 XML namespace prefix 'xsl' is not defined. </pre> <p>Anyone got any clever ideas?</p> <ul> <li>The inner workings of the XML inside the LINQ query isn't finished, so don't worry about what that looks like.</li> </ul> http://stackoverflow.com/questions/1504182/visual-studio-2008-and-2005-accessing-tfs-2008-source-control/1504315#1504315 3 Answer by GordonB for Visual Studio 2008 and 2005 accessing TFS 2008 source control? GordonB 2009-10-01T14:31:13Z 2009-10-01T14:31:13Z <p>Looks like you'll be fine if you install Team Explorer 2005 onto Visual Studio 2005.</p> <blockquote> <p>Out of the box, Team Explorer 2005 works very well with most of the TFS 2008 capabilities. Work Item Tracking and Version Control function the same as they always had for TFS 2005. End users wouldn't even notice the difference, except in some rare cases the increased performance.</p> </blockquote> <p>From : <a href="http://weblogs.asp.net/dmckinstry/archive/2007/08/27/considerations-on-using-tfs-2008-with-visual-studio-2005.aspx" rel="nofollow">http://weblogs.asp.net/dmckinstry/archive/2007/08/27/considerations-on-using-tfs-2008-with-visual-studio-2005.aspx</a></p> http://stackoverflow.com/questions/1374075/jquery-attribute-selector 0 Jquery attribute selector GordonB 2009-09-03T15:18:32Z 2009-09-03T16:47:01Z <p>I have a variable (div element) which contains some table html.</p> <p>I can use this javascript to add a class to each cell that has a background set.</p> <pre><code> var tds = tempDiv.getElementsByTagName("TD"); for (var j = 0; j &lt; tds.length; j++) { var oTd = tds[j]; if (oTd.style.background.length &gt; 0) { oTd.className = 'faketh'; oTd.setAttribute('style', 'Clear'); } //if }//for </code></pre> <p>what i'd like to do is do the same in jquery. Below is what i've come up with, and the second line works fine, but the first doesn't....</p> <pre><code> $(tempDiv).find("td[style*='background:']").addClass("faketh"); $(tempDiv).find("td").removeAttr('style'); </code></pre> <p>Any help would be appreciated.</p> <p>Edit: Just to add; I'm using the code below without issue.</p> <pre><code> $(tempDiv).find("tr:odd").addClass('row0'); $(tempDiv).find("tr:even").addClass("row1"); </code></pre> <p>So its not the adding of the class thats the problem... The issue is that i'm not finding any matching elements. Here is one of the td elements;</p> <pre><code>&lt;td valign="top" class="faketd" style="border: 1pt solid windowtext; padding: 0cm 5.4pt; background: silver none repeat scroll 0% 0%; width: 131.4pt; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"&gt; &lt;p style="margin: 0cm 0cm 0pt; text-align: justify;"&gt;&lt;strong&gt;VPN Name/Description:&lt;/strong&gt;&lt;/p&gt; &lt;/td&gt; </code></pre> http://stackoverflow.com/questions/1212504/working-with-the-sql-server-xml-data-type 0 Working with the SQL Server XML data type GordonB 2009-07-31T13:21:32Z 2009-07-31T13:36:21Z <p>I've got a table which has a XML field. The typical XML it contains is;</p> <pre><code>&lt;things&gt; &lt;Fruit&gt; &lt;imageId&gt;39&lt;/imageId&gt; &lt;title&gt;Apple&lt;/title&gt; &lt;/Fruit&gt; &lt;Fruit&gt; &lt;imageId&gt;55&lt;/imageId&gt; &lt;title&gt;Pear&lt;/title&gt; &lt;/Fruit&gt; &lt;Fruit&gt; &lt;imageId&gt;76&lt;/imageId&gt; &lt;title&gt;Grape&lt;/title&gt; &lt;/Fruit&gt; &lt;/things&gt; </code></pre> <p>In my table i've got around 50 rows, i'm only concerned with two fields, omId (int primary key) and omText (my xml data).</p> <p><strong><em>What i'm trying to achieve is</em></strong> a way of saying, across all xml data in the whole table... give me all of the xmlElements where the title is X. Or give me a count of all items that use an imageId of 55.</p> <p>I'm using the XML data type VALUE and QUERY functions to retrieve the data.</p> <pre><code> select omID, omText.query('/things/Fruit') ,cast('&lt;results&gt;' + cast(omText.query('/things/Fruit') as varchar(max)) + '&lt;/results&gt;' as xml) as Value from dbo.myTable where omText.value('(/things/Fruit/imageId)[1]', 'int') = 76 </code></pre> <p>Which only works where the id i'm searching for is the first one in the document. It doesn't seem to search all of the xml. </p> <p>Fundamentally the resultset comes back with one row for each entry in the TABLE, wheras i think i need to have one row for each matched ELEMENT... Not exactly sure how to start writing a group-by for this tho.</p> <p>I'm starting to feel like i'm making this harder than it needs to be...... thoughts &amp; ideas please.</p> http://stackoverflow.com/questions/1199696/writing-sql-function-with-xquery-parameters 1 Writing SQL function with XQuery Parameters GordonB 2009-07-29T11:48:45Z 2009-07-29T12:10:10Z <p>Following on from one of the answers in this thread; <a href="http://stackoverflow.com/questions/214060/using-xquery-in-linq-to-sql/214435#214435">http://stackoverflow.com/questions/214060/using-xquery-in-linq-to-sql/214435#214435</a></p> <p>I'm trying to create a sql table function that will take parameters in order to perform queries on xml data. The function can then be consumed by a linq query.</p> <p>Issue's i'm having are ;</p> <ol> <li><p>If i take the code from the previously mentioned thread i get a "The argument 1 of the xml data type method "value" must be a string literal" error.</p></li> <li><p>If i write my own function using <strong>sp_executesql</strong> then i get a "Only functions and extended stored procedures can be executed from within a function."</p></li> </ol> <p>Here's my function;</p> <pre><code>CREATE FUNCTION fnGetOpManualXMLDataFromInt ( -- Add the parameters for the function here @valueXPath varchar(255), @criteriaXPath varchar(255), @intCriteriaVal int ) RETURNS @returntable TABLE ( omId int, xmlNodes xml ) AS BEGIN DECLARE @strExecute nvarchar(4000), @SingleQuote varchar(1) SET @SingleQuote = char(39) SET @strExecute = 'insert into @returntable select omID, omText.query(' + @SingleQuote + @valueXPath + @SingleQuote + ') as Value from dbo.htOperationsManuals where omText.value(' + @SingleQuote + @criteriaXPath + @SingleQuote + ', ' + @SingleQuote + 'int' + @SingleQuote + ') = ' + ltrim(str(@intCriteriaVal)) exec sp_executesql @strExecute return end </code></pre> <p>And here's my test for it;</p> <pre><code>DECLARE @valueXPath varchar(255), @criteriaXPath varchar(255), @intCriteriaVal int SET @valueXPath = '/operationsManual/sections/section/contentItem' SET @criteriaXPath = '(/operationsManual/sections/section/contentItem/imageContentItem/imageId)[1]' SET @intCriteriaVal = 131 select * from fnGetOpManualXMLDataFromInt(@valueXPath, @criteriaXPath, @intCriteriaVal) </code></pre> <p>Can anyone think of a way of achieving this?</p> <p>EDIT: BTW, the reason i'm not doing this directly in linq is that i get a error;</p> <pre><code> Dim imageUsage = From opmanual In dc.OperationsManuals _ Where opmanual.OutOfService = False _ And opmanual.omText.&lt;sections&gt;.&lt;section&gt;.&lt;contentItem&gt;.&lt;imageContentItem&gt;.&lt;imageId&gt;.Value = imageId _ Select opmanual </code></pre> <p>Error;</p> <pre><code>Message = "Method 'System.Collections.Generic.IEnumerable`1[System.Xml.Linq.XElement] Elements(System.Xml.Linq.XName)' has no supported translation to SQL." </code></pre> http://stackoverflow.com/questions/925210/generating-mhtml-from-html/965521#965521 1 Answer by GordonB for Generating MHTML from HTML GordonB 2009-06-08T15:34:52Z 2009-06-08T15:34:52Z <p>This is the ticket; Does 90% of what i need.</p> <p><a href="http://www.codeproject.com/KB/files/MhtBuilder.aspx" rel="nofollow">http://www.codeproject.com/KB/files/MhtBuilder.aspx</a></p> <p>Looks like it was written by <a href="http://stackoverflow.com/users/1/jeff-atwood">this</a> man</p> http://stackoverflow.com/questions/633908/linq-returning-list-of-anonymous-types 0 Linq returning list of anonymous types GordonB 2009-03-11T09:52:32Z 2009-06-04T03:07:40Z <p>Caan somone advise the best approach to what i'm trying to acheive (linq to sql, returning list of data to show in a grid/list etc etc)... Its complaining about anonymous type conversion, and from what i'm reading, thats not elegant way of doing it.</p> <pre><code> Public Function GetHistory(ByVal historyId As Integer) As List(Of ?????????) Using dc As New myDataContext(Application.GetConnection) Return (From t In dc.ActionTypes, a In t.MyTable Where a.HistoryID = historyId Select a.ActionOn, a.ActionBy, t.Description, a.ImpactedItem, a.ActionDescription).ToList End Using End Function </code></pre> http://stackoverflow.com/questions/935080/serializing-generic-xml-data-across-wcf-web-service-requests 2 serializing generic XML data across WCF web service requests GordonB 2009-06-01T14:30:56Z 2009-06-01T18:00:05Z <p>I've got a web app that sends a request to a WCF service. The WCF service gets a LINQ resultset (anon. ilist) and sends that in reply, back to the web app. In order to get it working quickly, inside the WCF app, i'm using <a href="http://blogs.msdn.com/aconrad/archive/2008/01/11/pathetic-plea-for-help.aspx#7103127" rel="nofollow">copytodatatable</a> and sending it to my web app in a DataSet.</p> <p>My web app then takes the DataSet and writes it to xml, some xslt is performed and the resulting data is shown on screen. Perfect. ... Well, not really.</p> <p>I'm still (relatively) new to WCF. I understand that sending DataTables/DataSets is a bit cumbersome. The web app wants the data in xml format (for the xslt operation), so I figured I'd get the WCF web service to do the DataTable -> xml work for me, and simply reply with a nice XmlDocument to the client webapp.<br /> However a XmlDocument cannot be serialized.</p> <p>What's the best way of sending the XML data down to the client over wcf?</p> <ul> <li><p>The datatable contains lots of columns, and will be changing quite freqently so i don't want to create my own object class (with like a bazillion properties) and send that (as this is what i've done most of the time previously in wcf, it works well... but isn't suited to this scenario).</p></li> <li><p><strong>EDIT</strong>: Sending it down as a string works too.... but this surely can't be the <em>best</em> solution?</p></li> </ul> http://stackoverflow.com/questions/933933/linq-to-sql-performance-using-contains 1 Linq to SQL Performance using contains. GordonB 2009-06-01T08:07:20Z 2009-06-01T15:23:09Z <p>I'm overloading a vb.net search procedure which queries a SQL database. One of the older methods i'm using as a comparison uses a Stored Procedure to perform the search and return the query. My new method uses linq.</p> <p>I'm slightly concerned about the performance when using contains queries with linq. I'm looking at equally comparable queries using both methods.<br /> Basically having 1 where clause to Here are some profiler results;</p> <pre><code>Where name = "ber10rrt1" </code></pre> <ul> <li>Linq query : 24reads</li> <li><p>Stored query : 111reads</p> <p>Where name = "%ber10%"</p></li> <li><p>Linq query : 53174reads</p></li> <li>Stored proc query : 23386reads</li> </ul> <p>Forgetting for a moment, the indexes (not my database)... The fact of the matter is that both methods are fundamentally performing the same query (albeit the stored procedure does reference a view for [some] of the tables).</p> <p>Is this consitent with other peoples experiance of linq to sql?</p> <p>Also, interestingly enough;</p> <ul> <li><p>Using like "BER10%" </p></li> <li><p>resultset.Where(Function(c) c.ci.Name.StartsWith(name))</p></li> </ul> <p>Results in the storedproc using 13125reads and linq using 8172reads</p> http://stackoverflow.com/questions/807739/displaying-images-derived-from-a-byte-array-dynamically-on-a-page 1 Displaying images derived from a byte-array dynamically on a page GordonB 2009-04-30T16:12:54Z 2009-05-15T07:32:43Z <p>I'm calling a webservice that is returning an unknown quantity of images in the form of an a collection of byte arrays. (I can't change this)</p> <p>I need to display each image on a single aspx webpage.</p> <p>I'm currently using the Microsoft.Web.GeneratedImage control; <a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16449" rel="nofollow">http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16449</a> to display the images.</p> <p>The issue i have is that since the control calls a seperate code file to load the image content, i am using session state to store the bytearray, which i'm not overly happy about.</p> <p>Here's some code from my test project;</p> <pre><code> Private Sub btnGetChart_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnGetChart.Click Dim reportHub As New HubWrapper Dim repCharts() As ReportHub.Chart = reportHub.ReportHubChart(Me.ddlReports.SelectedValue, ViewState("params")) For Each chart As ReportHub.Chart In repCharts Dim sessionKey As String = "img" &amp; System.Guid.NewGuid().ToString Dim imgParam As New Microsoft.Web.ImageParameter() imgParam.Name = "sessionVar" imgParam.Value = sessionKey Session(sessionKey) = chart.ChartData Dim img As New Microsoft.Web.GeneratedImage img.ImageHandlerUrl = "~/chartImageHandler.ashx" img.Parameters.Add(imgParam) phChart.Controls.Add(img) Next End Sub </code></pre> <p><hr /></p> <pre><code>&lt;%@ WebHandler Language="VB" Class="chartImageHandler" %&gt; Imports System Imports System.Collections.Specialized Imports System.Drawing Imports System.Web Imports Microsoft.Web Public Class chartImageHandler Inherits ImageHandler Implements IRequiresSessionState Public Sub New() MyBase.New() 'Set caching settings and add image transformations here 'EnableServerCache = True End Sub Public Overrides Function GenerateImage(ByVal parameters As NameValueCollection) As ImageInfo Dim byteArry As Byte() = CType(HttpContext.Current.Session(parameters("sessionVar")), Byte()) HttpContext.Current.Session.Remove(parameters("sessionVar")) Return New ImageInfo(byteArry) End Function End Class </code></pre> <p>What's the most elegant way of achieving this?</p> <p>Any input welcome!!!</p> <p>EDIT: Additional info;</p> <ul> <li>The images from the webservice are coming from SQL Reporting Services. </li> <li>The images would generally be changing all the time (no real caching requirement). </li> <li>Images would be user specific. </li> <li>The webservice is only called once per page. </li> <li>I'm actually disposing of the image from session state after the generated image uses it, as the image won't be needed to be viewed again for a while.</li> </ul> http://stackoverflow.com/questions/701739/table-operation-net-library/701853#701853 0 Answer by GordonB for Table operation .net library GordonB 2009-03-31T16:20:52Z 2009-03-31T16:20:52Z <p>Why do you need a datatable? A gridview will take a dataview without complaint.</p> <p>If your on .NET 3.5 then Linq's definately your man.</p> http://stackoverflow.com/questions/662394/datatable-not-knowing-its-primary-key/672797#672797 1 Answer by GordonB for datatable not knowing its primary key GordonB 2009-03-23T10:03:10Z 2009-03-23T10:03:10Z <p>Using fillschema fixes my issue;</p> <pre><code>da.FillSchema(ds, SchemaType.Mapped, table.tableName) da.Fill(ds, table.tableName) </code></pre> <p>"</p> <blockquote> <p>The DataAdapter object is optimized for read-only scenarios by default. The Fill method only retrieves the amount of schema that is necessary to populate a DataSet object. To obtain the additional schema that are necessary to update or validate DataSet objects, use one of the following methods for DataSet objects that are populated by the DataAdapater:</p> <pre><code>* Use the FillSchema method of the DataAdapter. * Use the AddWithKey enumeration for the MissingSchemaAction property </code></pre> <p>of the DataAdapter.</p> <p>This article describes how to choose between these two methods when you want to populate updateable DataSet objects with the DataAdapter.</p> </blockquote> <p>"</p> <p><a href="http://support.microsoft.com/kb/310128" rel="nofollow">REF : <a href="http://support.microsoft.com/kb/310128" rel="nofollow">http://support.microsoft.com/kb/310128</a></a> </p> http://stackoverflow.com/questions/662394/datatable-not-knowing-its-primary-key 0 datatable not knowing its primary key GordonB 2009-03-19T14:19:21Z 2009-03-23T10:03:10Z <p>I'm trying to query a datatable to establish the primary key [identity column], by querying each columns autoincrement property. However its always false (for the column which is the Idenity/PK).</p> <p>Querying the tables primary key collection reveals that the datatable doesn't think it has a PK.;</p> <pre><code> Dim dc As DataColumn() = dt.PrimaryKey Debug.WriteLine(dc.Count) 'Result is 0 </code></pre> <p>The datatable is being populated....... </p> <pre><code>Using cn As SqlConnection = MyApp.GetConnection Using cmd As New SqlCommand(strSQL, cn) Using da As New SqlDataAdapter(cmd) Dim ds As New DataSet Try da.Fill(ds) Return ds Catch ex As Exception MyAppClass.LogWarning(ex, EventLogEntryType.Error) Throw End Try End Using End Using End Using </code></pre> <p>The table in question's primary key is : ([myTableId] [int] IDENTITY(1,1) NOT NULL). and its the pk : CONSTRAINT [PK_myTablesPK] PRIMARY KEY CLUSTERED ( [myTableId] ASC )</p> <p>Here's someone having the same problem (perhaps its clearer than what i've written) : <a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/c6abdeef-0cb0-42f5-a5f1-10dc4d81df4a/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/c6abdeef-0cb0-42f5-a5f1-10dc4d81df4a/</a></p> <p>I'm assuming its something simple i'm missing, does anyone care to enlighten me?</p> http://stackoverflow.com/questions/653391/how-can-i-script-an-ms-sql-server-database-with-proper-object-ordering/653409#653409 2 Answer by GordonB for How can I script an MS SQL Server database with proper object ordering? GordonB 2009-03-17T08:38:39Z 2009-03-17T08:38:39Z <p>We use this to create the db scripts, i'd have to run it up again to ensure it creates objects dependants first... but i haven't had a problem yet. <a href="http://www.red-gate.com/products/SQL%5FCompare/index.htm" rel="nofollow">http://www.red-gate.com/products/SQL_Compare/index.htm</a></p> http://stackoverflow.com/questions/619653/a-better-way-of-writing-this-growing-array 0 A better way of writing this : growing array GordonB 2009-03-06T17:14:49Z 2009-03-07T02:48:41Z <p>Was looking at some code earlier, and am thinking that there has to be a more elegant way of writing this.... </p> <p>(returnVar.Warnings is a string array, it could be returned as any size depending on the number of warnings that are logged) </p> <pre><code>For Each item In items If o.ImageContent.ImageId = 0 Then ReDim Preserve returnVar.Warnings(returnVar.Warnings.GetUpperBound(0) + 1) returnVar.Warnings(returnVar.Warnings.GetUpperBound(0)) = "Section: " &amp; section.&lt;header&gt;.&lt;title&gt;.ToString &amp; " , Item: " &amp; item.&lt;title&gt;.ToString End If Next </code></pre> http://stackoverflow.com/questions/615685/odbc-cause-high-mysql-server-load/615734#615734 0 Answer by GordonB for odbc cause high mysql server load GordonB 2009-03-05T17:21:16Z 2009-03-05T17:21:16Z <p>I can't imagine it would cause much load.... but surely the best way to find out is to try it in a test environment and monitor the server metrics...</p> http://stackoverflow.com/questions/615622/reminder-functionality-not-working-webdayview-infragistic-control-asp-net/615727#615727 0 Answer by GordonB for Reminder functionality not working WebDayView Infragistic control asp.net GordonB 2009-03-05T17:19:37Z 2009-03-05T17:19:37Z <p>care to share your code?</p> http://stackoverflow.com/questions/613986/sql-server-bad-best-practices/614002#614002 3 Answer by GordonB for SQL Server Bad & Best Practices GordonB 2009-03-05T08:44:48Z 2009-03-05T08:44:48Z <p>stop the sql server from using all available memory... on a box with 4gb of ram, i'd limit it to 3gb, ensuring 1gb is left for the os.</p> http://stackoverflow.com/questions/613776/scheduling-parameterized-reports-in-crystal-reports-server/613997#613997 0 Answer by GordonB for Scheduling parameterized reports in Crystal Reports Server GordonB 2009-03-05T08:41:16Z 2009-03-05T08:41:16Z <p>There's a few 3rd party scheduling products that i've used for this in the past. <a href="http://www.jeff-net.com/" rel="nofollow">http://www.jeff-net.com/</a> is one.</p> <p>Can you not just modify the crystal report to perform a dateAdd on the current date to give you the right critieria to work with?</p> http://stackoverflow.com/questions/610642/where-to-buy-a-us-layout-keyboard-in-london/610663#610663 2 Answer by GordonB for Where to buy a US layout keyboard in London? GordonB 2009-03-04T13:55:24Z 2009-03-04T13:55:24Z <p>try tottenham court road in one of the funny electronic shops they have.</p> <p>otherwise ebay.</p> http://stackoverflow.com/questions/610113/sql-server-backup-restore-v-s-detach-attach/610126#610126 1 Answer by GordonB for SQL Server backup/restore v.s. detach/attach GordonB 2009-03-04T11:10:41Z 2009-03-04T11:30:06Z <p>Solution 2 would be my choice... Primarily becuase it won't create any downtime on the source database. The only disadvatage i can see is that depending on the database recovery model, the transaction log will be truncated meaning if you wanted to restore any data from the transaction log you'd be stuffed, you'd have to use your backup file.</p> <p>EDIT: Found a nice link; <a href="http://sql-server-performance.com/Community/forums/p/5838/35573.aspx" rel="nofollow">http://sql-server-performance.com/Community/forums/p/5838/35573.aspx</a></p> http://stackoverflow.com/questions/606265/is-there-an-existing-datasource-that-takes-its-data-from-datatable-in-asp-net/606349#606349 0 Answer by GordonB for Is there an existing DataSource that takes its data from DataTable in ASP.NET? GordonB 2009-03-03T13:13:29Z 2009-03-03T13:13:29Z <p>The scenario you have described;</p> <ol> <li>Retrieve data from datasource and store in datatable </li> <li>Store datatable in session-state. </li> <li>Modify datatable from different grids</li> </ol> <p>Sounds like it will work, issues that i can see you having is that you'll have to reload the data between grids when the data changes. You'll have to write a class that'll raise events when changes are made to the datatable (which you'll probably also want to include in the class, and just store the class object in session state).</p> <p>I hope the datatable isn't too too big... as this isn't the sort of approach i'd take for a web app.</p> http://stackoverflow.com/questions/602677/programmatically-detect-sql-server-edition/602691#602691 2 Answer by GordonB for Programmatically detect SQL Server Edition GordonB 2009-03-02T15:15:11Z 2009-03-02T15:22:20Z <p>I've always used @@Version (eg. SELECT @@Version and manipluted the result in code), but this article looks pretty handy; <a href="http://support.microsoft.com/kb/321185" rel="nofollow">http://support.microsoft.com/kb/321185</a></p> <p>The only issue with using SERVERPROPERTY, as per the link... is that this won't work with older version of SQL Server.</p> http://stackoverflow.com/questions/602544/sql-select-where-values-in-liststring/602561#602561 1 Answer by GordonB for SQL Select where values in List<string> GordonB 2009-03-02T14:40:43Z 2009-03-02T14:40:43Z <p>I've only done what your trying to do with a comma seperated list</p> <pre><code>Select * from Table where RecordID in (1,2,34,45,76,34,457,34) </code></pre> <p>or where the results come from a seperate select</p> <pre><code>Select * from Table where RecordID in (select recordId from otherTable where afieldtype=1) </code></pre> <p>I'm pretty sure you can't acheive what your after....</p> http://stackoverflow.com/questions/596968/whats-so-bad-about-using-button-captions-as-variables-in-vb6/597013#597013 3 Answer by GordonB for What's so bad about using button captions as variables in VB6? GordonB 2009-02-27T23:00:24Z 2009-02-28T00:38:30Z <p>The biggest issue i've come accross when working on (very old) code like this [button captions as variables] is that globalisation is a nightmare.... I had to move a old vb6 app to use English and German... it took weeks, if not months.</p> <p>You're using goto's as well..... a bit of refactoring needed perhaps to make the code readable??</p> <p>**Edit in response to comments I'd only use a goto in vb6 at the top of each proc; on error goto myErrorHandler.</p> <p>then at the very bottom of the proc i'd have a one liner that would pass err to a global handler, to log the error.</p> http://stackoverflow.com/questions/595489/sql-when-to-use-which-data-type/595510#595510 1 Answer by GordonB for SQL When to use Which Data Type GordonB 2009-02-27T16:34:21Z 2009-02-27T16:34:21Z <p>A data type beginning with n means it can be used for unicode characters... eg nVarchar.</p> <p>Selection of integers is also quite fun.</p> <p><a href="http://www.databasejournal.com/features/mssql/article.phpr/2212141/Choosing-SQL-Server-2000-Data-Types.htm" rel="nofollow">http://www.databasejournal.com/features/mssql/article.phpr/2212141/Choosing-SQL-Server-2000-Data-Types.htm</a></p> <p>The most common data type i use is varchar.... </p> http://stackoverflow.com/questions/591196/what-would-you-suggest-as-a-high-school-first-language/591232#591232 1 Answer by GordonB for What would you suggest as a high school first language? GordonB 2009-02-26T16:10:03Z 2009-02-26T16:10:03Z <p>I started out being taught pascal, then vb, then c++, then vb again.</p> <p>I'd probably recommend getting an express edition of visual studio and picking up vb.net.</p> http://stackoverflow.com/questions/589554/what-is-a-simple-way-to-combine-grouped-values-in-one-field/589567#589567 1 Answer by GordonB for What is a simple way to combine grouped values in one field? GordonB 2009-02-26T07:55:36Z 2009-02-26T07:55:36Z <p>A function would be my preferred method of achieving what you want.</p> http://stackoverflow.com/questions/586718/recommendations-for-dropdown-menu-items-that-are-too-wide/586747#586747 2 Answer by GordonB for Recommendations for dropdown menu items that are too wide? GordonB 2009-02-25T16:28:10Z 2009-02-25T16:28:10Z <p>Truncation with tooltip would be my choice....</p> <p>The last time i had to do that i used a telerik control, which was quite UI rich.</p> http://stackoverflow.com/questions/1530306/xml-literal-with-linq-statement/1530384#1530384 Comment by GordonB on XML Literal with Linq statement GordonB 2009-10-07T11:58:29Z 2009-10-07T11:58:29Z i had thought that this one was added first... if i'm wrong, then my bad. http://stackoverflow.com/questions/1374075/jquery-attribute-selector/1374552#1374552 Comment by GordonB on Jquery attribute selector GordonB 2009-09-28T14:34:10Z 2009-09-28T14:34:10Z Haven't tested this yet... but its the best answer on here... hopefully will work ;) http://stackoverflow.com/questions/1374075/jquery-attribute-selector/1374386#1374386 Comment by GordonB on Jquery attribute selector GordonB 2009-09-04T09:44:59Z 2009-09-04T09:44:59Z some good tips there.... am testing in ff/ie7/ie8 http://stackoverflow.com/questions/1374075/jquery-attribute-selector/1374182#1374182 Comment by GordonB on Jquery attribute selector GordonB 2009-09-03T15:49:33Z 2009-09-03T15:49:33Z You are quite correct, my example td html element was incorrect. I have ammended it. Some of the td elements do have a background-color attribute, which i don't care about. I only want to match on background. http://stackoverflow.com/questions/1374075/jquery-attribute-selector/1374108#1374108 Comment by GordonB on Jquery attribute selector GordonB 2009-09-03T15:44:55Z 2009-09-03T15:44:55Z Removed the colon and.... nope. :( So weird that it doesn't work... looks right to me. http://stackoverflow.com/questions/1374075/jquery-attribute-selector/1374108#1374108 Comment by GordonB on Jquery attribute selector GordonB 2009-09-03T15:41:52Z 2009-09-03T15:41:52Z won't removing the : mean that i'll now match attributes such as background-color etc etc. I'm just after the background attribute. http://stackoverflow.com/questions/1374075/jquery-attribute-selector Comment by GordonB on Jquery attribute selector GordonB 2009-09-03T15:40:36Z 2009-09-03T15:40:36Z Any value. Doesn't matter. http://stackoverflow.com/questions/1374075/jquery-attribute-selector/1374108#1374108 Comment by GordonB on Jquery attribute selector GordonB 2009-09-03T15:32:49Z 2009-09-03T15:32:49Z Have double checked... an no. Removing the single quotes does not make a difference. :( http://stackoverflow.com/questions/1374075/jquery-attribute-selector/1374100#1374100 Comment by GordonB on Jquery attribute selector GordonB 2009-09-03T15:30:06Z 2009-09-03T15:30:06Z exxxxactly. @:) http://stackoverflow.com/questions/1199696/writing-sql-function-with-xquery-parameters/1199809#1199809 Comment by GordonB on Writing SQL function with XQuery Parameters GordonB 2009-08-25T11:54:40Z 2009-08-25T11:54:40Z In the end on this one, i created a stored procedure... then referenced it in linq and used the resultset to join to the other linq tables i needed to use. Simples. http://stackoverflow.com/questions/1212504/working-with-the-sql-server-xml-data-type/1212547#1212547 Comment by GordonB on Working with the SQL Server XML data type GordonB 2009-07-31T14:00:17Z 2009-07-31T14:00:17Z Thanks again :) http://stackoverflow.com/questions/1212504/working-with-the-sql-server-xml-data-type/1212547#1212547 Comment by GordonB on Working with the SQL Server XML data type GordonB 2009-07-31T13:54:55Z 2009-07-31T13:54:55Z It is..... You're a star. Cheers :) Don't suppose you can point me in the direction of any decent resources to read up on SQL XML manipulation??? http://stackoverflow.com/questions/1199696/writing-sql-function-with-xquery-parameters/1199809#1199809 Comment by GordonB on Writing SQL function with XQuery Parameters GordonB 2009-07-29T16:15:43Z 2009-07-29T16:15:43Z Ok, i can see sql:variables are probably the way to go.... I can't find many similar examples of where the sql variable holds the entire path... Only where it's being used in the traditional sense of holding a variable for comparison against hardcoded xml elements/attribute paths. Any ideas? http://stackoverflow.com/questions/214060/using-xquery-in-linq-to-sql/214435#214435 Comment by GordonB on Using XQuery in Linq To SQL? GordonB 2009-07-29T10:25:16Z 2009-07-29T10:25:16Z Doesn't work for me..... I get; The argument 1 of the xml data type method &quot;value&quot; must be a string literal :( http://stackoverflow.com/questions/935080/serializing-generic-xml-data-across-wcf-web-service-requests/935193#935193 Comment by GordonB on serializing generic XML data across WCF web service requests GordonB 2009-06-01T15:06:34Z 2009-06-01T15:06:34Z I've got the book in front of me... ;) Nicked it off my colleages desk... Thanks for the tip.