User Ryan ONeill - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:56:43Z http://stackoverflow.com/feeds/user/26221 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/981378/how-to-recognise-vehicle-licence-number-plate-anpr-from-an-image 3 How to recognise vehicle licence / number plate (ANPR) from an image? Ryan ONeill 2009-06-11T14:18:33Z 2009-12-03T13:33:22Z <p>Hi all,</p> <p>I have a web site that allows users to upload images of cars and I would like to put a privacy filter in place to detect registration plates on the vehicle and blur them.</p> <p>The blurring is not a problem but is there a library or component (open source preferred) that will help with finding a licence within a photo?</p> <p>Caveats;</p> <ol> <li>I know nothing is perfect and image recognition of this type will provide false positive and negatives.</li> <li>I appreciate that we could ask the user to select the area to blur and we will do this as well, but the question is specifically about finding that data programmatically; so answers such as 'get a person to check every image' is not helpful.</li> <li>This software method is called 'Automatic Number Plate Recognition' in the UK but I cannot see any implementations of it as libraries.</li> <li>Any language is great although .Net is preferred.</li> </ol> <p>Thanks in advance</p> <p>Ryan</p> http://stackoverflow.com/questions/1796853/help-with-sql-structure-for-creating-a-schedule-of-notifications/1796895#1796895 1 Answer by Ryan ONeill for Help with SQL structure for creating a schedule of notifications Ryan ONeill 2009-11-25T13:25:47Z 2009-11-25T13:25:47Z <p>Create a table valued function that accepts your two date ranges and that will return the 1st date in each month in that range. Then join to that function in a query. Sorry, can't give more detail, someone is hassling me on Skype (oh, it's you!). :)</p> http://stackoverflow.com/questions/1426787/how-do-i-group-by-a-property-in-an-object-collection-using-linq 1 How do I group by a property in an object collection using LINQ? Ryan ONeill 2009-09-15T12:09:43Z 2009-11-09T16:26:41Z <p>Hi,</p> <p>I have a collection of objects as <code>Dim XXX As IEnumerable(Of MyObject)</code> which has been populated. There is a property in MyObject that I want to group by, for example MyObject.MyCode.</p> <p>Looking through the LINQ examples it is not clear what the <code>Group XX By INTO</code> syntax is doing and I can't understand it.</p> <p>So what I'm after is the ability to group by the value of MyCode and see how many of each value I have in XXX.</p> <p>I know I've not explained it well, but hopefully a LINQ person will get it.</p> <p>Thanks</p> <p>Ryan</p> http://stackoverflow.com/questions/1661649/outofmemoryexception-during-remote-method-call/1662189#1662189 1 Answer by Ryan ONeill for OutOfMemoryException during remote method call Ryan ONeill 2009-11-02T16:10:12Z 2009-11-02T16:10:12Z <p>I think you know the answer, 38mb is WAY too big to do over a remote call. What will help diagnose it further would be to show a complete example by simplfying your problem to just two functions running locally.</p> <p>This will help detect if it is the size of the dataset or a size constraint in the remote interface / network configuration.</p> <p>Additionally having a working sample would allow someone else to replicate the issue and see the type information (for example, we can't see what object type is throwing the exception and can't look up any constraints in MSDN). I'm sure with this someone would be able to provide a definitive answer.</p> <p>The act of reducing your code to a sample will in itself probably enable you to find the cause.</p> <p>Ryan</p> http://stackoverflow.com/questions/1556629/asp-net-requiredfieldvalidator-not-letting-me-navigate-away-from-an-aspwizard/1556757#1556757 0 Answer by Ryan ONeill for ASP.NET RequiredFieldValidator not letting me navigate away from an asp:Wizard Ryan ONeill 2009-10-12T20:34:08Z 2009-10-12T20:34:08Z <p>Could you put another button outside of the wizard labelled 'Cancel' or 'Skip' and set the CausesValidation property to False?</p> http://stackoverflow.com/questions/1536833/are-there-any-good-image-hosting-uploading-and-manipulation-services-for-embeddi 0 Are there any good image hosting, uploading and manipulation services for embedding in ASP.Net sites? Ryan ONeill 2009-10-08T10:09:09Z 2009-10-08T10:09:09Z <p>I'm trying to offload the image editing, uploading, resizing etc from the administration section of my sites but I'm finding it hard to find a consistently good service that does the lot. Any recommendations for services that have a .Net client or useable with ease from ASP.Net would be very welcome.</p> <p>What I'm after is an API or Flash / Silverlight editor so that I can host the editing on my site but upload to the service. I can see Picnik works well but then you need to tie it up with a Flickr or similar. It does not look like Picnik handles separation of photos (for different users on my site).</p> <p>Maybe Picnik / Flickr is the way to go but it seems like a lot of coding to get what I want. Ideally, something like the API model Google Maps uses where you can get a system up and running in minutes.</p> <p>Yes I know, not a direct programming question but it is relevant.</p> http://stackoverflow.com/questions/1421006/is-there-a-tool-for-net-that-creates-a-programme-dependency-flow-chart-from-il 1 Is there a tool for .Net that creates a programme / dependency flow chart from IL / source? Ryan ONeill 2009-09-14T11:30:45Z 2009-09-14T11:38:58Z <p>I am trying to see how a bunch of .Net functions are used throughout a very large project and I would like to visually chart them so I can see the flow from / to each function.</p> <p>There are only a few functions I want to track so it is not an exhaustive view.</p> <p>Thanks</p> <p>Ryan</p> http://stackoverflow.com/questions/1392852/how-do-i-send-a-pdf-in-a-memorystream-to-the-printer-in-net 0 How do I send a PDF in a MemoryStream to the printer in .Net? Ryan ONeill 2009-09-08T09:05:28Z 2009-09-08T09:28:35Z <p>I have a PDF created in memory using iTextSharp and contained in a MemoryStream. I now need to translate that MemoryStream PDF into something the printer understands.</p> <p>I've used Report Server in the past to render the pages to the printer format but I cant use it for this project.</p> <p>Is there a native .Net way of doing this? For example, GhostScript would be OK if it was a .Net assembly but I don't want to bundle any non .Net stuff along with my installer.</p> <p>The PrintDocument class in .Net is great for sending content to the printer but I still need to translate it from a PDF stream into GDI at the page level.</p> <p>Any good hints?</p> <p>Thanks in advance</p> <p>Ryan</p> http://stackoverflow.com/questions/1327599/using-a-var-based-on-an-enum-in-a-where-clause-in-entity-framework-throws-an-exce 0 Using a var based on an enum in a Where clause in Entity Framework throws an exception. Ryan ONeill 2009-08-25T11:15:14Z 2009-08-25T12:48:49Z <p>I have the following code which throws an exception (detail in code comments below). I am merely trying to use an instance of an enum as part of the Where clause. I understand the message, but I don't understand why EF cannot parse an Int32 enum.</p> <p>It works if I copy the enum to an Int32 and then filter on that, but it seems very messy.</p> <pre><code> Enum MyEnum As Int32 Zero One Two End Enum Shared Function GetStuff(ByVal EnumValue As MyEnum) As IQueryable Dim Db As New MainDb Dim DetailList As IQueryable Dim MyInt As Int32 = EnumValue ' PostalProviderId is an Int column in SQL. 'DetailList = From D In Db.DeliveryService Where D.PostalProviderId = EnumValue ' This fails. DetailList = From D In Db.DeliveryService Where D.PostalProviderId = MyInt ' This works. ' The following attempt to enumerate the results yields; ' **** System.NotSupportedException was unhandled by user code ' **** Message = "Unable to create a constant value of type 'Closure type'. Only primitive types ('such as Int32, String, and Guid') are supported in this context." ' **** Source = "System.Data.Entity" For Each Thingy In DetailList Console.WriteLine(Thingy.ToString()) Next Return DetailList End Function </code></pre> <p>Is there a more elegant solution than copying the enum values to a local int?</p> http://stackoverflow.com/questions/427838/is-there-a-service-for-monitoring-secured-wcf-endpoints-in-the-same-way-that-http 1 Is there a service for monitoring secured WCF endpoints in the same way that HTTP monitoring services do? Ryan ONeill 2009-01-09T12:04:18Z 2009-08-23T15:00:02Z <p>Hi all,</p> <p>A service I have in WCF occasionally goes down due a problem with a COM component. While I am troubleshooting I would like to setup another host to make regular calls to this service to monitor availability.</p> <p>It is slightly more complicated that a simple HTTP call though as the service is secured by SSL and WCF authentication (username / password). I'd also like to be able to parse successful calls to see if they return warning / fail states from my code.</p> <p>Would you recommend any monitoring providers for this or is it beyond the simple monitoring they normally provide?</p> <p>Regards</p> <p>Ryan</p> http://stackoverflow.com/questions/1151105/sifr-cant-render-capital-l-on-crayon-font-any-ideas/1212934#1212934 0 Answer by Ryan ONeill for sIFR can't render capital L on Crayon font -- any ideas? Ryan ONeill 2009-07-31T14:42:19Z 2009-07-31T14:42:19Z <p>Two options, it is either the font or sifr. So use a later / earlier version of sifr or get the font in another format.</p> <p>Additionally, try setting bold, italic, or any formatting options (it seems sifr has some issues with these sometimes).</p> <p>Not much help, but in my opinion it is a bug with sifr.</p> <p>Ryan</p> http://stackoverflow.com/questions/1211983/asp-net-application-object-looses-values/1212081#1212081 0 Answer by Ryan ONeill for ASP.NET Application Object looses values Ryan ONeill 2009-07-31T11:41:18Z 2009-07-31T11:41:18Z <p>Could it possibly be that the machine.config has set the server session state to Off and you do not have an override in your web.config?</p> <p>Alternatively it might be the 'zone' that the URL is in. IE acts differently for Intranet, External sites. Add it to the list of trusted sites and try again.</p> http://stackoverflow.com/questions/1193058/how-to-prevent-non-local-access-using-asp-net-windows-forms-authentication/1193073#1193073 2 Answer by Ryan ONeill for How to prevent non-local access, using ASP.NET windows forms authentication Ryan ONeill 2009-07-28T09:51:46Z 2009-07-28T09:51:46Z <p>I don't think there is anything native in forms authentication that will do that. You'll either have to;</p> <ol> <li>Extend forms authentication to cope with this (I think it is sealed in places though).</li> <li>Have all of the items in that folder inherit from a base class that checks the IP address of the caller.</li> <li>Use IIS to lock down that directory to local clients (in IIS7 this can be done in .config I believe).</li> <li>Add a HTTP handler to intercept calls to that directory and redirect them if not local (this might be easiest).</li> </ol> <p>Hope that helps, a little vague but a starting point.</p> http://stackoverflow.com/questions/1178640/how-do-i-use-a-common-class-between-winforms-client-and-web-service 1 How do I use a common class between winforms client and web service? Ryan ONeill 2009-07-24T16:07:23Z 2009-07-24T16:43:16Z <p>I have inherited a large admin winforms application that shares a 'Common' library of classes for holding data with a web service. The problem I am having is that if I return a populated instance of a class from a web service call then it comes out on the client as a different type and I cannot use the other 'Common' project logic to manipulate.</p> <p>This is because although the web service will return an object of type Common.Widget it will then wrap that object up in order to transfer it over the wire. Once this is done I can't cast the object back to the 'common' type because .Net throws an InvalidCastException.</p> <p>I've done this with WCF and the DataMember attribute but I can't upgrade this project to WCF right now as it is very large and the test server is Win2K (no .Net 3+ for Win2K).</p> <p>So is there a way for me to do this easily or do I have to translate all of the data I get from the web service back to the raw types in the common library?</p> <p>Thanks in advance</p> <p>Ryan</p> http://stackoverflow.com/questions/1133446/msbuild-unable-to-copy-file-in-ci-environment/1138636#1138636 0 Answer by Ryan ONeill for MSBuild "Unable to copy file" in CI environment Ryan ONeill 2009-07-16T16:04:16Z 2009-07-16T16:04:16Z <p>Use Handle.exe from SysInternals (Microsoft) to see which files are being held open by which processes.</p> <p>Run this at a cmd prompt when you get the error; Handle.exe > OpenFile.txt Notepad.exe OpenFile.txt</p> <p>Then search OpenFile.txt for the file that is locked and you'll see the process.</p> <p>Ryan</p> http://stackoverflow.com/questions/1131678/sql-select-joined-string-for-set-of-ids/1131821#1131821 0 Answer by Ryan ONeill for SQL select joined string for set of ids Ryan ONeill 2009-07-15T14:39:47Z 2009-07-15T14:39:47Z <p>If you normalise your data into three tables then the following works for what you want to do. This is using my own schema as I had to knock up some tables to test it).</p> <pre><code>Select UserId, UserName, ( Select CountryName + ',' From Country As C Inner Join UserCountry As UC On C.CountryId = UC.CountryId Where UC.UserId = [User].UserId ORDER BY CountryName FOR XML PATH('') ) As Countries </code></pre> <p>From [User];</p> http://stackoverflow.com/questions/1109412/generating-pdf-files-from-net-by-using-standard-net-gdi-printing-classes/1109687#1109687 0 Answer by Ryan ONeill for Generating PDF files from .NET by using standard .NET GDI printing classes Ryan ONeill 2009-07-10T13:55:34Z 2009-07-10T13:55:34Z <p>A product called Amyuni does this (I use it in a project) but I don't like the licencing, you may get on fine with it.</p> <p>See Amyuni.com</p> <p>Ryan</p> http://stackoverflow.com/questions/1109569/do-intel-and-amd-processor-have-the-same-assembler/1109598#1109598 2 Answer by Ryan ONeill for Do Intel and AMD processor have the same assembler? Ryan ONeill 2009-07-10T13:42:25Z 2009-07-10T13:42:25Z <p>AMD are Intel compatible, otherwise they would never have gained a foothold in the market place.</p> <p>They are effectively clone compatible.</p> <p>Ryan</p> http://stackoverflow.com/questions/1103524/using-a-bitwise-flag-for-a-primary-key/1103536#1103536 2 Answer by Ryan ONeill for Using a bitwise flag for a primary key? Ryan ONeill 2009-07-09T12:29:59Z 2009-07-09T12:29:59Z <p>Nice idea, can't see how it would benefit from being done in a relational database though. I think if you are in SQL you pretty much have to use standard keys, otherwise what is the point of the expensive storage you have?</p> <p>Perhaps it would be better suited to file based storage where each table is in a different file. Or, have it as an additional column but don't put a primary key on it.</p> <p>P.S. Wouldn't it fall over if two users are in the same groups?</p> <p>Ryan</p> http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object 4 How can I write to my own app.config using a strongly typed object? Ryan ONeill 2009-06-25T15:07:23Z 2009-07-08T20:25:37Z <p>The following code has two flaws, I can't figure out if they are bugs or by design. From what I have seen it should be possible to write back to the app.config file using the Configuration.Save and according to <a href="http://www.codeproject.com/KB/cs/SystemConfiguration.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/SystemConfiguration.aspx</a> the code should work.</p> <p>The bugs are shown in the source below and appear when you try to set the property or save the config back out.</p> <pre><code>Imports System.Configuration Public Class ConfigTest Inherits ConfigurationSection &lt;ConfigurationProperty("JunkProperty", IsRequired:=True)&gt; _ Public Property JunkProperty() As String Get Return CStr(Me("JunkProperty")) End Get Set(ByVal value As String) ' *** Bug 1, exception ConfigurationErrorsException with message "The configuration is read only." thrown on the following line. Me("JunkProperty") = value End Set End Property Public Sub Save() Dim ConfigManager As Configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None) ' The add / remove is according to http://www.codeproject.com/KB/cs/SystemConfiguration.aspx ConfigManager.Sections.Remove("ConfigTest") ' *** Bug 2, exception InvalidOperationException thrown with message "Cannot add a ConfigurationSection that already belongs to the Configuration." ConfigManager.Sections.Add("ConfigTest", Me) ConfigManager.Save(ConfigurationSaveMode.Full, True) End Sub Public Shared Sub Main() Dim AppConfig As ConfigTest = TryCast(ConfigurationManager.GetSection("ConfigTest"), ConfigTest) AppConfig.JunkProperty = "Some test data" AppConfig.Save() End Sub ' App.Config should be: ' &lt;?xml version="1.0" encoding="utf-8" ?&gt; '&lt;configuration&gt; ' &lt;configSections&gt; ' &lt;section name="ConfigTest" type="ConsoleApp.ConfigTest, ConsoleApp" /&gt; ' &lt;/configSections&gt; ' &lt;ConfigTest JunkProperty="" /&gt; '&lt;/configuration&gt; End Class </code></pre> <p>I'd like to do it this way so that on the first run of the app I check for the properties and then tell the user to run as admin if they need to be set, where the UI would help them with the settings. I've already 'run as admin' to no effect.</p> http://stackoverflow.com/questions/1099134/what-is-the-best-way-to-return-two-lists-in-c/1099160#1099160 0 Answer by Ryan ONeill for What is the best way to return two lists in C#? Ryan ONeill 2009-07-08T16:28:38Z 2009-07-08T16:28:38Z <p>Create a simple Structure that holds both and return that as the output of the function?</p> http://stackoverflow.com/questions/1099133/what-is-the-point-of-a-build-server/1099145#1099145 2 Answer by Ryan ONeill for What is the point of a "Build Server"? Ryan ONeill 2009-07-08T16:26:57Z 2009-07-08T16:26:57Z <p>For consistent quality and to get the build 'off your machine' to spot environment errors and so that any files you forget to check in to source control also show up as build errors.</p> <p>I also use it to create installers as these take a lot of time to do on the desktop with code signing etc.</p> http://stackoverflow.com/questions/1099071/retrieve-public-ip-address-in-visual-basic/1099107#1099107 0 Answer by Ryan ONeill for Retrieve Public IP Address in Visual Basic Ryan ONeill 2009-07-08T16:20:08Z 2009-07-08T16:20:08Z <p>If all of your users are in a Windows domain or workgroup then you can find that in the ServerVariables collection somewhere as part of NTLM authentication I think.</p> http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object/1079439#1079439 0 Answer by Ryan ONeill for How can I write to my own app.config using a strongly typed object? Ryan ONeill 2009-07-03T13:48:13Z 2009-07-03T13:48:13Z <p>Looks like it is not possible by design. App.config is normally protected as it resides along with the app in the Program Files directory so must be amended at installation time by the installer.</p> <p>Pity really, I'd like the app to have settings that an admin can set.</p> http://stackoverflow.com/questions/1068982/how-to-add-more-than-65-535-columns-in-a-data-grid-view-in-c-windows-application/1069024#1069024 2 Answer by Ryan ONeill for How to add more than 65,535 columns in a data grid view in C# windows application? Ryan ONeill 2009-07-01T13:00:38Z 2009-07-01T13:00:38Z <p>Use a virtual list (loads only the rows that are visible). I'm not sure that WinForms ListView has a virtual mode but the WPF one does.</p> <p>So create a WPF user control and set it up for VirtualMode = True and host that user control on your WinForms client with an ElementHost container.</p> <p>Sorry I can't be more specific, I don't have the code to hand.</p> <p>Ryan</p> http://stackoverflow.com/questions/951233/adding-an-activex-dll-to-a-net-project-as-reference-works-on-one-devs-machine/955019#955019 0 Answer by Ryan ONeill for Adding an ActiveX dll to a .Net project as reference works on one dev's machine, but not on another one? Ryan ONeill 2009-06-05T09:30:54Z 2009-06-05T09:30:54Z <p>The difference between the developers machines is environment, so you can guess that the developer whose machine it works on has something else set differently.</p> <p>My guess is that it is either plain old environment (vars maybe) but more likely a dependency in the SapExtractor.dll. Use FileMon when you try to add a reference to see the file that is not getting found.</p> <p>Also you can use Depends.exe for seeing which files SapExtractor.dll depends on.</p> <p>Google for both tools, both from MS and very reputable.</p> <p>Ryan</p> http://stackoverflow.com/questions/454277/how-to-enable-ssl-for-smtpclient-in-web-config/936575#936575 1 Answer by Ryan ONeill for How to enable SSL for SmtpClient in Web.config Ryan ONeill 2009-06-01T20:21:32Z 2009-06-01T20:21:32Z <p>Ah, there is a way to do it for the 'forgot password' built in .net login controls though.</p> <p>See <a href="http://blogs.msdn.com/vikas/archive/2008/04/29/bug-asp-net-2-0-passwordrecovery-web-control-cannot-send-emails-to-ssl-enabled-smtp-servers.aspx" rel="nofollow">http://blogs.msdn.com/vikas/archive/2008/04/29/bug-asp-net-2-0-passwordrecovery-web-control-cannot-send-emails-to-ssl-enabled-smtp-servers.aspx</a></p> <p>Ryan</p> http://stackoverflow.com/questions/802674/temporary-table-issue-in-reporting-services-2000/802695#802695 0 Answer by Ryan ONeill for Temporary table issue in Reporting Services 2000 Ryan ONeill 2009-04-29T14:46:41Z 2009-04-29T14:46:41Z <p>The only way is an obvious one, make your temp table a permanent one and do the management of it yourself (deleting rows after use etc). This could be faster as well as indexable and you can add keys as needed to ensure integrity. It can also act as a cache for long running queries.</p> <p>If you are certain that there will only ever be one user calling the sp then you can dump the data from the table using truncate rather than delete.</p> <p>Not much help, but I never found any other way of doing it.</p> http://stackoverflow.com/questions/794359/how-do-i-snoop-on-another-processes-memory-from-net 1 How do I snoop on another processes memory from .Net? Ryan ONeill 2009-04-27T16:52:39Z 2009-04-27T16:57:30Z <p>I'd like to attach to another process from a .Net console app and explore the data area. Specifically I would like to attach to the 'Spider Solitaire' app in Windows Vista as I am interested in seeing if the cards it deals out are solveable in all situations.</p> <p>Is this possible and if so which APIs should I be looking at?</p> <p>This is a 'just for fun' project so I can expand my knowledge.</p> <p>Ryan</p> http://stackoverflow.com/questions/794323/iis-6-0-and-asp-net-could-not-write-to-output-file-the-directory-name-is-in/794337#794337 1 Answer by Ryan ONeill for IIS 6.0 and ASP.NET - Could not write to output file ... The directory name is invalid Ryan ONeill 2009-04-27T16:45:09Z 2009-04-27T16:45:09Z <p>Use SysInternals FileMon (or ProcMon if you like) to see the real file it is bitching about. You can restrict it to just monitoring IIS if you have a busy server, although I'd start with all processes and just capture a couple of seconds of output.</p> <p>Before running, ensure IIS has been reset using iisreset /restart so that the error is not cached from before.</p> <p>Ryan</p> http://stackoverflow.com/questions/1796853/help-with-sql-structure-for-creating-a-schedule-of-notifications/1796895#1796895 Comment by Ryan ONeill on Help with SQL structure for creating a schedule of notifications Ryan ONeill 2009-11-25T13:30:46Z 2009-11-25T13:30:46Z No you don't, I'll create some SQL then. Although a calendar lookup would be faster (and you could include stuff like 'avoid december as it is a big booze up). http://stackoverflow.com/questions/1661649/outofmemoryexception-during-remote-method-call Comment by Ryan ONeill on OutOfMemoryException during remote method call Ryan ONeill 2009-11-02T14:41:52Z 2009-11-02T14:41:52Z Can you provide a code sample please? http://stackoverflow.com/questions/218681/opening-xps-document-in-net-causes-a-memory-leak/219165#219165 Comment by Ryan ONeill on Opening XPS document in .Net causes a memory leak Ryan ONeill 2009-10-02T10:07:37Z 2009-10-02T10:07:37Z Aha! At last, someone believes me, I'm not mad, see! Can I leave now doctor? Seriously, I can't remember. I think I just fiddled as you say, but how the hell I found such an obscure fix I can't recall. http://stackoverflow.com/questions/1392852/how-do-i-send-a-pdf-in-a-memorystream-to-the-printer-in-net/1392958#1392958 Comment by Ryan ONeill on How do I send a PDF in a MemoryStream to the printer in .Net? Ryan ONeill 2009-09-08T10:36:38Z 2009-09-08T10:36:38Z From Adobe 'In order to use the OLE objects made available by Acrobat, you must have the full Acrobat product installed on your system and the Acrobat.tlb file included in the project references for your Visual Basic project.'. So no go on the purely programmatic route. http://stackoverflow.com/questions/1392852/how-do-i-send-a-pdf-in-a-memorystream-to-the-printer-in-net/1392958#1392958 Comment by Ryan ONeill on How do I send a PDF in a MemoryStream to the printer in .Net? Ryan ONeill 2009-09-08T10:24:20Z 2009-09-08T10:24:20Z It works in the latest version, but means I'll have to do a little work to hide the window and kill the process in the background. But that's a ton better than installing another component. http://stackoverflow.com/questions/1392852/how-do-i-send-a-pdf-in-a-memorystream-to-the-printer-in-net/1392958#1392958 Comment by Ryan ONeill on How do I send a PDF in a MemoryStream to the printer in .Net? Ryan ONeill 2009-09-08T10:06:20Z 2009-09-08T10:06:20Z I thought there were issues with the window staying open and the newest version not having print support via the cmd line. I'll check though, thanks. http://stackoverflow.com/questions/1392852/how-do-i-send-a-pdf-in-a-memorystream-to-the-printer-in-net/1392902#1392902 Comment by Ryan ONeill on How do I send a PDF in a MemoryStream to the printer in .Net? Ryan ONeill 2009-09-08T09:17:27Z 2009-09-08T09:17:27Z The C# wrapper sounds handy, I'd appreciate it. Thanks http://stackoverflow.com/questions/1327599/using-a-var-based-on-an-enum-in-a-where-clause-in-entity-framework-throws-an-exce/1328080#1328080 Comment by Ryan ONeill on Using a var based on an enum in a Where clause in Entity Framework throws an exception. Ryan ONeill 2009-08-25T13:03:32Z 2009-08-25T13:03:32Z Bit of a naff bug that. Thanks. http://stackoverflow.com/questions/981378/how-to-recognise-vehicle-licence-number-plate-anpr-from-an-image/1254048#1254048 Comment by Ryan ONeill on How to recognise vehicle licence / number plate (ANPR) from an image? Ryan ONeill 2009-08-11T10:23:02Z 2009-08-11T10:23:02Z I've converted a couple of the classes, but it is going to take some time. http://stackoverflow.com/questions/69384/opinion-of-hosted-svn-providers/870639#870639 Comment by Ryan ONeill on Opinion of Hosted SVN providers? Ryan ONeill 2009-08-06T10:33:59Z 2009-08-06T10:33:59Z The poster asked for SVN options, not an alternative to SVN. http://stackoverflow.com/questions/1237716/how-do-i-add-multiple-integer-values-in-c Comment by Ryan ONeill on How do I add multiple integer values in C#? Ryan ONeill 2009-08-06T08:54:56Z 2009-08-06T08:54:56Z Can you reformat your code and restate your question as they are both hard to understand? http://stackoverflow.com/questions/981378/how-to-recognise-vehicle-licence-number-plate-anpr-from-an-image/1206823#1206823 Comment by Ryan ONeill on How to recognise vehicle licence / number plate (ANPR) from an image? Ryan ONeill 2009-07-31T10:34:16Z 2009-07-31T10:34:16Z Nope, nothing yet. I'm so busy that unless I get paid to do something it does not get done. I keep meaning to look into it for an open source .Net project. http://stackoverflow.com/questions/1178640/how-do-i-use-a-common-class-between-winforms-client-and-web-service/1178809#1178809 Comment by Ryan ONeill on How do I use a common class between winforms client and web service? Ryan ONeill 2009-07-24T17:25:30Z 2009-07-24T17:25:30Z It does some rather nasty re-creation of all objects and the code is spaghetti where you can't see whether an instance is web service or common. I'll do manual translation of collections etc now until I migrate to WCF. Thanks http://stackoverflow.com/questions/1131678/sql-select-joined-string-for-set-of-ids Comment by Ryan ONeill on SQL select joined string for set of ids Ryan ONeill 2009-07-15T14:22:36Z 2009-07-15T14:22:36Z I think you need to normalise the Countries field first into a join table 'UserCountry'. http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object/1100325#1100325 Comment by Ryan ONeill on How can I write to my own app.config using a strongly typed object? Ryan ONeill 2009-07-14T09:41:38Z 2009-07-14T09:41:38Z Actually, it does not work. The new property value is not saved out to the config file.