User Jeremy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:01:13Z http://stackoverflow.com/feeds/user/9266 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1821134/import-office-documents-into-one-note 0 Import office documents into one-note Jeremy 2009-11-30T17:17:03Z 2009-11-30T17:17:03Z <p>I wrote a utility that would allow a user to right click on a directory in windows explorer, and it would import all png,gif,jpeg and pdf documents in the directory to one note. I'm getting the request to add office documents to the import, but I'm not really sure how to go about doing it.</p> <p>Can I somehow automate printing the documents into one note using the one-note print driver? Or is there some other way to do it? I have to be able to do this without any user intevention.</p> http://stackoverflow.com/questions/1156498/how-to-set-minoccurs-to-1 0 How to set minOccurs to 1 Jeremy 2009-07-20T23:22:15Z 2009-11-28T17:44:54Z <p>I' building an ASP.NET web service. </p> <p>I've got my code defined as below, but I can't figure out how to the the wsdl to specify the minOccurs of the FirstName and LastName properties. I want those as required, and can not be empty. Is it possible?</p> <pre><code>[WebMethod()] public void TestMethod(TestClass Test) { ... } [Serializable] public class TestClass { public string FirstName { get; set; } public string LastName { get; set; } } </code></pre> http://stackoverflow.com/questions/1811070/sql-server-management-studio-solution-vs-visual-studio-projects 0 SQL Server Management Studio solution vs Visual Studio Projects Jeremy 2009-11-28T00:05:15Z 2009-11-28T02:25:27Z <p>Almost all of our projects involve a web application or winforms application and a data access layer (class library) and stored procedures/database scripts.</p> <p>We are looking for a good way to organize the solutions, and found a few ways:</p> <p><b>1)</b>We could have a sql server management studio solution for all the db related things, then have a visual studio solution for the application and data access layer projects.<br/><br/> <b>2)</b>We could do it all in visual studio with 3 projects, a sql server project, a web app/winforms app project, and a data access layer project.<br/><br/> <b>3)</b>We could do it all in visual studio with 2 projects, a web app/winforms app project and a data access layer project, and just put the sql scripts in a directory in the data access layer project.<br/><br/> I'm sure there's other ways, but I'm just curious to see how others go about doing it.</p> http://stackoverflow.com/questions/1763356/sql-sever-management-studio-for-sql-server-2000/1811074#1811074 0 Answer by Jeremy for SQL Sever Management Studio for SQL Server 2000 Jeremy 2009-11-28T00:07:10Z 2009-11-28T00:07:10Z <p>I use the sql server management studio 2005 tools on our sql 2000 server instances. We have licenses for both servers, and I found those tools easier to use than the old enterprise manager tools that come with sql 2000</p> http://stackoverflow.com/questions/1810079/different-development-environment-than-test-production-environments 2 Different Development environment than Test & Production environments? Jeremy 2009-11-27T18:18:58Z 2009-11-27T21:32:32Z <p>What would you say if a developer wanted to implement a sql2008 dev environment, but we were still forced to use a sql2000 test and sql2000 production environment?</p> <p>Would there be anything wrong with using sql2008 on a dev server? Of course you'd need to know what functionality you couldn't use, so you didn't have problems migrating your work from the sql2008 servers to sql2000.</p> http://stackoverflow.com/questions/1807326/c-and-writing-html-best-way/1810004#1810004 0 Answer by Jeremy for C# and writing HTML - best way? Jeremy 2009-11-27T18:01:34Z 2009-11-27T18:01:34Z <p>You could also instantiate any of the System.Web.UI.WebControls objects, then get them to render their output and use that. </p> http://stackoverflow.com/questions/1799154/serializable-class-inheriting-from-an-interface-with-a-property-of-its-own-type 0 Serializable class inheriting from an Interface with a property of its own type Jeremy 2009-11-25T18:50:12Z 2009-11-26T15:41:42Z <p>I have an interface, with a definintion for a property that is the same type as the interface. </p> <pre><code>public interface IMyInterface { IMyInterface parent { get; set; } } </code></pre> <p>Now if I declare a class and inherit from the interface, I need to create the property called parent. I want my class to be serializable to use in a web service, but Interfaces are not serializable when used that way, so what should I do about my property of type IMyInterface? I do want that property to serialize.</p> http://stackoverflow.com/questions/1511665/converting-pdf-to-images 0 Converting PDF to images? Jeremy 2009-10-02T20:34:15Z 2009-11-26T05:49:38Z <p>I need to import PDF documents into <a href="http://en.wikipedia.org/wiki/Microsoft%5FOneNote" rel="nofollow">Microsoft OneNote</a>, which means converting the PDF file to an image. Is there a descent <strong>free</strong> library I can use from .NET to convert the PDF file to a BMP/PNG/JPEG file? Maybe an open source project?</p> http://stackoverflow.com/questions/421581/silverlight-binding-a-child-controls-property-to-a-property-in-a-user-control 2 Silverlight: Binding a child controls property to a property in a user control Jeremy 2009-01-07T18:57:24Z 2009-11-25T16:47:50Z <p>If I have a user control defined:</p> <pre><code>public partial class MainFooter : UserControl { public System.Windows.Media.Color BkColor; } </code></pre> <p>and it's xaml:</p> <pre><code>&lt;UserControl x:Class="Test.MainFooter"&gt; &lt;Grid x:Name="LayoutRoot"&gt; &lt;Rectangle x:Name="rctBottom_Background2" HorizontalAlignment="Stretch" Grid.Row="2"&gt; &lt;Rectangle.Fill&gt; &lt;LinearGradientBrush EndPoint="0.82,0.895" StartPoint="0.911,-0.442"&gt; &lt;GradientStop Color="{**How can I bind this to the BkColor property?}"/**&gt; &lt;GradientStop Color="#00FFFFFF" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Rectangle.Fill&gt; &lt;/Rectangle&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>and used:</p> <pre><code>&lt;MyControls:MainFooter x:Name="rcrMainFooter" BkColor="#FFE2B42A"&gt; &lt;/MyControls:MainFooter&gt; </code></pre> <p>How would I go about binding the GradientStop Color in the Rectangle to the value of the it's user controls BkColor property?</p> http://stackoverflow.com/questions/390206/can-a-storyboard-access-the-usercontrol-that-it-resides-in 0 Can a storyboard access the UserControl that it resides in? Jeremy 2008-12-23T22:09:40Z 2009-11-25T14:00:05Z <p>I have a usercontrol, and I want a storyboard inside the user control to fade the user control out. Using Expression Blend, I can create the storyboard and cause it to fade the user control out, but when I run the silverlight application I get an error on FindControl stating that it can't find the control. I'm guessing the find control only searches the children of the parent, but does not look at the parent itself. Is there any way around this?</p> http://stackoverflow.com/questions/1614664/mirth-how-to-get-source-file-directory-from-file-reader-channel 0 Mirth: How to get source file directory from file reader channel Jeremy 2009-10-23T16:49:15Z 2009-11-24T22:14:06Z <p>I have a file reader channel picking up an xml document. By default, a file reader channel populates the 'originalFilename' in the channel map, which ony gives me the name of the file, not the full path. Is there any way to get the full path, withouth having to hard code something?</p> http://stackoverflow.com/questions/1685023/reparenting-hierarchyid-values 0 reparenting hierarchyid values Jeremy 2009-11-06T02:23:07Z 2009-11-22T09:20:58Z <p>If I have the following rows set up in a SQL Server 2008 table:</p> <pre><code>Row Hierarchy 1 1/ 2 2/ 3 1/1 4 1/2 5 2/1 6 2/2 7 2/1/1 </code></pre> <p>Currently row 5 is parented to row 2. I want to reparent row 5 to row 1, so it would now become 1/3 instead of 2/1. That much I have working so far. I want row 7 (and any other rows down the chain) to remain parented to row 5, which means row 7 should be 1/3/1. What would be some efficient sql to ensure that the hierarchy ids of all children records down the chain get updated as well?</p> http://stackoverflow.com/questions/1773950/is-there-a-dictionary-like-collection-that-can-use-a-property-of-its-value-as-the 3 Is there a dictionary like collection that can use a property of its value as the key? Jeremy 2009-11-20T23:57:31Z 2009-11-21T00:36:51Z <p>istead of using Dictionary I want some type of collection class that can use a property of the value as the key, is there something like this?</p> http://stackoverflow.com/questions/1760390/c-stream-design-question/1761044#1761044 0 Answer by Jeremy for C# Stream Design Question Jeremy 2009-11-19T05:19:29Z 2009-11-19T05:19:29Z <p>In each stage, do you read the entire chunk of data, do the manipulation, then send the entire chuck to the next stage? </p> <p>If that is the case, you are using a "push" technique where you push the entire chunk of data to the next stage. Are you able to handle things in a more stream like manor using a "pull" technique? Each stage is a stream, and as you read data from that stream, it pulls data from the previous stream by calling read on it. As each stream is being read, it reads from the previous stream in small bits, processes it and returns the processed data. The destination stream determines how many bytes to read from the previous stream, and you don't ever have to consume large amounts of memory. This is how applications like BizTalk work. There are some blogs about how BizTalk Pipeline streams work, and I think it might be exactly what you want.</p> <p>Here's a multi-part blog entry that you might find interesting:</p> <p><a href="http://blogs.objectsharp.com/cs/blogs/nbarden/archive/2008/04/14/developing-streaming-pipeline-components-part-1.aspx" rel="nofollow">Part 1</a><br/> <a href="http://blogs.objectsharp.com/cs/blogs/nbarden/archive/2008/04/17/developing-streaming-pipeline-components-part-2.aspx" rel="nofollow">Part 2</a><br/> <a href="http://blogs.objectsharp.com/cs/blogs/nbarden/archive/2008/04/22/developing-streaming-pipeline-components-part-3.aspx" rel="nofollow">Part 3</a><br/> <a href="http://blogs.objectsharp.com/CS/blogs/nbarden/archive/2008/04/24/developing-streaming-pipeline-components-part-4.aspx" rel="nofollow">Part 4</a><br/> <a href="http://blogs.objectsharp.com/CS/blogs/nbarden/archive/2008/04/28/developing-streaming-pipeline-components-part-5.aspx" rel="nofollow">Part 5</a><br/></p> http://stackoverflow.com/questions/1760449/conventions-c-class-names/1761002#1761002 0 Answer by Jeremy for (Conventions) C# Class names Jeremy 2009-11-19T05:05:04Z 2009-11-19T05:05:04Z <p>As long as you pick one and consistantly use that throughtout your code, then whichever one you choose is the right one.</p> <p>My personal choice is your second option. If your namespace is character, I see no reason to use the prefix character in the class name.</p> http://stackoverflow.com/questions/1760688/is-this-a-clear-use-of-goto/1760993#1760993 0 Answer by Jeremy for Is this a clear use of goto? Jeremy 2009-11-19T05:02:37Z 2009-11-19T05:02:37Z <p>On a side note, I think there is potential for an endless loop if you always get an exception.</p> <p>Technically there is nothing wrong with your goto structure, but for me, I would opt for using a while loop instead. Something like: </p> <pre><code>IDatabase database = null; bool bSuccess = false; int iTries = 0 while (!bSuccess) // or while (database == null) { try { iTries++; database = databaseLoader.LoadDatabase(); bSuccess = true; } catch(DatabaseLoaderException e) { //Avoid an endless loop if (iTries &gt; 10) throw e; var connector = _userInteractor.GetDatabaseConnector(); if(connector == null) throw new ConfigException("Could not load the database specified in your config file."); databaseLoader = DatabaseLoaderFacade.GetDatabaseLoader(connector); } } </code></pre> http://stackoverflow.com/questions/1760481/closing-open-files-using-c/1760959#1760959 0 Answer by Jeremy for Closing Open Files using C# Jeremy 2009-11-19T04:53:05Z 2009-11-19T04:53:05Z <p>It would be difficult to consider all the ramifications of doing this because you can't necessarily predict the resulting behavior of the application that currently has the file locked. </p> <p>Is there some other way to do this? For example do you have to overwrite the file right away, or can you have some external process that continually tries to overwrite the file every few minutes until it succeeds?</p> http://stackoverflow.com/questions/1302367/sql-clustering-or-vm-images 0 SQL clustering or VM images Jeremy 2009-08-19T20:11:10Z 2009-11-15T04:01:39Z <p>We currently have a failover sql cluster with two nodes. For a new large project which we have determined to be business critical, our development team is requesting a new 2 node failover sql cluster. </p> <p>Our server department has responded saying that they do not want to implement a cluster for us, and instead employee multiple virtual machines, each with SQL server installed, pointing to the same disk, so if one fails, they either move it to a new host, or the bring the other image up instead, and because it's pointing to the same disk the data will remain intact.</p> <p>I'm no sql server expert, and only understand clustering on a basic level, but something tells me that this VM 'idea' they came up with is not exactly an enterprise solution. It sounds pretty Micky Mouse to me. Am I out to lunch here? What kind of arguments can I use to support my view?</p> http://stackoverflow.com/questions/1731483/what-is-sqlserver-database-remark-returned-fom-spdatabases 0 what is sqlserver database remark returned fom sp_databases? Jeremy 2009-11-13T19:49:01Z 2009-11-13T19:55:58Z <p>The sp_databases stored proc in sqlserver returns a remarks column. Where does this information come from, and can I edit it?</p> http://stackoverflow.com/questions/1727107/linq-to-sql-insert-select-foreign-primary-records 0 Linq to SQL insert/select foreign/primary records Jeremy 2009-11-13T04:16:10Z 2009-11-13T05:06:11Z <p>I have table A and Table B.<br> Table B contains two columns, Name and ID. Table A contains several columns and a foreign key column pointing to B.ID called B_ID</p> <p>On the client side, I have all the data I want to insert into Table A, except for B_ID. I have B.Name though.</p> <p>using link to sql I need to retrieve the id in table B based on the value of Name. If the record does not exist I need to insert it and get back the ID (which is an identity column). </p> <p>Now that I have B.ID, I then have to insert record in table A. </p> <p>I've built my data context class by importing tables A and B in the designer, I'm just not sure how to go about writing the linq to sql statements here.</p> http://stackoverflow.com/questions/1727215/linq-to-sql-can-i-return-the-identityscope-after-an-insert 2 Linq to Sql: Can I return the Identity_Scope after an insert? Jeremy 2009-11-13T04:59:48Z 2009-11-13T05:03:00Z <p>After I do an insert using linq to sql, can I get the Identity_scope value back if my table has an identity column?</p> http://stackoverflow.com/questions/1713313/winform-textbox-cangrow/1713339#1713339 0 Answer by Jeremy for Winform Textbox CanGrow ? Jeremy 2009-11-11T05:57:02Z 2009-11-11T05:57:02Z <p>If you set the anchor properties to top,left,bottom,right then the control will grow as the form resizes.</p> <p>I think a better option is to use docking though. I usually set up a panel layout with one docked to client, then I put the control I want resized in the panel docked to client, and set the control to dock to client as well.</p> http://stackoverflow.com/questions/1711213/how-do-you-set-the-command-timeout-in-ssis 0 How do you set the command timeout in SSIS? Jeremy 2009-11-10T21:11:01Z 2009-11-10T21:17:17Z <p>I have a datareader source firing some sql which takes longer than 30 seconds to run, so it's timing out. I can not find a command timeout property on the datareader source component, or the data flow task. Is there some way to set a longer command timeout in SSIS?</p> http://stackoverflow.com/questions/1698274/linq-to-sql-classes-to-my-own-classes 0 LINQ to SQL classes to my own classes Jeremy 2009-11-08T23:14:53Z 2009-11-09T06:15:46Z <p>I'm looking at using LINQ to SQL for a new project I'm working on, but I do not want to expose the LINQ classes to my applications. For example, do an select in link returns a System.Linq.IQueryable&lt;> collection. As well, all the classes generated to represent the database use Table, Column, EntityRef classes and attributes. It's fine if my data access layer has LINQ dependancies, but I don't want my application to. </p> <p>So my thoughts are that I will have to use the LINQ to SQL generated classes as intermediate classes that are not exposed outside of my data access layer, and create my own classes which the application can use. What is the easiest/effecient way to get the data from the LINQ to SQL classes into my own classes?</p> http://stackoverflow.com/questions/1698274/linq-to-sql-classes-to-my-own-classes/1698621#1698621 0 Answer by Jeremy for LINQ to SQL classes to my own classes Jeremy 2009-11-09T01:10:22Z 2009-11-09T01:40:35Z <p>This is my current incarnation of how I am going about doing this:</p> <p>I have a DataContext class that I created by adding a LINQ to SQL class, and droping tables onto the designer. I called the class MyDataContext and put it in a namespace called Linq. My database has a table called Tag, which generated a class, also in the Linq namespace. I changed all the accessors to internal, so they would not be visible outside of the data access layer.</p> <pre><code>namespace Linq { [System.Data.Linq.Mapping.DatabaseAttribute(Name="MyDb")] internal partial class MyDataContext : System.Data.Linq.DataContext { ... } [Table(Name="dbo.vTag")] internal partial class Tag { .... } } </code></pre> <p>I then created a class called DataAccess which is what will be exposed to any application that references the assembly. I also created my own Tag class. The DataAccess class and my new Tag class are in a different namespace called Data to avoid collisions with the generated classes which are in the Linq namespace. I use Linq to Sql to query for an IList of Linq.Tag objects, then I use Linq to generate me a list of Data.Tag objects from the Linq.Tag objects.</p> <p>I'd like to hear comments on this to see if there's a more performant way to do this, or one that requires less code. I also wasn't too happy with my use of duplicate class names (Tag) so I'm interested to hear any ideas on naming suggestions too.</p> <pre><code>namespace Data { public class DataAaccess { public IList&lt;Tag&gt; List_Tags() { using (Linq.MyDataContext dal = new Linq.MyDataContext ()) { IList&lt;Linq.Tag&gt; lstTags = (from c in dal.Tags select c).ToList(); return (from tag in lstTags select new Data.Tag() { ID = tag.ID, Name = tag.Name, Parent_ID = tag.Parent_ID }).ToList(); } } } } </code></pre> http://stackoverflow.com/questions/1698495/create-a-list-of-one-object-type-from-a-list-of-another-using-linq 3 Create a list of one object type from a list of another using Linq Jeremy 2009-11-09T00:34:58Z 2009-11-09T00:55:41Z <p>If I have classes of Type A and B:</p> <pre><code>public class A { public int TotalCount; public string Title; } public class B { public int Count; public string Title; } </code></pre> <p>I have a list of instances A instances, what is the most efficient way to create and populate a List of type B using Linq?</p> http://stackoverflow.com/questions/1697958/linq-to-sql-table-relationships 0 Linq To SQL: Table relationships Jeremy 2009-11-08T21:22:08Z 2009-11-08T22:31:33Z <p>Assume I have a two tables, A and B. Table A has a primary Key called A_ID of type int, and table B has a foreign key called A_ID. </p> <p>When I add the two tables to a Linq To SQL data context class it correctly creates the classes and the association between them. </p> <p>My question is, class B will have a property of type int called A_ID. It will also have property called A, of type A. </p> <p>Now, if at runtime, I make a linq to sql call which populates an instance of B, B.A_ID and B.A.A_ID will be the same value. What is stopping a developer from making some mistake and putting a different value in B.A_ID than is in B.A.A_ID. In a database you couldn't do this because of the foreign key constraints, but how do the Linq to sql classes enforce those constraints on the client side?</p> http://stackoverflow.com/questions/1691767/c-remove-spaces-in-html-source-in-between-markups/1691816#1691816 0 Answer by Jeremy for C# - Remove spaces in HTML source in between markups? Jeremy 2009-11-07T02:52:03Z 2009-11-07T02:52:03Z <p>I would be tempted to use a regex to match any whitespace between an end tag and the next begin tag. Regex pattern matching would avoid you having to write logic yourself.</p> http://stackoverflow.com/questions/1668117/regex-how-to-uppercase-the-first-character-of-each-word 1 Regex: How to Uppercase the first character of each word? Jeremy 2009-11-03T15:39:08Z 2009-11-03T17:34:20Z <p>Is it possible to uppercase the first character of each word using regex?</p> <p>I'm going to be using this in VB.net (SSIS)</p> http://stackoverflow.com/questions/1659833/converting-from-one-class-to-another-class-using-xml-serialization-in-c/1659855#1659855 0 Answer by Jeremy for Converting from One Class to another Class using Xml Serialization in C# Jeremy 2009-11-02T07:22:34Z 2009-11-02T07:22:34Z <p>I've done the serialize/deserialize thing myself just as you had. If your classes have the same properties as the proxy classes you could write a helper method that uses reflection to iterate through the properties of the proxy and set the corresponding properties of your class. As long as the property names are the same, that one method should work on all classes. </p> http://stackoverflow.com/questions/1799154/serializable-class-inheriting-from-an-interface-with-a-property-of-its-own-type/1799229#1799229 Comment by Jeremy on Serializable class inheriting from an Interface with a property of its own type Jeremy 2009-11-25T20:15:46Z 2009-11-25T20:15:46Z Does not appear to work. I also tried using the XmlInclude attribute with no luck either http://stackoverflow.com/questions/1773950/is-there-a-dictionary-like-collection-that-can-use-a-property-of-its-value-as-the/1773957#1773957 Comment by Jeremy on Is there a dictionary like collection that can use a property of its value as the key? Jeremy 2009-11-21T00:37:38Z 2009-11-21T00:37:38Z If you set the property of the object after you add it, it will be out of sync with the key in the collection. http://stackoverflow.com/questions/1727215/linq-to-sql-can-i-return-the-identityscope-after-an-insert/1727223#1727223 Comment by Jeremy on Linq to Sql: Can I return the Identity_Scope after an insert? Jeremy 2009-11-13T06:03:37Z 2009-11-13T06:03:37Z It was way to obvious for me to see :) Thanks. http://stackoverflow.com/questions/1711213/how-do-you-set-the-command-timeout-in-ssis/1711242#1711242 Comment by Jeremy on How do you set the command timeout in SSIS? Jeremy 2009-11-10T23:26:37Z 2009-11-10T23:26:37Z Yup, the OLE DB Source has a command timeout, but the DataReader Source does not! http://stackoverflow.com/questions/1711213/how-do-you-set-the-command-timeout-in-ssis Comment by Jeremy on How do you set the command timeout in SSIS? Jeremy 2009-11-10T22:05:45Z 2009-11-10T22:05:45Z it is sql2005.. http://stackoverflow.com/questions/1711213/how-do-you-set-the-command-timeout-in-ssis/1711251#1711251 Comment by Jeremy on How do you set the command timeout in SSIS? Jeremy 2009-11-10T21:58:54Z 2009-11-10T21:58:54Z This says its for the web service task, does it apply to the datareader source component too? http://stackoverflow.com/questions/1711213/how-do-you-set-the-command-timeout-in-ssis/1711242#1711242 Comment by Jeremy on How do you set the command timeout in SSIS? Jeremy 2009-11-10T21:57:11Z 2009-11-10T21:57:11Z All I have for properties on the Custom Properties group is SqlCommand and UserComponentTypeName http://stackoverflow.com/questions/1698274/linq-to-sql-classes-to-my-own-classes/1698644#1698644 Comment by Jeremy on LINQ to SQL classes to my own classes Jeremy 2009-11-09T01:40:09Z 2009-11-09T01:40:09Z I tend to agree, it is somewhat of a two model hybrid, but how else do you suggest removing the underlying dependancies (linq to sql, or entity framework) from being passed up to the application? http://stackoverflow.com/questions/1698274/linq-to-sql-classes-to-my-own-classes/1698636#1698636 Comment by Jeremy on LINQ to SQL classes to my own classes Jeremy 2009-11-09T01:28:32Z 2009-11-09T01:28:32Z I did not know this, and did some googling to find sources that backed up your comment. There were many the seemed to confirm your comment, but I did find this one that offered a little more insight. It appears that LINQ to SQL will not die outright, but will merge with the entity framework and continue evolving: <a href="http://www.infoq.com/news/2008/11/DLINQ-Future" rel="nofollow">infoq.com/news/2008/11/DLINQ-Future</a> http://stackoverflow.com/questions/1698495/create-a-list-of-one-object-type-from-a-list-of-another-using-linq Comment by Jeremy on Create a list of one object type from a list of another using Linq Jeremy 2009-11-09T01:13:51Z 2009-11-09T01:13:51Z Essentially they represent the same thing. In my actual case, A is a class generated by Linq to Sql when I created a Linq to Sql class and added a table to it. Because class A has Linq and Linq to Sql dependancies, I do not want to expose it to my applications, so I create class B, that has no dependancies. So I need to populate a list of class B instances from a list of class A instances. http://stackoverflow.com/questions/1685023/reparenting-hierarchyid-values/1688875#1688875 Comment by Jeremy on reparenting hierarchyid values Jeremy 2009-11-06T18:17:06Z 2009-11-06T18:17:06Z Booya! I think that's exactly what I wanted to know. Thanks. http://stackoverflow.com/questions/1668117/regex-how-to-uppercase-the-first-character-of-each-word/1668790#1668790 Comment by Jeremy on Regex: How to Uppercase the first character of each word? Jeremy 2009-11-03T17:29:11Z 2009-11-03T17:29:11Z Didn't know about this. Could be a great solution for me. Thanks! http://stackoverflow.com/questions/1668117/regex-how-to-uppercase-the-first-character-of-each-word/1668153#1668153 Comment by Jeremy on Regex: How to Uppercase the first character of each word? Jeremy 2009-11-03T16:29:32Z 2009-11-03T16:29:32Z I need to do this in SSIS, which uses VB.net http://stackoverflow.com/questions/1668117/regex-how-to-uppercase-the-first-character-of-each-word/1668130#1668130 Comment by Jeremy on Regex: How to Uppercase the first character of each word? Jeremy 2009-11-03T16:24:05Z 2009-11-03T16:24:05Z I've never used PHP, but don't recall this method in other languages I've used, although I could have just not noticed it. http://stackoverflow.com/questions/1659672/why-net-and-java-on-server-side/1659679#1659679 Comment by Jeremy on Why .NET and Java on server side? Jeremy 2009-11-02T07:16:56Z 2009-11-02T07:16:56Z @steven, re: java is more OO than .net. Based on your comment, I don't think you understand what object oriented means.