User Jonathan Allen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T08:17:24Z http://stackoverflow.com/feeds/user/5274 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1897126/replacement-for-sql-server-ce-for-clickonce-applications 0 Replacement for SQL Server CE for ClickOnce applications. Jonathan Allen 2009-12-13T17:36:40Z 2009-12-13T22:17:35Z <p>I have come to the conclusion that SQL Server CE isn't a viable product. Between the versionsing issues and the impossibility of a non-administrator install it just doesn't work at my company.</p> <p>Off hand I'm thinking about Jet, Oracle Berkeley, and SQLite. Given that I'm using .NET with ClickOnce, what embedded database would you recommend and why?</p> http://stackoverflow.com/questions/1858261/how-do-you-change-the-click-to-edit-column-in-sharepoint 1 How do you change the "click to edit" column in sharepoint? Jonathan Allen 2009-12-07T06:43:01Z 2009-12-07T22:40:01Z <p>How do you change the "click to edit" column in sharepoint?</p> http://stackoverflow.com/questions/1845646/vb-net-doesnt-anyone-use-the-dictionary-member-access-expression-a-k-a-the-b 0 VB.NET: Doesn't anyone use the dictionary member access expression? (a.k.a. the bang operator) Jonathan Allen 2009-12-04T08:33:48Z 2009-12-04T11:40:43Z <p>Doesn't anyone use the dictionary member access expression? (a.k.a. the bang operator) If so, in what scenarios?</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa712034%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa712034%28VS.71%29.aspx</a></p> http://stackoverflow.com/questions/1799373/how-can-i-prevent-compileassemblyfromsource-from-leaking-memory/1838341#1838341 0 Answer by Jonathan Allen for How can I prevent CompileAssemblyFromSource from leaking memory? Jonathan Allen 2009-12-03T07:54:30Z 2009-12-04T08:43:54Z <p>Can you wait until .NET 4.0? With it you can use expression trees and the DLR to dynamically generate code without the code-gen memory loss issue.</p> <p>Another option is to use .NET 3.5 with a dynamic language like IronPython.</p> <p>EDIT: Expression Tree Example </p> <p><a href="http://www.infoq.com/articles/expression-compiler" rel="nofollow">http://www.infoq.com/articles/expression-compiler</a></p> http://stackoverflow.com/questions/1837962/asynchronous-delegates-vs-thread-threadpool/1838360#1838360 3 Answer by Jonathan Allen for Asynchronous Delegates Vs Thread/ThreadPool? Jonathan Allen 2009-12-03T08:02:14Z 2009-12-03T08:02:14Z <blockquote> <p>I don't understand in .net why we have Asychronous calling (delegate.BeginInvoke() &amp; delegate.EndInvoke()) as well as Thread class?</p> </blockquote> <ul> <li><p>Asychronous calling is used when you have work items that should be handled in the background and you care when they finish.</p></li> <li><p>Thread pools are for when you have work items that should be handled in the background and you don't care when they finish.</p></li> <li><p>Threads are for doing stuff that never finishes.</p></li> </ul> <p>Examples: </p> <p>If you are reading a large file from disk and don't want to block the GUI thread, use an async call. </p> <p>If you are lazily writing one or more files in the background, use a thread pool.</p> <p>If you are polling the file system every few seconds looking for stuff that changed, use a thread.</p> http://stackoverflow.com/questions/1446861/xaml-serialization-and-immutable-structs/1838332#1838332 1 Answer by Jonathan Allen for Xaml serialization and immutable structs? Jonathan Allen 2009-12-03T07:51:46Z 2009-12-03T07:51:46Z <p>Sorry, you can't use normal serialization with immutable objects in XAML 2006.</p> <p>With XAML 2009, which supports constructors and factory methods, you should be able to acomplish your goal. Just be warned, WPF 4 will not be using XAML 2009. </p> http://stackoverflow.com/questions/1790594/how-might-i-set-up-data-plumbing-for-silverlight-to-mysql-in-my-situation/1838311#1838311 0 Answer by Jonathan Allen for How might I set up data plumbing for Silverlight to MySQL in my situation? Jonathan Allen 2009-12-03T07:45:50Z 2009-12-03T07:45:50Z <blockquote> <p>My problem was that I had date values stored as 0000-00-00 in lots of my MySQL tables.</p> </blockquote> <p>Can you just write <code>Select NullIf( SomeDate, '0000-00-00') As SomeDate From SomeTable</code> in your SQL queries? I don't know MySQL, but that's what I would do in T-SQL.</p> http://stackoverflow.com/questions/1827402/when-was-ms-message-queue-first-released 0 When was MS Message Queue first released? Jonathan Allen 2009-12-01T16:40:55Z 2009-12-03T07:36:53Z <p>When was MS Message Queue first released?</p> http://stackoverflow.com/questions/1827402/when-was-ms-message-queue-first-released/1838281#1838281 0 Answer by Jonathan Allen for When was MS Message Queue first released? Jonathan Allen 2009-12-03T07:36:53Z 2009-12-03T07:36:53Z <p>It looks like NT 4 Option Pack 3 was the first release of MSMQ. That puts the technology in May of 1997.</p> http://stackoverflow.com/questions/1814507/are-there-any-non-repeatable-ienumerable-classes 0 Are there any non-repeatable IEnumerable classes? Jonathan Allen 2009-11-29T03:01:30Z 2009-11-29T03:24:17Z <p>Are there any non-repeatable IEnumerable classes?</p> <p>By non-repeatable I mean where you can't safely call GetEnumerator multiple times or where calling GetEnumerator has observable side effects.</p> http://stackoverflow.com/questions/414098/detect-if-code-is-running-as-a-service 1 Detect if code is running as a service Jonathan Allen 2009-01-05T18:55:52Z 2009-11-28T18:21:38Z <p>Is there a way for an .NET library to detect whether or not it is being run as a service? </p> <p>My library can be run either way. But when its run as a service, developers need to call an additional method indicating that fact or certain features won't work correctly. I want my library, which handles logging, to write a warning if it is used in a service without that method being called.</p> http://stackoverflow.com/questions/1810506/is-there-a-openforms-property-in-wpf 1 Is there a OpenForms Property in WPF? Jonathan Allen 2009-11-27T20:17:38Z 2009-11-27T20:30:30Z <p>In WinForms you can get a list of all open windows using Application.OpenForms? Is there a WPF version of that?</p> http://stackoverflow.com/questions/1456690/can-you-should-you-use-sql-server-service-broker-with-net-applications 2 Can you/should you use SQL Server Service Broker with .NET applications? Jonathan Allen 2009-09-21T20:33:47Z 2009-11-27T08:18:43Z <p>I have many operations in the database that need to trigger application code. Currently I am using database polling, but I hear that SQL Server Service Broker can give me MSMQ-like functionality.</p> <ol> <li>Can I listen to SQL Server Service Broker queues from .NET applications running on a different machine?</li> <li>If so, should I do it?</li> <li>If not, what would you recommend?</li> </ol> http://stackoverflow.com/questions/1755241/commercial-net-csv-parser-library/1785689#1785689 1 Answer by Jonathan Allen for Commercial .NET CSV Parser/Library Jonathan Allen 2009-11-23T20:21:05Z 2009-11-23T20:21:05Z <p>.NET has a built-in CSV parser. A real one that follows the RFC to the letter and provides error recovery when some lines are bad but the rest of the file can be parsed.</p> <p><a href="http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.fileio.textfieldparser.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.fileio.textfieldparser.aspx</a></p> http://stackoverflow.com/questions/1774173/wpf-progress-bar-with-indeterminent-duration 0 WPF: Progress bar with indeterminent duration? Jonathan Allen 2009-11-21T01:20:44Z 2009-11-21T01:33:18Z <p>In WinForms you could set a progress bar to loop endlessly to indicate that you don't know how long it will take. How would I do that in WPF?</p> http://stackoverflow.com/questions/1765500/property-inheritance-in-wpf-silverlight 0 Property inheritance in WPF/Silverlight? Jonathan Allen 2009-11-19T18:27:22Z 2009-11-20T19:22:00Z <p>In WPF and Silverilght, what are the rules for deciding if you inherit properties from the visual, declarative, or logical parent?</p> http://stackoverflow.com/questions/1766990/can-i-translate-net-assembly-versions-to-dates -1 Can I translate .net assembly versions to dates? Jonathan Allen 2009-11-19T22:20:52Z 2009-11-19T22:44:11Z <p>All of my .NET assemblies uses the 1.0.* format for their version numbers. Supposedly the * gets replaced with the current date and time, translated into a number. What is the formula to translate it back into a date and time?</p> http://stackoverflow.com/questions/1765481/what-is-a-freezable-subtype-in-wpf-silverlight 1 What is a "Freezable" subtype in WPF/Silverlight? Jonathan Allen 2009-11-19T18:24:27Z 2009-11-19T18:37:53Z <p>What is a "Freezable" subtype in WPF/Silvellight?</p> http://stackoverflow.com/questions/1754318/how-do-i-deploy-two-clickonce-versions-simultaneously/1754698#1754698 0 Answer by Jonathan Allen for How do I deploy two ClickOnce versions simultaneously? Jonathan Allen 2009-11-18T09:21:13Z 2009-11-18T09:21:13Z <p>I do that all the time. I even have a screen in my application that changes which version a specific user will get. And I'm not doing anything tricky on the app side, all the magic is on the web server hosting the ClickOnce files.</p> <p>Take a look at this article my buddy wrote, it explains how we did it.</p> <p><a href="http://www.infoq.com/articles/ClickOnce-Versioning" rel="nofollow">http://www.infoq.com/articles/ClickOnce-Versioning</a></p> http://stackoverflow.com/questions/1744218/guarding-against-user-input-in-a-dropdown-list/1744269#1744269 1 Answer by Jonathan Allen for Guarding against user-input in a dropdown list? Jonathan Allen 2009-11-16T19:20:22Z 2009-11-16T19:20:22Z <p>When I'm bored, I edit drop-down lists in web sites just for fun. Mostly it just breaks the site, but at least once I could have gotten free or drastically reduced prices on tickets just by playing with the site's hidden fields. (Alas it was for a company I worked for, so I had to instead report the bug.)</p> http://stackoverflow.com/questions/1736743/vb-2005-2008-help-needed-registry/1736749#1736749 0 Answer by Jonathan Allen for VB 2005/2008 Help Needed - Registry Jonathan Allen 2009-11-15T06:09:27Z 2009-11-16T18:29:23Z <p>Here is your starting point. It is actually pretty easy stuff, but let me know if you need any help translating the C# code into VB.</p> <p><a href="http://www.csharphelp.com/archives2/archive430.html" rel="nofollow">http://www.csharphelp.com/archives2/archive430.html</a></p> <p>Open Subkey</p> <pre><code>Dim OurKey = Registry.Users OurKey = OurKey.OpenSubKey(".DEFAULT",true) </code></pre> <p>DeleteSubKey() / CreateSubKey() &amp; DeleteSubKeyTree()</p> <pre><code>Dim OurKey = Registry.Users ' Create OurKey set to HKEY_USERS OurKey = OurKey.OpenSubKey(".DEFAULT",true) ' Set it to HKEY_USERS\.DEFUALT OurKey.CreateSubKey("OurSubKey") ' Create the key HKEY_USERS\.DEAFULT\OurSubKey OurKey.CreateSubKey("OurSubKey\Subkey") ' Create a sub key HKEY_USERS\.DEFAULT\OurSubKey\Subkey OurKey.DeleteSubKey("OurSubKey\SubKey") ' Delete the subkey name "subkey" OurKey.DeleteSubKeyTree("OurSubKey") ' Delete the whole subkey and any subkeys below it </code></pre> <p>GetSubKeyNames()</p> <pre><code>'The first example shows it using a foreach loop to display each subkeyname for each Keyname in OurKey.GetSubKeyNames() MessageBox.Show(Keyname) next //The second example shows how to tranfer the names into a string array dim Keynames = OurKey.GetSubKeyNames() </code></pre> http://stackoverflow.com/questions/1736840/what-is-the-benefit-of-using-a-document-oriented-dbms 2 What is the benefit of using a "document-oriented DBMS"? Jonathan Allen 2009-11-15T07:01:18Z 2009-11-15T08:55:37Z <p>I must be missing something, because everything I've seen so far suggests that it isn't any more interesting than a single table for storing blobs and a second table for tags that apply to it.</p> <p>Now I certainly can see some benefit to that from a design pattern, but why would I want to use a "document-oriented DBMS" instead of just building it using a traditional database like SQL Server, Oracle, or Postgres? </p> http://stackoverflow.com/questions/1709897/why-there-is-no-something-like-imonadt-in-upcoming-net-4-0/1736744#1736744 1 Answer by Jonathan Allen for Why there is no something like IMonad<T> in upcoming .NET 4.0 Jonathan Allen 2009-11-15T06:06:07Z 2009-11-15T06:06:07Z <p>Monads simply aren't important to .NET programmers. Without even knowing monads exist you can still build the LINQ framework. More importantly, it wouldn't look any different. It doesn't matter if you think in terms of monads (Haskell), expression tree rewriting (Lisp), set-based operations (SQL), or using map/reduce to create new types (Ruby, Python), the end result is going to be the same.</p> <p>In fact, I would go so far as to say that monads are downright useless to .NET developers. Every time I see a library for .NET based on monads, it is invariably both more verbose and less comprehensible than straight C# or VB code. The reason is simple, languages like C# and VB are built on much, much more powerful building blocks than languages like Haskell. </p> <p>Haskell in particular needs to use monads for everything because that is all they have. The same goes for macros in Lisp or dynamic typing in JavaScript. When you have a one-trick pony, that trick has to be pretty damn good. </p> <p><a href="http://apisuckage.wordpress.com/2009/06/19/on-linq-monads-and-the-blindness-of-power/" rel="nofollow">On LINQ, Monads, and the Blindness of Power</a></p> http://stackoverflow.com/questions/1736022/automated-build-and-deploy-of-windows-services 2 Automated Build and Deploy of Windows Services Jonathan Allen 2009-11-14T23:51:24Z 2009-11-15T04:06:16Z <p>How would you implement an automated build and deploy system for Windows services. Things to keep in mind:</p> <ol> <li>The service will have to be stopped on the target machine.</li> <li>The service entry in the Windows registry might need to be created/updated.</li> <li>Some, but not all, of the services might need to be automatically started.</li> </ol> <p>I am willing to use TFS for this, but it isn't a requirement. The target machines will always be development machines, we won't be doing this for production servers.</p> http://stackoverflow.com/questions/1736016/what-is-the-recommended-way-to-build-msi-packages-in-vs-2010 1 What is the recommended way to build MSI packages in VS 2010? Jonathan Allen 2009-11-14T23:46:58Z 2009-11-15T00:25:52Z <p>Last year I heard that Installer Projects were going away and we should be switching to Windows Installer XML. Whatever happened with that?</p> <p>So you know where I'm coming from, support for TFS-based buil machines is very important to me. I know Installer Projects kinda-sorta work with TFS, but they have issues.</p> http://stackoverflow.com/questions/1732515/msmq-what-can-cause-a-insufficient-resources-to-perform-operation-error-when-r 1 MSMQ: What can cause a "Insufficient resources to perform operation" error when receiving from a queue? Jonathan Allen 2009-11-13T23:19:27Z 2009-11-13T23:24:01Z <p>MSMQ: What can cause a "Insufficient resources to perform operation" error when receiving from a queue?</p> <p>At the time the queue only held 2,000 messages with each message being about 5KB in size.</p> http://stackoverflow.com/questions/1711176/how-do-i-update-a-sharepoint-list-using-net 0 How do I update a sharepoint list using .net? Jonathan Allen 2009-11-10T21:05:28Z 2009-11-12T23:01:03Z <p>I have a SharePoint list already created. I would like to occassionally update that list using a .NET application. How would I do that?</p> <p>EDIT: This has to run on remote machines.</p> http://stackoverflow.com/questions/1704628/how-do-i-build-custom-workflows-in-sharepoint 0 How do I build custom workflows in SharePoint? Jonathan Allen 2009-11-09T23:17:49Z 2009-11-10T16:11:00Z <p>I need to learn how to build custom workflows in SharePoint. In addition to basic stuff like having legal sign-off on documents, I need to be able to execute arbitrary custom code at certain points. For example, after legal signs off it should export the document and update a database table indicating that a new version is ready.</p> <p>Is this possible using SharePoint? If so, where can I find the documentation or tutorials I would need to get started?</p> http://stackoverflow.com/questions/1674820/how-do-i-use-msmqintegrationbinding-with-a-non-transactional-queue 0 How do I use MsmqIntegrationBinding with a non-transactional queue? Jonathan Allen 2009-11-04T16:06:07Z 2009-11-04T16:06:07Z <p>This is my service contract:</p> <pre><code>&lt;ServiceContract&gt; _ &lt;ServiceKnownType(GetType(String))&gt; _ Public Interface ISecurityMasterChanged &lt;OperationContract(IsOneWay:=True, Action:="*")&gt; _ Sub ValidateCusipInMessage(ByVal message As MsmqMessage(Of String)) End Interface </code></pre> <p>This is my class</p> <pre><code>Public Class SecurityValidator Implements ISecurityMasterChanged &lt;OperationBehavior(TransactionAutoComplete:=False, TransactionScopeRequired:=False)&gt; _ &lt;ServiceKnownType(GetType(String))&gt; _ Public Sub ValidateCusipInMessage(ByVal message As MsmqIntegration.MsmqMessage(Of String)) Implements ISecurityMasterChanged.ValidateCusipInMessage '... End Sub </code></pre> <p>When I try to open the port with this code I get an error</p> <pre><code> m_ServiceHostQueue = New ServiceHost(Me) m_ServiceHostQueue.AddServiceEndpoint(GetType(ISecurityMasterChanged), New MsmqIntegrationBinding With {.ExactlyOnce = False}, m_Config("SMChanged Queue").ToString) m_ServiceHostQueue.Open() </code></pre> <p>System.InvalidOperationException occurred Message="The operation 'ValidateCusipInMessage' on contract 'ISecurityMasterChanged' is configured with TransactionAutoComplete set to true and with TransactionScopeRequired set to false. TransactionAutoComplete requires that TransactionScopeRequired is set to true." Source="System.ServiceModel"</p> <p>This doesn't make sense to me because, as you can see, TransactionAutoComplete is not set to true. </p> http://stackoverflow.com/questions/1670540/msmq-what-is-the-best-way-to-read-a-queue-in-a-non-blocking-fashion 0 MSMQ: What is the best way to read a queue in a non-blocking fashion? Jonathan Allen 2009-11-03T22:25:55Z 2009-11-04T14:21:29Z <p>If a queue is empty and you don't want to block for too long, you risk getting a System.Messaging.MessageQueueException. </p> <p>How would you tell the difference between a timeout on waiting for a message and a real error?</p> http://stackoverflow.com/questions/1790594/how-might-i-set-up-data-plumbing-for-silverlight-to-mysql-in-my-situation/1838311#1838311 Comment by Jonathan Allen on How might I set up data plumbing for Silverlight to MySQL in my situation? Jonathan Allen 2009-12-08T21:39:24Z 2009-12-08T21:39:24Z Wow, that really sucks. How about just giving up and using a copy of SQL Express that is bulk-loaded from the real database on a regular basis? http://stackoverflow.com/questions/1858261/how-do-you-change-the-click-to-edit-column-in-sharepoint Comment by Jonathan Allen on How do you change the "click to edit" column in sharepoint? Jonathan Allen 2009-12-08T21:38:29Z 2009-12-08T21:38:29Z Currently the clickable column is the &quot;Status&quot; column instead of the &quot;Project Title&quot; or &quot;Project Number&quot;. So when we see it in reports, we always see stuff like &quot;In QA has been modified&quot; instead of &quot;Foobar feature has been modified&quot; http://stackoverflow.com/questions/1799373/how-can-i-prevent-compileassemblyfromsource-from-leaking-memory/1838341#1838341 Comment by Jonathan Allen on How can I prevent CompileAssemblyFromSource from leaking memory? Jonathan Allen 2009-12-07T06:48:46Z 2009-12-07T06:48:46Z If you use &quot;DynamicMethod&quot;, the dynamically generated code is associated with an object that can be garbaged collected. <a href="http://msdn.microsoft.com/en-us/magazine/cc163491.aspx" rel="nofollow">msdn.microsoft.com/en-us/magazine/&hellip;</a> http://stackoverflow.com/questions/1799373/how-can-i-prevent-compileassemblyfromsource-from-leaking-memory/1838341#1838341 Comment by Jonathan Allen on How can I prevent CompileAssemblyFromSource from leaking memory? Jonathan Allen 2009-12-04T08:44:07Z 2009-12-04T08:44:07Z I added a link to an article on expression trees. http://stackoverflow.com/questions/1790594/how-might-i-set-up-data-plumbing-for-silverlight-to-mysql-in-my-situation/1838311#1838311 Comment by Jonathan Allen on How might I set up data plumbing for Silverlight to MySQL in my situation? Jonathan Allen 2009-12-04T08:40:14Z 2009-12-04T08:40:14Z Can you wrap your tables in views? If so, that would effectively clean your data without forcing you to write SQL in a particular way. http://stackoverflow.com/questions/1837962/asynchronous-delegates-vs-thread-threadpool/1838360#1838360 Comment by Jonathan Allen on Asynchronous Delegates Vs Thread/ThreadPool? Jonathan Allen 2009-12-04T08:38:25Z 2009-12-04T08:38:25Z I don't see how calling QueueUserWorkItem is any more &quot;manual&quot; than calling BeginInvoke. http://stackoverflow.com/questions/1837546/how-would-you-make-this-switch-statement-as-fast-as-possible/1838044#1838044 Comment by Jonathan Allen on How would you make this switch statement as fast as possible? Jonathan Allen 2009-12-03T08:04:55Z 2009-12-03T08:04:55Z How much does that hash code calculation code you? http://stackoverflow.com/questions/1837546/how-would-you-make-this-switch-statement-as-fast-as-possible/1837565#1837565 Comment by Jonathan Allen on How would you make this switch statement as fast as possible? Jonathan Allen 2009-12-03T08:03:48Z 2009-12-03T08:03:48Z You would also pay for the hash code calculations. http://stackoverflow.com/questions/1838232/c-linq-replacing-nulls-with-meaningful-string/1838255#1838255 Comment by Jonathan Allen on C# LINQ replacing nulls with meaningful string Jonathan Allen 2009-12-03T07:42:28Z 2009-12-03T07:42:28Z ToArray is important. Without it result would be a Query that get re-executed every time you try to use it. This can cause a huge performance hit depending on how you use it. http://stackoverflow.com/questions/1827402/when-was-ms-message-queue-first-released/1827426#1827426 Comment by Jonathan Allen on When was MS Message Queue first released? Jonathan Allen 2009-12-03T07:29:25Z 2009-12-03T07:29:25Z That doesn't sound right. .NET 4.0 wasn't released until 1996 and I'm pretty sure MSMQ was first introduced in an NT 4 service pack. http://stackoverflow.com/questions/1814507/are-there-any-non-repeatable-ienumerable-classes Comment by Jonathan Allen on Are there any non-repeatable IEnumerable classes? Jonathan Allen 2009-11-29T03:36:19Z 2009-11-29T03:36:19Z Enumerators are not necessarily repeatable. If your enumerators wraps a stream, then you can't necessarily call Reset on it. But going up one level, you can generally call GetEnumerator as many times are you like and always get the same result. But can you always call GetEnumerator that way? http://stackoverflow.com/questions/1814507/are-there-any-non-repeatable-ienumerable-classes/1814543#1814543 Comment by Jonathan Allen on Are there any non-repeatable IEnumerable classes? Jonathan Allen 2009-11-29T03:33:22Z 2009-11-29T03:33:22Z Enumerable.Range doesn't create the items at all, that is taken care of by Enumerable.Range.GetEnumerator. Since the enumerator it returns has the same intital values each time, it still would be considered repeatable. http://stackoverflow.com/questions/1814507/are-there-any-non-repeatable-ienumerable-classes/1814527#1814527 Comment by Jonathan Allen on Are there any non-repeatable IEnumerable classes? Jonathan Allen 2009-11-29T03:28:33Z 2009-11-29T03:28:33Z Bad example. The array returned by Process.GetProcesses can be repeatably read. http://stackoverflow.com/questions/1810028/how-to-print-1-to-100-without-any-looping-using-c/1810848#1810848 Comment by Jonathan Allen on How to print 1 to 100 without any looping using C# Jonathan Allen 2009-11-28T19:43:41Z 2009-11-28T19:43:41Z Clever. Evil, but clever. http://stackoverflow.com/questions/1810506/is-there-a-openforms-property-in-wpf/1810539#1810539 Comment by Jonathan Allen on Is there a OpenForms Property in WPF? Jonathan Allen 2009-11-28T19:26:36Z 2009-11-28T19:26:36Z I wasn't aware I needed to. I figured one would be automatically created when a WPF form or control was loaded.