User GONeale - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T04:53:05Z http://stackoverflow.com/feeds/user/41211 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1641832/the-report-you-requested-requires-further-information-error-using-sqldatasource 0 'The report you requested requires further information' error using SqlDataSource with Crystal Reports GONeale 2009-10-29T05:56:50Z 2009-12-16T21:04:31Z <p>I have followed the Microsoft tutorial <a href="http://msdn.microsoft.com/en-us/library/ms227796%28VS.80%29.aspx" rel="nofollow">here</a> to create a Crystal Report (with v12.0) within Visual Studio and attach it to a web form using a <code>CrystalReportViewer</code>, <code>CrystalReportSource</code> and <code>SqlDataSource</code> as I wish it to read data from my SQL Server instance. The report will load fine <strong>once</strong> <em>(this appears to be snapshot data though saved embedded within the .rpt file)</em> with this web form markup:</p> <pre><code>&lt;CR:CrystalReportViewer ID="crystalReportViewer" runat="server" AutoDataBind="true" GroupTreeImagesFolderUrl="" HasRefreshButton="True" Height="895px" ReportSourceID="crystalReportSource" ToolbarImagesFolderUrl="" ToolPanelWidth="200px" Width="1365px" /&gt; &lt;CR:CrystalReportSource ID="crystalReportSource" runat="server" EnableCaching="False"&gt; &lt;Report FileName="ClientLoginHistory.rpt"&gt; &lt;DataSources&gt; &lt;CR:DataSourceRef DataSourceID="sqlDataSource" /&gt; &lt;/DataSources&gt; &lt;/Report&gt; &lt;/CR:CrystalReportSource&gt; &lt;asp:SqlDataSource ID="sqlDataSource" runat="server" ConnectionString="&lt;%$ ConnectionStrings:dbReportsConnectionString %&gt;" SelectCommand="{{ select query is here }}"&gt; &lt;/asp:SqlDataSource&gt; </code></pre> <p><em>(please tell me if you can see any configuration errors)</em></p> <p>But as soon as I press "Refresh" on the Crystal Reports Viewer toolbar I receive the following error:</p> <pre><code>"The report you requested requires further information." </code></pre> <p>with fields to enter DB login information...</p> <p>The reason I say 'error', is because I purposely followed the tutorial attaching a Crystal Report to a SQL Data Source as so I could specify an existing Connection String from my Web.config, which has the username and password pre-set.</p> <p>It actually appears it isn't even <em>USING</em> the connection string from Web.config as if I remove reference to the SqlDataSource (see below code snippet) it still loads with snapshot data, then a 'refresh' prompts for the user/pass and once entered the report loads fine:</p> <pre><code>&lt;CR:CrystalReportViewer ID="crystalReportViewer" runat="server" AutoDataBind="true" GroupTreeImagesFolderUrl="" HasRefreshButton="True" Height="895px" ReportSourceID="crystalReportSource" ToolbarImagesFolderUrl="" ToolPanelWidth="200px" Width="1365px" /&gt; &lt;CR:CrystalReportSource ID="crystalReportSource" runat="server" EnableCaching="False"&gt; &lt;/Report&gt; &lt;/CR:CrystalReportSource&gt; </code></pre> <p>I imagine this must be linked to an internal db connection embedded in the report instead of the sqlDataSource?? This would be quite probable because when you create the report, you select your database tables and fields over an ODBC link and it saves the connection information into the report I think :S</p> <p>So, after much scouring on the net, I found a way to avoid this error, but again, I do not believe it's reading the Web.config connectionString but rather the embedded connection in the .rpt file.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { crystalReportSource.ReportDocument.SetDatabaseLogon("user", "real_pass"); } </code></pre> <p>This works to circumvent the continuous prompt. But is super nasty and I do not want to use it.</p> <p>Help!</p> http://stackoverflow.com/questions/1850767/how-to-re-write-this-inner-join-subquery-from-sql-to-lambda 0 How to re-write this inner join subquery from SQL to Lambda GONeale 2009-12-05T01:32:31Z 2009-12-07T06:08:57Z <pre><code>SELECT ulcch.ID, ulcch.UserLoginHistoryID, ulcch.StatusID, ulcch.ClientModuleID, ulcch.DeviceState, ulcch.UpdatedAt, ulcch.CreatedAt FROM UserLoginClientConnectionHistory AS ulcch INNER JOIN (SELECT MAX(CreatedAt) AS maxCreatedAt FROM UserLoginClientConnectionHistory AS ulcch1 GROUP BY UserLoginHistoryID) AS m ON m.maxCreatedAt = ulcch.CreatedAt </code></pre> <p>There can be many updates of 'device state' per day audited into this login table. This query returns the last unique one for each day.</p> <p>I would like this re-written as a Lambda statement. This is how far I got, I don't know if i'm on the right track, and my <code>Max()</code> is throwing a type error, probably because the group by is making another list or something... Hope you can work it out from my object examples.... :S</p> <pre><code>userLogin.UserLoginClientConnectionHistories.Where(x =&gt; x.CreatedAt == userLoginClientConnectionHistoryRepository.GetAll( GenericStatus.Active).GroupBy(y =&gt; y.UserLoginHistoryID).Max(y =&gt; y.CreatedAt)); </code></pre> http://stackoverflow.com/questions/1850767/how-to-re-write-this-inner-join-subquery-from-sql-to-lambda/1851418#1851418 0 Answer by GONeale for How to re-write this inner join subquery from SQL to Lambda GONeale 2009-12-05T07:04:17Z 2009-12-07T06:08:57Z <p>Thanks for all your help guys, i've voted you all up, but you wouldn't believe it but a few hours later I searched for a program to convert SQL to LINQ, and to my surprise found one called "<a href="http://www.sqltolinq.com/" rel="nofollow">Linqer</a>". Sounds crazy and didn't expect to get far, but it worked perfectly.. definitely worth checking out that app if anyone else gets stuck in the same boat...</p> <p>Check the mammoth query it returned! After analysing it, don't think it's got extra bloat? Anyone have any optimisation tips or spot any unnecessary code?</p> <pre><code> moduleDeviceStates = from ulh in user.UserLoginHistories join ulcch in userLogin.UserLoginClientConnectionHistories on new { ID = ulh.ID } equals new { ID = ulcch.UserLoginHistoryID } join cm in clientModuleRepository.GetAll(GenericStatus.Active) on new { ClientModuleID = ulcch.ClientModuleID } equals new { ClientModuleID = cm.ID } join mo in moduleRepository.GetAll(GenericStatus.Active) on new { ModuleID = cm.ModuleID } equals new { ModuleID = mo.ID } join m in ( (from ulcch1 in userLogin.UserLoginClientConnectionHistories group ulcch1 by new { ulcch1.UserLoginHistoryID } into g select new { maxCreatedAt = g.Max(p =&gt; p.CreatedAt) })) on new { maxCreatedAt = ulcch.CreatedAt } equals new { maxCreatedAt = m.maxCreatedAt } select new ModuleDeviceState() { ModuleID = mo.ID, Name = mo.Name, DeviceState = (State.DeviceState)ulcch.DeviceState, CreatedAt = ulcch.CreatedAt }; </code></pre> <p>Cheers for your help dahlbyk, but I did want to group on UserLoginHistoryID, I had my query confirmed in SQL before delving into a lambda equivalent :) thanks.</p> <p><hr> @Mark Thanks for taking the time to reply, yes I do what the [last] entries per user (userloginhistory.. which in turn contains a userID) for each day, and exporting my sql into the linq query did produce what I wanted (which can be seen in the query result below; this is what I want. The reason you see double entries for each day is because there are also attached ClientModule's.. so I really want all client module, per login entry per day - so hard to get a programming requirement across over a discussion forum argh!) Perhaps yours does exactly the same thing (it appears to if I am reading your output correctly) just a lot more streamlined. </p> <p>See I didn't know too much about the anon casting you've done there with <code>GroupBy</code> and <code>Select</code>, but now I see it, it makes sense. I might give yours a go. Hopefully I can give it a tweak to include distinct ClientModule's per day too. So anyway.. here is the query result from my SQL, and effectively what I got through my own lambda:</p> <pre><code>ID UserLoginHistoryID StatusID ClientModuleID DeviceState UpdatedAt CreatedAt 277 62 1 1 4 NULL 2009-10-31 13:28:59.003 278 62 1 16 4 NULL 2009-10-31 13:28:59.003 331 65 1 1 4 NULL 2009-10-31 17:13:28.333 332 65 1 16 4 NULL 2009-10-31 17:13:28.333 </code></pre> <p><hr> Update Mark: Hi again, well after a couple of tweaks on your query, I could produce the same object graph in .NET between both lambda statements. This is the one I will use now, derived from yours as it's more streamlined and easier to understand than the auto-gen'd one and I will award you the points :)</p> <p>I added a few more entries to the Group By as I need that for my <code>new</code> <code>ModuleDeviceState</code> class.</p> <pre><code>moduleDeviceStates = userLogin.UserLoginClientConnectionHistories .GroupBy(y =&gt; new { Id = y.UserLoginHistoryID, CreatedAt = y.CreatedAt.Date, ModuleID = y.ClientModule.ModuleID, ModuleName = y.ClientModule.Module.Name, DeviceState = y.DeviceState }) .Select(x =&gt; new ModuleDeviceState() { ModuleID = x.Key.ModuleID, Name = x.Key.ModuleName, DeviceState = (State.DeviceState)x.Key.DeviceState, CreatedAt = x.Max(y =&gt; y.CreatedAt) }); </code></pre> http://stackoverflow.com/questions/415602/set-value-of-textarea-in-jquery 4 Set value of textarea in jquery GONeale 2009-01-06T06:03:59Z 2009-12-03T17:40:38Z <p>I am attempting to set a value in a textarea field using jquery with the following code:</p> <pre><code>$("textarea#ExampleMessage").attr("value", result.exampleMessage); </code></pre> <p>The issue is, once this code executes, it is not altering the text in the textarea?</p> <p>However when performing an <code>alert($("textarea#ExampleMessage").attr("value"))</code> the newly set value is returned?</p> http://stackoverflow.com/questions/1615294/datetimepicker-displays-todays-date-instead-of-displaying-its-actual-value/1752893#1752893 0 Answer by GONeale for DateTimePicker displays today's date instead of displaying its actual Value GONeale 2009-11-18T00:41:15Z 2009-11-18T00:41:15Z <p>I found out what the root problem was here, <a href="http://stackoverflow.com/questions/1400525/datetimepicker-default-value-how-to-avoid-it/1752887#1752887">answered it here</a> on a similar question if you guys still wanted to know. </p> http://stackoverflow.com/questions/1400525/datetimepicker-default-value-how-to-avoid-it/1752887#1752887 1 Answer by GONeale for DateTimePicker Default value: How to avoid it? GONeale 2009-11-18T00:40:09Z 2009-11-18T00:40:09Z <p>I found out what the problem was here.</p> <p>The <code>Value</code> property only sets a new value if the <code>DateTimePicker</code> control is visible. Otherwise command is ignored.</p> <p>Test case:</p> <p>Doesn't work:</p> <pre><code> this.picker = new DateTimePicker { Checked = false, Font = new System.Drawing.Font("Verdana", 9.75F), Format = System.Windows.Forms.DateTimePickerFormat.Time, Location = new System.Drawing.Point(5, 5), Name = "picker", ShowUpDown = true, Size = new System.Drawing.Size(120, 23), Visible = false }; this.Controls.Add(this.picker); this.picker.Value = this.picker.Value.Date.AddHours(1); this.picker.Visible = true; </code></pre> <p>Works:</p> <pre><code> this.picker = new DateTimePicker { Checked = false, Font = new System.Drawing.Font("Verdana", 9.75F), Format = System.Windows.Forms.DateTimePickerFormat.Time, Location = new System.Drawing.Point(5, 5), Name = "picker", ShowUpDown = true, Size = new System.Drawing.Size(120, 23), Visible = false }; this.Controls.Add(this.picker); this.picker.Visible = true; this.picker.Value = this.picker.Value.Date.AddHours(1); </code></pre> <p>Doesn't appear to have anything to do with programatically adding the picker it seems.</p> http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1745488#1745488 2 Answer by GONeale for RegEx match open tags except XHTML self-contained tags GONeale 2009-11-16T23:15:03Z 2009-11-16T23:15:03Z <p>I don't know your exact need for this, but if you are also using .NET, couldn't you use <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">Html Agility Pack</a>?</p> <p>Excerpt:</p> <blockquote> <p><em>It is a .NET code library that allows you to parse "out of the web" HTML files. The parser is very tolerant with "real world" malformed HTML.</em></p> </blockquote> http://stackoverflow.com/questions/1739767/datagridview-and-combobox-column/1739806#1739806 0 Answer by GONeale for DataGridView and Combobox Column? GONeale 2009-11-16T02:51:16Z 2009-11-16T02:51:16Z <p>Umm are you talking about Win Forms? If so, <code>Value</code> is the property you want, and is what is to be displayed on the screen and held behind the scenes. If you want something different not shown to the user, I've often used the property <code>Tag</code> for that.</p> http://stackoverflow.com/questions/1700435/calculate-upload-transfer-speed-problem 2 Calculate upload transfer speed problem GONeale 2009-11-09T11:23:34Z 2009-11-09T12:55:44Z <p>Hey guys,</p> <p>I have implemented a file transfer rate calculator to display kB/sec for an upload process occuring in my app, however with the following code it seems I am getting 'bursts' in my KB/s readings just after the file commences to upload.</p> <p>This is the portion of my stream code, this streams a file in 1024 chunks to a server using httpWebRequest:</p> <pre><code>using (Stream httpWebRequestStream = httpWebRequest.GetRequestStream()) { if (request.DataStream != null) { byte[] buffer = new byte[1024]; int bytesRead = 0; Debug.WriteLine("File Start"); var duration = new Stopwatch(); duration.Start(); while (true) { bytesRead = request.DataStream.Read(buffer, 0, buffer.Length); if (bytesRead == 0) break; httpWebRequestStream.Write(buffer, 0, bytesRead); totalBytes += bytesRead; double bytesPerSecond = 0; if (duration.Elapsed.TotalSeconds &gt; 0) bytesPerSecond = (totalBytes / duration.Elapsed.TotalSeconds); Debug.WriteLine(((long)bytesPerSecond).FormatAsFileSize()); } duration.Stop(); Debug.WriteLine("File End"); request.DataStream.Close(); } } </code></pre> <p>Now an output log of the upload process and associated kB/sec readings are as follows: (You will note a new file starts and ends with 'File Start' and 'File End')</p> <pre><code>File Start 5.19 MB 7.89 MB 9.35 MB 11.12 MB 12.2 MB 13.13 MB 13.84 MB 14.42 MB 41.97 kB 37.44 kB 41.17 kB 37.68 kB 40.81 kB 40.21 kB 33.8 kB 34.68 kB 33.34 kB 35.3 kB 33.92 kB 35.7 kB 34.36 kB 35.99 kB 34.7 kB 34.85 kB File End File Start 11.32 MB 14.7 MB 15.98 MB 17.82 MB 18.02 MB 18.88 MB 18.93 MB 19.44 MB 40.76 kB 36.53 kB 40.17 kB 36.99 kB 40.07 kB 37.27 kB 39.92 kB 37.44 kB 39.77 kB 36.49 kB 34.81 kB 36.63 kB 35.15 kB 36.82 kB 35.51 kB 37.04 kB 35.71 kB 37.13 kB 34.66 kB 33.6 kB 34.8 kB 33.96 kB 35.09 kB 34.1 kB 35.17 kB 34.34 kB 35.35 kB 34.28 kB File End </code></pre> <p>My problem is as you will notice, the 'burst' I am talking about starts at the beginning of every new file, peaking in MB's and then evens out properly. is this normal for an upload to burst like this? My upload speeds typically won't go higher than 40k/sec here so it can't be right.</p> <p>This is a real issue, when I take an average of the last 5 - 10 seconds for on-screen display, it really throws things out producing a result around ~3MB/sec!</p> <p>Any ideas if I am approaching this problem the best way? and what I should do? :S</p> <p>Graham</p> <p><strong>Also: Why can't I do '<code>bytesPerSecond = (bytesRead / duration.Elapsed.TotalSeconds)</code>' and move duration.Start &amp; duration.Stop into the while loop and receive accurate results? I would have thought this would be more accurate? Each speed reads as 900 bytes/sec, 800 bytes/sec etc.</strong></p> http://stackoverflow.com/questions/1700435/calculate-upload-transfer-speed-problem/1700712#1700712 0 Answer by GONeale for Calculate upload transfer speed problem GONeale 2009-11-09T12:30:51Z 2009-11-09T12:30:51Z <p>All, I think I have fixed my issue by adjusting the 5 - 10 averging variable to wait one second to account for the burst, not the best, but will allow internet to sort itself out and allow me to capture a smooth transfer.</p> <p>It appears from my network traffic it down right is bursting so there is nothing in code I could do differently to stop this.</p> <p>Please will still be interested in more answers before I hesitantly accept my own.</p> http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances 0 logging in log4net to different appenders based on circumstances GONeale 2009-11-05T01:59:35Z 2009-11-05T02:38:47Z <p>Hi there,</p> <p>I am using log4net and in one class require logging to a RollingFile appender, but then in another class, I wish to log to the event log + rolling file + console appender.</p> <p>What is the best practice? and could I see some sample code?</p> <p>By the way to make things more difficult, I am using <em>Castle Windsor Logging Facility</em> with Log4net to resolve my Logger instance.</p> <p>If it helps, I was thinking this below, but have no idea if this is best practice, or how to activate a particular logger based on 'name' still utilising my current logger instance from windsor:</p> <p><strong>log4net.config:</strong></p> <pre><code>... &lt;logger name="EventLogOnly"&gt; &lt;level value="ALL" /&gt; &lt;appender-ref ref="EventLogAppender" /&gt; &lt;/logger&gt; &lt;logger name="ConsoleEventLog"&gt; &lt;level value="ALL" /&gt; &lt;appender-ref ref="ColoredConsoleAppender" /&gt; &lt;appender-ref ref="EventLogAppender" /&gt; &lt;/logger&gt; ... </code></pre> <p><strong>castle windsor container builder class:</strong></p> <pre><code>container.AddFacility("logging.facility", new LoggingFacility(LoggerImplementation.Log4net, "log4net.config")); </code></pre> <p><strong>class in which to log:</strong></p> <pre><code>private ILogger Logger; public Test(ILogger logger) { Logger.Info("Can I log under event log only?"); Logger.Info("Now can I log under both?"); } </code></pre> <p>Thanks guys.</p> http://stackoverflow.com/questions/1550766/box2d-documentation-outdated-any-better-api-refs 0 Box2d Documentation - Outdated, any better api refs? GONeale 2009-10-11T14:04:22Z 2009-11-02T19:57:38Z <p>Hi guys,</p> <p>I am working with cocos2d + box2d and as I look through the 'Hello World' tutorial and attempt others I am finding many constructs which do not seem to be documented in the latest api ref.</p> <p>Would anybody be able to shed some light on what's going on? or point me in the right direction to someone who has covered the new constructs such as b2PolygonDef changing to b2PolygonShape and likewise for circle + who knows what else, seems there has not been any doc updates since August '09.</p> <p>This is the only information I could find on the issue, of another user stating they have found many mismatches also.</p> <p><a href="http://www.cocos2d-iphone.org/forum/topic/1683" rel="nofollow">http://www.cocos2d-iphone.org/forum/topic/1683</a></p> http://stackoverflow.com/questions/1629353/use-enum-as-parameter-in-windsor-configuration-file 0 Use Enum as Parameter in Windsor Configuration File GONeale 2009-10-27T08:04:55Z 2009-10-27T08:23:06Z <p>Hi guys, how would I preset a Windsor configuration file parameter with an Enum specified entry such as "EntryType" below?</p> <p>I currently have this:</p> <pre><code>&lt;component id="test.service" service=".." type=".." lifestyle="transient"&gt; &lt;parameters&gt; &lt;entryType&gt;EntryType.Test&lt;/entryType&gt; &lt;/parameters&gt; &lt;/component&gt; </code></pre> <p>Where <code>..</code> obviously represents the full namespace and assembly.</p> <p>But receiving this error:</p> <pre><code>Could not convert from 'EntryType.Test' to Business.Common.Services.Core.TestService+EntryType. </code></pre> http://stackoverflow.com/questions/1512762/any-chance-of-cocos2d-within-monotouch 0 Any chance of cocos2d within MonoTouch? GONeale 2009-10-03T04:13:15Z 2009-10-22T22:24:02Z <p>After learning more about how monotouch works, I believe I know the answer to this anyway, but can you use the cocos2d-iphone framework with monotouch? I believe most likely this will be a 'no', because cocos2d is an an objective c library and there would most probably have to be some sort of .net port for this to be achieved? is that so?</p> <p>I haven't done any monotouch dev as yet, but a little objective c development with cocos2d and am quite fond of the framework, and was hoping to avoid, as I'm quite new to game dev, steeping into the dark realm of straight opengl programming via the openTK interface supported by monotouch.</p> <p>I have also started a community wiki <a href="http://stackoverflow.com/questions/1512760/options-for-game-development-with-monotouch">here</a> for people to share game development options on monotouch which should help us all with this emerging framework.</p> http://stackoverflow.com/questions/1513390/bring-iphone-simulator-to-front-of-screen-on-build 1 Bring iPhone Simulator to front of screen on build? GONeale 2009-10-03T10:02:48Z 2009-10-19T19:34:28Z <p>When I build using MonoDevelop using the MonoTouch framework it appears the iPhone Simulator always loads in the background, is there any way to bring this to the front instead of always having to click it in the dock to bring it up?</p> <p>Can't find anything in preferences.</p> http://stackoverflow.com/questions/1552338/cast-from-filtered-custom-listt-with-linq 3 Cast from filtered custom List<T> with LINQ GONeale 2009-10-12T01:46:16Z 2009-10-12T02:04:08Z <p>I have a custom list which inherits from <code>Generic.List&lt;T&gt;</code> like this:</p> <pre><code>public class TransferFileList&lt;T&gt; : List&lt;TransferFile&gt; { .. } </code></pre> <p>When I set (where '<code>Files</code>' is a <code>TransferFileList&lt;T&gt;</code>):</p> <pre><code>var files = uploadResponse.Files.Where(x =&gt; !x.Success).ToList() </code></pre> <p>the '<code>files</code>' object resolves as <code>System.Collections.Generic.List&lt;TransferFile&gt;</code>, not <code>TransferFileList&lt;T&gt;</code>, which is what I would expect as it was what was being filtered through the <code>Where</code>, so how could I successfully return a list of <code>TransferFileList&lt;T&gt;</code> into 'files'?</p> <p>I did try:</p> <pre><code>var files = uploadResponse.Files.Where(x =&gt; !x.Success).ToList() as TransferFileList&lt;TransferFile&gt;; </code></pre> <p>but using that safe cast, it just resolves as null.</p> <p>Thanks guys and gals.</p> http://stackoverflow.com/questions/1552338/cast-from-filtered-custom-listt-with-linq/1552366#1552366 0 Answer by GONeale for Cast from filtered custom List<T> with LINQ GONeale 2009-10-12T01:57:31Z 2009-10-12T01:57:31Z <p>Thanks guys.</p> <p>I like SLV's extension approach, but is there any other straight casting approach?</p> <p>If not I might just go with the reverted in-line approach I was hoping to avoid:</p> <pre><code>var transferFiles = new TransferFileList&lt;TransferFile&gt;(); if (files != null) transferFiles.AddRange(files); </code></pre> http://stackoverflow.com/questions/1512760/options-for-game-development-with-monotouch 1 Options for game development with MonoTouch GONeale 2009-10-03T04:11:21Z 2009-10-10T17:32:06Z <p>What options are there for game developers in regards to working with the <a href="http://monotouch.net" rel="nofollow">MonoTouch</a> framework?</p> <ol> <li>Is OpenGL fully supported? Or just a subset?</li> <li>Is there any additional tools, frameworks or engines that would be compatible with MonoTouch? Would these libraries also have to be written in .NET?</li> <li>Do you have any other tips?</li> </ol> <p>Thanks all.</p> http://stackoverflow.com/questions/1365743/what-software-license-to-use-for-commercial-software 4 What software license to use for commercial software? GONeale 2009-09-02T03:48:37Z 2009-09-02T04:20:49Z <p>Hey there,</p> <p>Under what license agreement should you release software under if it's closed-source and for commercial use only? Are there multiple license types? (such with open source you have BSD, GNU/GPL etc..) </p> <p>If so, which one do I choose, and are there samples out there to get you started? I have heard the term and seen documents named EULA.txt for an End User License Agreement, but can't seem to find a definitive guide on the net as to how to structure one but do see this included with nearly every commercial app I have installed and don't know if it's as simple just to "change to suit your business".</p> <p>Can anyone shed some more light on this? Thanks guys.</p> <p>For further details - our software is non-redistributable, non-modifiable and the user is charged yearly.</p> http://stackoverflow.com/questions/1298175/conditional-regex-replace-if-value-less-than-nnnn 0 Conditional regex replace if value less than "nnnn" GONeale 2009-08-19T06:49:09Z 2009-08-19T08:48:05Z <p>Hi there,</p> <p>Not sure if this is possible with a regular expression replace command, but I have an existing regex replace which will convert the last two digits of a number to the same last two digits prefixed with a full stop. This is for interfacing to a system which sends through currency values as "2500" where this represents "25.00" dollars.</p> <p>My existing regex: <code>(\d+)(\d{2})$</code><br /> With replace syntax of: <code>$1.$2</code></p> <p>Now I have a problem though, if a value is sent through as "50" only for example, this could represent 0.50 and my regex will fail because it is searching for 1+ numeric on the left, and two numeric exactly at the end of the string.</p> <p>How could I cover all these circumstances and have my regex replace replace thusly:</p> <pre><code>2500 = 25.00 500 = 5.00 50 = 0.50 5 = 0.05 </code></pre> <p>Thanks again, Graham</p> <p><strong>Update: For those asking why this cannot be a divide and string format job is because I have to avoid custom programming to achieve this. It must ideally be a regex "rule" defined in a database along with other regex definitions as it's being used for a generic translation system. It will translate incoming data which could come in multiple format types, generally translating a field from "101" to "101A" for example, but in this particular case for this data type, adding values is required.</strong></p> <p><strong>Second update: I've been thinking more about this, because I am bound to a database, would anybody see a better way than using a %wackyMoney% or some other 'token' defined in the db field and then test if we hit this token in code to apply the C# string formatting and divide?</strong></p> http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/1298256#1298256 0 Answer by GONeale for Use of var keyword in C# GONeale 2009-08-19T07:14:33Z 2009-08-19T07:14:33Z <p>You don't have to write out the type name and no this is not less performant as the type is resolved at compile time.</p> http://stackoverflow.com/questions/1181700/set-cursor-position-on-contenteditable-div 2 Set cursor position on contentEditable <div> GONeale 2009-07-25T09:18:17Z 2009-08-18T08:16:45Z <p>Hi There,</p> <p>I am after a definitive, cross-browser solution to set the cursor/caret position to the last known position when a contentEditable='on' &lt;div> regains focus. It appears default functionality of a content editable div is to move the caret/cursor to the beginning of the text in the div each time you click on it, which is undesirable.</p> <p>I believe I would have to store in a variable the current cursor position when they are leaving focus of the div, and then re-set this when they have focus inside again, but I have not been able to put together, or find a working code sample yet.</p> <p>If anybody has any thoughts, working code snippets or samples I'd be happy to see them.</p> <p>Graham</p> <p>I don't really have any code yet but here is what I do have:</p> <pre><code>&lt;script type="text/javascript"&gt; // jQuery $(document).ready(function() { $('#area').focus(function() { .. } // focus I would imagine I need. } &lt;/script&gt; &lt;div id="area" contentEditable="true"&gt;&lt;/div&gt; </code></pre> <p><em>PS. I have tried this resource but it appears it does not work for a &lt;div>. Perhaps only for textarea (<a href="http://stackoverflow.com/questions/1125292/how-to-move-cursor-to-end-of-contenteditable-entity">http://stackoverflow.com/questions/1125292/how-to-move-cursor-to-end-of-contenteditable-entity</a>)</em></p> http://stackoverflow.com/questions/1259371/replace-value-inside-brackets-using-regex-only-where-does-not-match 1 Replace value inside brackets using RegEx only where does not match GONeale 2009-08-11T09:43:45Z 2009-08-11T14:04:21Z <p>How can I replace the number inside the brackets for any strings not matching the word "Field". So the number inside 'SomethingElse' and 'SomethingMore' could be replaced to a new value, but any bracketed value to the right side of the term 'Field' would not be touched. Note, the word "Field" will always stay the same, so it can be referenced as a magic string in the regex.</p> <pre><code>Field[50].SomethingElse[30] Field[50].SomethingMore[30] </code></pre> <p>Thanks. PS. Using JavaScript.</p> http://stackoverflow.com/questions/1242758/what-is-correct-behaviour-of-updatemodel-in-asp-net-mvc 7 What is correct behaviour of UpdateModel in ASP.NET MVC? GONeale 2009-08-07T03:35:22Z 2009-08-08T07:22:12Z <p>I am interested to know what you guys feel should be deemed "correct behaviour" in terms of the <code>UpdateModel</code> method in ASP.NET MVC.</p> <p>The reason I ask here is perhaps if this functionality is "by design" somebody could clarify as to why it is the way it is, and perhaps a way to call it differently to achieve desired functionality, which I would imagine would be the way 90% of folk would want this to work?</p> <p>In essence, my gripe lies with the behaviour of the binding process within <code>UpdateModel</code>.</p> <p>Supposing you wish to update a form via a simple <code>Save</code> action method for which the data fields on the form reflects a model in your database, initially to go about saving the request, we might get the existing model from the DB, and then update relevant fields which which were changed, sent via <code>FormCollection</code> and then updated by <code>UpdateModel</code> to our existing model. This functions, however it appears any of the existing properties on this DB-populated object are being "reset"; and by that I mean, are being set to null or initialisation defaults just as if it was a brand new object, except for obviously those which match those in the <code>FormCollection</code>.</p> <p>This is a problem because any existing properties which exist on the object, but not necessarily exist on the form, such as any child collections or objects, dates or any non-UI facing fields are empty, leaving you with a half-populated, more or less unusable object which can't be saved to the DB because of all the missing data including probably a stack of ID's now set to 0.</p> <p>I believe this is not desirable behaviour, and <code>UpdateModel</code> should only update properties where it finds a property match in <code>FormCollection</code>. This would mean all your existing properties would be untouched, but your updates would be set. However, from what has been deduced so far, obviously this is not the case - it appears it instantiates a <em>brand new copy</em> of the object updates the properties from the form, then returns the new object.</p> <p>Finally, to put it in perspective of how much of a burden this is, the only way really around it to save a half-complex form and keep all your existing object data is to manually marry up <strong>each</strong> property with the corresponding form property to absolutely guarantee only properties that exist in the form are being updated.</p> <p>I guess,</p> <ol> <li>Those who agree this is by design, is my approach of form marrying the best way?</li> <li>Or, how have you tackled this in this?</li> </ol> <p>Please feel free to offer your thoughts on this guys, Thanks.</p> <p>Here is another instance of somebody suffering from this problem:<br> <a href="http://stackoverflow.com/questions/1207991/calling-updatemodel-with-a-collection-of-complex-data-types-reset-all-non-bound-v">http://stackoverflow.com/questions/1207991/calling-updatemodel-with-a-collection-of-complex-data-types-reset-all-non-bound-v</a></p> http://stackoverflow.com/questions/855483/wcf-encryption-solution-for-app-config-viewable-to-a-client 0 WCF Encryption solution for App.config viewable to a client? GONeale 2009-05-13T00:04:43Z 2009-08-05T13:24:54Z <p>I have a desktop application which contains an App.config (program.exe.config at release) with clearly visible elements which define my WCF endpoints and WCF implementation.</p> <p>I would ideally like to hide this from the users eyes, from simple hacking, view and change.</p> <p>Should I: -</p> <ol> <li>Programmatically create and store my WCF endpoints and binding configuration in code. or;</li> <li>Implement some protection scheme over the App.config (if so, what, how), effectively obfuscating/encrypting these elements from public view, but understandable from my code?</li> </ol> <p>I already utilise .NET Reactor to obfuscate and protect my program from reflection techniques.</p> <p><strong>Update 13-May-09 3:32 GMT+10 Alright well I managed to encrypt system.serviceModel but then it proved unusable when the app went to launch as an exception was thrown (System.TypeInitializationException: The type initializer for 'System.ServiceModel.DiagnosticUtility' threw an exception.)</strong></p> <pre><code> &lt;system.serviceModel&gt; &lt;!-- [bindings] --&gt; &lt;bindings configProtectionProvider="DPAPIProtection"&gt; &lt;EncryptedData&gt; &lt;CipherData&gt; &lt;CipherValue&gt;AQAAANCMnd8BFdERjHoAwE/Cl+... </code></pre> <p><strong>So there goes that idea. I'll either ditch this idea, or set my endpoints in code which is behind encryption.<br /> <br /> Isn't anybody else concerned about their endpoint addresses clearly visible in config???</strong></p> http://stackoverflow.com/questions/1225104/windows-form-click-on-background-to-move-window/1225116#1225116 2 Answer by GONeale for Windows Form Click on Background to move Window GONeale 2009-08-03T23:33:55Z 2009-08-03T23:33:55Z <p>Try this.</p> <p><a href="http://www.codeproject.com/KB/cs/csharpmovewindow.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/csharpmovewindow.aspx</a></p> http://stackoverflow.com/questions/1204571/cant-seem-to-get-includeproperties-working-on-updatemodel-in-asp-net-mvc 3 Can't seem to get IncludeProperties working on UpdateModel in ASP.NET MVC GONeale 2009-07-30T05:13:31Z 2009-08-03T23:31:26Z <p>Has anybody had luck with this?</p> <p>Please let me know if I understand it correctly, if I have a simple model let's say with:</p> <pre><code>public string Name { get; set; } public string Details { get; set; } public DateTime? Created { get; set; } </code></pre> <p>and then I perform a:</p> <pre><code>var myModel = getCurrentModelFromDb(id); UpdateModel(myModel, "ModelName", new string { "Name", "Details" }); </code></pre> <p>Should this <em>ONLY</em> update the name and detail properties? Because let's say there was a date already from db in 'created', when I do the above it seems to set my created date to 01-01-0001 from the original.</p> <p>Moreover, when I then try to explicitly exclude this field with:</p> <pre><code>UpdateModel(myModel, "ModelName", new string { "Name", "Details" }, new string { "Created" }); </code></pre> <p>It is still being set to 01-01-0001. Is this a bug, or a strange thing I am doing wrong?</p> <p>What I effectively want to do, is update my model properties for which there are corresponding form fields for, but leave the rest of them alone which were set from the db fetch alone and not set them to null or default, which is what it currently appears to be doing.</p> <p>I will say though, perhaps the only difference between above and my real-world scenario is I am using updateModel on a list, so I am effectively getting listFromDb(parentId) and then applying updateModel(myList, "ListPrefix") on that which picks up each item by [0], [1] etc... It works, as all the names are updating, but everything else is not.</p> <p><strong>Update: I've just realised probably 'includeProperties' is to define which properties you wish to include from the form, similar to how the bind works. If this *is* the case, then how can I tell it to only update <em>certain</em> model properties instead?</strong></p> http://stackoverflow.com/questions/1181726/asp-net-mvc-strange-routing-issue-very-simple-route-mismatch-problem/1181745#1181745 1 Answer by GONeale for ASP.NET MVC - Strange routing issue, very simple route mismatch problem GONeale 2009-07-25T09:37:08Z 2009-07-25T09:37:08Z <p>Works perfectly for me with your route. Try this simple configuration:</p> <pre><code>routes.MapRoute("LangOnly", "{language}", new {controller = "Home", action = "Index", language = "en"}, new {language = @"en|ja"}); routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); </code></pre> <p>And your action:</p> <pre><code>public ActionResult Index(string language) { ..... </code></pre> <p>(I am using "Index" as the action here, obviously change it to "Root" if that is in fact your action name.)</p> http://stackoverflow.com/questions/6231/whats-your-ideal-multiple-monitor-setup-for-programming/1140874#1140874 0 Answer by GONeale for What's your ideal multiple-monitor setup for programming? GONeale 2009-07-16T23:50:36Z 2009-07-16T23:50:36Z <p>Two monitors with <a href="http://goneale.com/2009/02/16/multi-dual-monitor-visual-studio-settings/" rel="nofollow">my own multi-monitor VS theme</a>.</p> <p>The idea of three does sound nice though to retain that central point.</p> http://stackoverflow.com/questions/891664/calculate-block-check-character-bcc-for-serial-communication 0 Calculate Block Check Character (BCC) for serial communication GONeale 2009-05-21T06:50:31Z 2009-06-23T00:00:00Z <p>Hi There,</p> <p>I am communicating with a device via serial via the SerialPort class of .NET and based on third-party device specification requirements I need to calculate a "block check character". The only information I am told is that it is an <strong>exclusive OR operation (XOR)</strong> and it must be performed over all characters.</p> <p>So if I have the string "Bob,001" how would one calculate the BCC?</p> http://stackoverflow.com/questions/1700435/calculate-upload-transfer-speed-problem/1700490#1700490 Comment by GONeale on Calculate upload transfer speed problem GONeale 2009-11-09T12:28:19Z 2009-11-09T12:28:19Z Thanks for your comment, well the loop does go fast every 1024 chunks, but this is also to update a progress bar smoothly, this all works and hasn't been a problem. I think I have fixed my issue by adjusting my average to wait one second to account for the burst, however still not sure why it bursts out like that. http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances/1677933#1677933 Comment by GONeale on logging in log4net to different appenders based on circumstances GONeale 2009-11-05T07:38:37Z 2009-11-05T07:38:37Z I guess if you could show me an example using the filter with my constructor featured in my test code above, it would help resolve my doubt to use a filter. http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances/1677933#1677933 Comment by GONeale on logging in log4net to different appenders based on circumstances GONeale 2009-11-05T07:37:26Z 2009-11-05T07:37:26Z Well, I didn't want to rely on including a special string in my log message to then filter upon to determine which appender it should write to. Seamless ability to send to different appenders through a Logger.Info() or whatever would have been nicer. That's all. http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances/1677933#1677933 Comment by GONeale on logging in log4net to different appenders based on circumstances GONeale 2009-11-05T02:39:05Z 2009-11-05T02:39:05Z Ok, well, I will take a look at filters. If I can get them to work through &lt;root&gt; without a specific logger name I might be ok. Thanks for your help. If you hear of how to access a logger instance by name with CW logging facility, let me know as I then could do it quite simply. Thnx Michael! http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances/1677933#1677933 Comment by GONeale on logging in log4net to different appenders based on circumstances GONeale 2009-11-05T02:32:33Z 2009-11-05T02:32:33Z Sorry, not 'wrapped' around that. &lt;root&gt; with the &lt;appender-ref&gt; pointing to that EventLogAppender. However my problem will actually still exist, as I can't seem to name a logger &quot;MyLogger&quot;. the log4net SDK won't help me, as this is a criteria I might need to specify through the logging facility.. http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances/1677933#1677933 Comment by GONeale on logging in log4net to different appenders based on circumstances GONeale 2009-11-05T02:30:58Z 2009-11-05T02:30:58Z Sorry, yes I understand you are talking about filters, but to get started for this appender to work at all, I assumed I still needed to access the logger by name. How would I get the appender to be picked up? Using &lt;root&gt; around appenders was working earlier, should I be trying that to wrap this filtered appender in, instead of an actual named logger? http://stackoverflow.com/questions/1677877/logging-in-log4net-to-different-appenders-based-on-circumstances/1677933#1677933 Comment by GONeale on logging in log4net to different appenders based on circumstances GONeale 2009-11-05T02:23:45Z 2009-11-05T02:23:45Z Thanks Michael, but I am still unsure of how to access my Logger by name. Using the logging facility in Castle Windsor, I don't instantiate a new instance by using LogManager.GetLogger(&quot;loggerName&quot;), an instance is passed through for me. http://stackoverflow.com/questions/1550766/box2d-documentation-outdated-any-better-api-refs/1663330#1663330 Comment by GONeale on Box2d Documentation - Outdated, any better api refs? GONeale 2009-11-05T02:15:04Z 2009-11-05T02:15:04Z Yeah. Sigh, oh well maybe one day it will get updated! http://stackoverflow.com/questions/1513390/bring-iphone-simulator-to-front-of-screen-on-build/1590642#1590642 Comment by GONeale on Bring iPhone Simulator to front of screen on build? GONeale 2009-11-02T00:41:51Z 2009-11-02T00:41:51Z Will test when I get a chance, thanks Niels http://stackoverflow.com/questions/1629353/use-enum-as-parameter-in-windsor-configuration-file/1629396#1629396 Comment by GONeale on Use Enum as Parameter in Windsor Configuration File GONeale 2009-10-27T08:48:04Z 2009-10-27T08:48:04Z Shamefully easy... Thanks. ;) http://stackoverflow.com/questions/1552338/cast-from-filtered-custom-listt-with-linq/1552348#1552348 Comment by GONeale on Cast from filtered custom List<T> with LINQ GONeale 2009-10-12T02:14:58Z 2009-10-12T02:14:58Z Thanks for your help six. http://stackoverflow.com/questions/1552338/cast-from-filtered-custom-listt-with-linq/1552352#1552352 Comment by GONeale on Cast from filtered custom List<T> with LINQ GONeale 2009-10-12T02:08:45Z 2009-10-12T02:08:45Z Worked a treat! and uses less memory :p, thanks! http://stackoverflow.com/questions/1552338/cast-from-filtered-custom-listt-with-linq/1552352#1552352 Comment by GONeale on Cast from filtered custom List<T> with LINQ GONeale 2009-10-12T02:03:27Z 2009-10-12T02:03:27Z @Rex Well! Maybe moving to an extension method might be best now! Thanks for your help. http://stackoverflow.com/questions/1552338/cast-from-filtered-custom-listt-with-linq/1552352#1552352 Comment by GONeale on Cast from filtered custom List<T> with LINQ GONeale 2009-10-12T02:02:55Z 2009-10-12T02:02:55Z @Rex oh yes, of course, silly me, obviously being in 'list' specified above with the 'this' attribute. http://stackoverflow.com/questions/1552338/cast-from-filtered-custom-listt-with-linq/1552352#1552352 Comment by GONeale on Cast from filtered custom List<T> with LINQ GONeale 2009-10-12T02:02:14Z 2009-10-12T02:02:14Z Thanks Rex, reluctantly I guess I have to introduce a new variable and new list assignment like you state. No problem though if it's the preferred method!