User Rob Windsor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T07:23:05Zhttp://stackoverflow.com/feeds/user/28785http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1843880/what-type-should-i-use-for-saving-images-using-c/1843889#18438891Answer by Rob Windsor for What type should I use for saving images using C#?Rob Windsor2009-12-03T23:40:28Z2009-12-03T23:40:28Z<p>System.Drawing.Bitmap</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx</a></p>
http://stackoverflow.com/questions/1842365/how-to-anonymously-authenticate-between-a-vb-net-desktop-app-and-asp-net-web-app/1842408#18424081Answer by Rob Windsor for How to Anonymously Authenticate between a VB.Net Desktop App and ASP.Net Web AppRob Windsor2009-12-03T19:46:17Z2009-12-03T20:02:47Z<p>You can share credentials between the applications using ASP.NET Client Application Services.</p>
<p>Here are some resources:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb384297.aspx" rel="nofollow">Client Application Services</a></p>
<p><a href="http://channel9.msdn.com/posts/DanielMoth/Client-Application-Services-with-Visual-Studio-2008/" rel="nofollow">Client Application Services with Visual Studio 2008</a></p>
http://stackoverflow.com/questions/1828067/moving-from-vb-net-to-c/1828118#18281182Answer by Rob Windsor for Moving from VB.Net to C#Rob Windsor2009-12-01T18:52:52Z2009-12-01T18:52:52Z<p>I think you have two questions:</p>
<ul>
<li>What does it take to move from VB.NET to C#?, and</li>
<li>What does it take to move from a novice to a pro?</li>
</ul>
<p>Others have answered the first question.</p>
<p>A great resource that will help with the second is the <a href="http://msdn.microsoft.com/en-us/beginner/default.aspx" rel="nofollow">Beginner's Developer Center</a>. For those new to .NET but not really beginners, I would suggest <a href="http://msdn.microsoft.com/en-us/rampup/default.aspx" rel="nofollow">MSDN Ramp Up</a>.</p>
http://stackoverflow.com/questions/1601020/ajax-change-in-net-4-sys-services-authenticationservice/1827967#18279671Answer by Rob Windsor for AJAX change in .NET 4: Sys.Services.AuthenticationServiceRob Windsor2009-12-01T18:26:45Z2009-12-01T18:26:45Z<p>If you're using Visual Studio 2010 Beta 2, it could be your script references. The Microsoft Ajax library is now released out-of-band with the .NET Framework, so script resources that were embedded in System.Web.Extensions have been removed.</p>
<p>You need to download the most recent library from <a href="http://ajax.codeplex.com" rel="nofollow">http://ajax.codeplex.com</a> or use the new Microsoft Ajax Content Delivery Network (CDN).</p>
<p>Here are some resources that should help you.</p>
<p><a href="http://www.stephenwalther.com/blog/archive/2009/10/21/the-microsoft-ajax-library-and-visual-studio-beta-2.aspx" rel="nofollow">The Microsoft Ajax Library and Visual Studio Beta 2</a> </p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2009/09/15/announcing-the-microsoft-ajax-cdn.aspx" rel="nofollow">Announcing the Microsoft AJAX CDN</a> </p>
http://stackoverflow.com/questions/1826008/asp-net-updatepanel-exception-handling/1827097#18270972Answer by Rob Windsor for ASP.NET UpdatePanel Exception HandlingRob Windsor2009-12-01T15:55:13Z2009-12-01T16:20:48Z<p>You can use a combination of the AsyncPostBackError event on the ScriptManager (server-side) and the EndRequest event on the PageRequestManager (client-side) to fully handle server-side errors when using the UpdatePanel.</p>
<p>Here are a couple resources that should help you:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb398934.aspx" rel="nofollow">Customizing Error Handling for ASP.NET UpdatePanel Controls</a></p>
<p><a href="http://www.codeproject.com/KB/webforms/asp%5Ferror%5Fhandling.aspx" rel="nofollow">Error Handling Customization for ASP.NET UpdatePanel</a></p>
<p>Here's a simple example:</p>
<pre><code>// Server-side
protected void ScriptManager1_AsyncPostBackError(object sender,
AsyncPostBackErrorEventArgs e) {
ScriptManager1.AsyncPostBackErrorMessage =
"An error occurred during the request: " +
e.Exception.Message;
}
// Client-side
<script type="text/javascript">
function pageLoad() {
Sys.WebForms.PageRequestManager.getInstance().
add_endRequest(onEndRequest);
}
function onEndRequest(sender, args) {
var lbl = document.getElementById("Label1");
lbl.innerHTML = args.get_error().message;
args.set_errorHandled(true);
}
</script>
</code></pre>
http://stackoverflow.com/questions/1759836/asp-net-web-application-role-based-security/1759842#17598420Answer by Rob Windsor for ASP.NET web application role based securityRob Windsor2009-11-18T23:23:04Z2009-11-18T23:23:04Z<p>Yes, just take a look at the Membership API. </p>
<p>This blog post from Scott Guthrie has links to several resources to help you get started.</p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2006/02/24/asp.net-2.0-membership%5F2c00%5F-roles%5F2c00%5F-forms-authentication%5F2c00%5F-and-security-resources-.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2006/02/24/asp.net-2.0-membership%5F2c00%5F-roles%5F2c00%5F-forms-authentication%5F2c00%5F-and-security-resources-.aspx</a></p>
http://stackoverflow.com/questions/1742618/where-to-put-javascript-code-with-server-side-asp-net-ajax/1742730#17427300Answer by Rob Windsor for Where to put javascript code with "Server-side ASP.Net AJAX" ?Rob Windsor2009-11-16T15:04:49Z2009-11-16T15:04:49Z<p>You use the PageRequestManager object on the client-side to listen for events generated during an asynchronous postback. </p>
<p>For more information check out this overview on MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb386571.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb386571.aspx</a></p>
http://stackoverflow.com/questions/1731441/ajax-call-using-large-querystring-value-fails/1734297#17342972Answer by Rob Windsor for Ajax call using large querystring value failsRob Windsor2009-11-14T13:57:03Z2009-11-14T13:57:03Z<p>The maximum length of a query string cannot be set programatically, it is determined by the the web server and browser that are involved in the request.</p>
<p>Check the Compatability Issues section of the Wikipedia entry for details and links to additional resources.</p>
<p><a href="http://en.wikipedia.org/wiki/Query%5Fstring" rel="nofollow">http://en.wikipedia.org/wiki/Query%5Fstring</a></p>
http://stackoverflow.com/questions/1721399/show-date-selected-in-asp-calander-on-button-click-event/1723514#17235141Answer by Rob Windsor for Show Date Selected in ASP Calander on Button Click Event Rob Windsor2009-11-12T16:28:38Z2009-11-12T16:28:38Z<p>Here's the code required to add one month to the selected date. </p>
<pre><code>DateTime newDate = Calendar1.SelectedDate.AddMonths(1);
Calendar1.VisibleDate = newDate;
Calendar1.SelectedDate = newDate;
</code></pre>
http://stackoverflow.com/questions/1720305/getting-started-with-sharepoint-2010-for-sharepoint-2007-developers/1722835#17228352Answer by Rob Windsor for Getting started with SharePoint 2010 for SharePoint 2007 DevelopersRob Windsor2009-11-12T15:04:27Z2009-11-12T15:04:27Z<p>The SharePoint Developer Center has some great content as well.</p>
<p><a href="http://msdn.microsoft.com/en-us/sharepoint/ee513147.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/sharepoint/ee513147.aspx</a></p>
http://stackoverflow.com/questions/1651243/sharepoint-best-books-and-tutorials/1657627#16576270Answer by Rob Windsor for Sharepoint best books and tutorials?Rob Windsor2009-11-01T16:42:21Z2009-11-01T16:42:21Z<p>I agree with IrishChieftan on Inside Windows SharePoint Services 3.0. I think it's the best book to help you get started developing for SharePoint. The first three chapters of the book are available online on MSDN.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb892186.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb892186.aspx</a></p>
<p>I would also suggest you check out MSDN Ramp Up. There are two sections on SharePoint development that included videos, articles and hands-on labs.</p>
<p><a href="http://msdn.microsoft.com/en-us/rampup/" rel="nofollow">http://msdn.microsoft.com/en-us/rampup/</a></p>
<p>Finally, I would recommend this series of webcasts hosted by Mike Benkovich </p>
<p><a href="http://www.benkotips.com/Default.aspx?tabid=1158" rel="nofollow">http://www.benkotips.com/Default.aspx?tabid=1158</a></p>
http://stackoverflow.com/questions/1650093/creating-and-updating-site-columns-in-moss-publishing-site/1650196#16501960Answer by Rob Windsor for Creating and updating site columns in MOSS publishing siteRob Windsor2009-10-30T14:38:45Z2009-10-30T14:38:45Z<p>When you deploy your updated package are you deactivating and reactivating the Feature that provisions the site columns? If you don't, the site columns won't show.</p>
http://stackoverflow.com/questions/1429153/is-there-a-web-service-for-getting-a-list-of-all-site-collections-in-wss-3-0/1429229#14292291Answer by Rob Windsor for Is there a web service for getting a list of all site collections in WSS 3.0?Rob Windsor2009-09-15T19:38:50Z2009-09-15T19:38:50Z<p>Yes. You should be able to use the GetWebCollection operation from Webs.asmx to iterate all the sites in the collection.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/webs.webs.getwebcollection.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/webs.webs.getwebcollection.aspx</a></p>
http://stackoverflow.com/questions/1425310/auto-implemented-properties-in-c/1425333#14253334Answer by Rob Windsor for Auto implemented properties in C#Rob Windsor2009-09-15T05:46:01Z2009-09-15T05:46:01Z<p>A quick Google search on "inotifypropertychanged auto properties" will lead you to several blog posts and articles on the subject. Here's one:</p>
<p><a href="http://www.codeproject.com/Articles/38865/INotifyPropertyChanged-auto-wiring-or-how-to-get-rid-of-redundant-code.aspx" rel="nofollow">INotifyPropertyChanged auto wiring or how to get rid of redundant code</a></p>
http://stackoverflow.com/questions/1401281/can-i-access-ms-search-sharepoint-search-results-programmatically-in-asp-net/1402501#14025010Answer by Rob Windsor for Can I access MS Search/SharePoint Search results programmatically in ASP.NET?Rob Windsor2009-09-09T22:37:27Z2009-09-09T22:37:27Z<p>Yes, you can use the SharePoint Search Web Service</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms470518.aspx" rel="nofollow">Windows SharePoint Services Query Web Service</a></p>
http://stackoverflow.com/questions/1382778/creating-a-calendar-event-in-sharepoint/1383293#13832931Answer by Rob Windsor for Creating a calendar event in SharePointRob Windsor2009-09-05T13:06:18Z2009-09-05T13:06:18Z<p>Check out the following resource on MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms434156.aspx" rel="nofollow">How to: Add a Recurring Event to Lists on Multiple Sites</a></p>
http://stackoverflow.com/questions/1364907/update-panel-not-showing-errors-in-asp-net-3-5/1367800#13678001Answer by Rob Windsor for Update panel not showing errors in ASP.NET 3.5Rob Windsor2009-09-02T13:46:20Z2009-09-02T13:46:20Z<p>There was definately a change between the default behavior in the ASP.NET AJAX Extensions 1.0 and ASP.NET AJAX 3.5. This can been seen by looking at the default endPostBack event handlers for the Sys.WebForms.PageRequestManager. The former version displays the error using an Alert while the later just rethrows the error.</p>
<pre><code>// ASP.NET AJAX Extensions 1.0
function Sys$WebForms$PageRequestManager$_endPostBack(error, response) {
this._processingRequest = false;
this._request = null;
this._additionalInput = null;
var handler = this._get_eventHandlerList().getHandler("endRequest");
var errorHandled = false;
if (handler) {
var eventArgs = new Sys.WebForms.EndRequestEventArgs(error, this._dataItems, response);
handler(this, eventArgs);
errorHandled = eventArgs.get_errorHandled();
}
this._dataItems = null;
if (error && !errorHandled) {
alert(error.message);
}
}
// ASP.NET 3.5
function Sys$WebForms$PageRequestManager$_endPostBack(error, executor, data) {
if (this._request === executor.get_webRequest()) {
this._processingRequest = false;
this._additionalInput = null;
this._request = null;
}
var handler = this._get_eventHandlerList().getHandler("endRequest");
var errorHandled = false;
if (handler) {
var eventArgs = new Sys.WebForms.EndRequestEventArgs(error, data ? data.dataItems : {}, executor);
handler(this, eventArgs);
errorHandled = eventArgs.get_errorHandled();
}
if (error && !errorHandled) {
throw error;
}
}
</code></pre>
<p>If you want the Alert to appear in your ASP.NET AJAX 3.5 code, you just need to make some small changes.</p>
<p>First, you need to add an handler for the ScriptManager's AsyncPostBackError event and then set the AsyncPostBackErrorMessage.</p>
<pre><code>protected void ScriptManager1_AsyncPostBackError(object sender, AsyncPostBackErrorEventArgs e)
{
ScriptManager1.AsyncPostBackErrorMessage = e.Exception.Message;
}
</code></pre>
<p>Then you need to add a handler for the client-side PageRequestManager's endRequest event. In there, you can get the AsyncPostBackErrorMessage set on the server-side and use an Alert to display the message to the user.</p>
<pre><code>function pageLoad()
{
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(onEndRequest);
}
function onEndRequest(sender, args)
{
var msg = args.get_error().message;
alert(msg);
args.set_errorHandled(true);
}
</code></pre>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/1345430/how-do-i-call-a-web-service-in-vb6/1345533#13455331Answer by Rob Windsor for How do I call a Web Service in VB6?Rob Windsor2009-08-28T07:27:10Z2009-08-28T07:27:10Z<p>You need to create a Type Mapper.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa480501.aspx" rel="nofollow">Microsoft SOAP Toolkit Type Mappers</a></p>
<p>If you have the opportunity, you can make things much easier by creating the code to call the web service in VB.NET and then using interop to invoke it from VB 6.0.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa730836%28VS.80%29.aspx" rel="nofollow">Calling Web Services from Visual Basic 6, the Easy Way</a></p>
http://stackoverflow.com/questions/1321659/sharepoint-feature-basics/1321938#13219381Answer by Rob Windsor for SharePoint : Feature basicsRob Windsor2009-08-24T11:59:09Z2009-08-24T11:59:09Z<p>Hmmm... it looks like you have done everything correctly. Did you copy and paste the ID for the Field from anywhere? If so, the ID may already be in use causing your Field provision to be ignored.</p>
<p>I find the best way to create a Feature defining Site Columns and Content Types is to prototype everything using the Web interface and then copy and paste the generated CAML into your Visual Studio projects. I recorded a short video demonstrating the process that you may find valuable.</p>
<p><a href="http://www.vimeo.com/5665655" rel="nofollow">SharePoint Site Columns and Content Types via a Feature</a></p>
http://stackoverflow.com/questions/1139008/lookup-field-as-a-site-column-via-caml0Lookup Field as a Site Column via CAMLRob Windsor2009-07-16T17:17:26Z2009-08-19T12:02:37Z
<p>I'm trying to create a Lookup Field as a Site Column via CAML. The list I want to use as the source of the lookup is created in the Feature Receiver so I don't know it's ID. I've read several blog posts that indicate that I can just put the path to the list in the List attribute. It seems from the comments on these post that this solution works for some people but not for others. I'm in the latter group.</p>
<p>When I try to associate a content type that uses the lookup site column I: "Exception from HRESULT: 0x80040E07" </p>
<pre><code><Field
ID="{da94e56b-428f-4b95-b4c6-24aed0256475}"
Name="Test_x0020_Lookup_x0020_Column"
StaticName="Test_x0020_Lookup_x0020_Column"
DisplayName="Test Lookup Column"
Type="Lookup"
Required="FALSE"
List="Lists/Test"
ShowField="Title"
PrependId="TRUE"
Group="Test Site Columns" />
<ContentType
ID="0x0100B6D92594DDCE8E479D0EB0C414C463B0"
Name="Test Lookup Content Type"
Version="0"
Group="Test Content Types">
<FieldRefs>
<FieldRef
ID="{da94e56b-428f-4b95-b4c6-24aed0256475}"
Name="Test_x0020_Lookup_x0020_Column"
Required="TRUE" />
</FieldRefs>
</ContentType>
</code></pre>
http://stackoverflow.com/questions/1238641/sharepoint-package-setup/1238862#12388623Answer by Rob Windsor for sharepoint package setupRob Windsor2009-08-06T13:23:33Z2009-08-06T13:23:33Z<p>The first thing you need to understand is Solution Packages. They are the unit of deployment in SharePoint.</p>
<p><a href="http://msdn.microsoft.com/en-ca/library/bb466225.aspx" rel="nofollow">Creating a Solution Package in Windows SharePoint Services 3.0</a></p>
<p>However, Solution Packages are meant to be deployed by SharePoint Administrators. They don't have a user friendly installation process.</p>
<p>If you want something more like an installer, you can look at the <a href="http://www.codeplex.com/sharepointinstaller" rel="nofollow">SharePoint Solution Installer CodePlex</a> project.</p>
http://stackoverflow.com/questions/1233086/what-does-refactoring-mean-to-you/1233110#12331107Answer by Rob Windsor for What does refactoring mean to you?Rob Windsor2009-08-05T13:01:33Z2009-08-05T13:01:33Z<p>According to Martin Fowler:</p>
<blockquote>
<p>Refactoring is a disciplined technique
for restructuring an existing body of
code, altering its internal structure
without changing its external
behavior. Its heart is a series of
small behavior preserving
transformations. Each transformation
(called a 'refactoring') does little,
but a sequence of transformations can
produce a significant restructuring.
Since each refactoring is small, it's
less likely to go wrong. The system is
also kept fully working after each
small refactoring, reducing the
chances that a system can get
seriously broken during the
restructuring.</p>
</blockquote>
<p>For more information, check out: <a href="http://www.refactoring.com/" rel="nofollow">http://www.refactoring.com/</a></p>
http://stackoverflow.com/questions/1213092/how-to-take-the-first-ten-records-from-a-dataview/1213204#12132041Answer by Rob Windsor for How to take the first ten records from a DataView?Rob Windsor2009-07-31T15:30:46Z2009-07-31T15:30:46Z<p>If you're using .NET 3.5 you could use a LINQ query. Something like:</p>
<p>var query = (from row in dv select row).Take(10)</p>
http://stackoverflow.com/questions/1205050/how-to-retrieve-the-list-of-sharepoint-sites-user-has-access-to-from-a-windows/1205134#12051342Answer by Rob Windsor for How to retrieve the list of sharepoint sites, user has access to , from a windows application.Rob Windsor2009-07-30T08:12:55Z2009-07-30T08:12:55Z<p>Webs.asmx should do the trick. Here's a snippet to get you started.</p>
<pre><code>Dim rootNode As XmlNode = Nothing
Using ws As New WebsProxy.Webs
ws.PreAuthenticate = True
ws.UseDefaultCredentials = True
ws.Url = <site collection address> + "/_vti_bin/webs.asmx"
rootNode = ws.GetWebCollection()
End Using
</code></pre>
http://stackoverflow.com/questions/1202663/moss-image-library-approval/1203634#12036341Answer by Rob Windsor for moss image library approvalRob Windsor2009-07-29T23:26:52Z2009-07-29T23:26:52Z<p>Yes you can. Go to <strong>Document Library Settings -> Versioning settings</strong> and in the <strong>Draft Item Security</strong> section, select <strong>Only users who can approved items (and the author of the item)</strong></p>
http://stackoverflow.com/questions/1159582/how-to-index-a-string-array/1159616#11596160Answer by Rob Windsor for How to index a string array Rob Windsor2009-07-21T14:38:43Z2009-07-21T14:38:43Z<p>How about an extension method?</p>
<pre><code>public static class Extensions
{
public static void StartTime(this string[] array, string value)
{
array[0] = value;
}
}
</code></pre>
http://stackoverflow.com/questions/1158507/opening-excel-workbooks-with-default-credentials-on-sharepoint-server/1158707#11587071Answer by Rob Windsor for Opening Excel Workbooks with default Credentials on Sharepoint serverRob Windsor2009-07-21T11:43:57Z2009-07-21T11:43:57Z<p>If you are working with Excel 2007 files then you don't need to use automation to open and read the files.</p>
<p>Excel 2007 (xlsx) files use the OpenXML file format. That is, they are basically just a set of XML documents wrapped up as a ZIP file. You can use the .NET Framework's Packaging API and the OpenXML SDK to create, read, and modify these documents.</p>
<p>Here are some resources:</p>
<p>Welcome to the Open XML Format SDK 2.0
<a href="http://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb448854(office.14).aspx</a></p>
<p>OpenXML Developer
<a href="http://openxmldeveloper.org/default.aspx" rel="nofollow">http://openxmldeveloper.org/default.aspx</a></p>
<p>Reading Data from SpreadsheetML
<a href="http://blogs.msdn.com/brian%5Fjones/archive/2008/11/10/reading-data-from-spreadsheetml.aspx" rel="nofollow">http://blogs.msdn.com/brian_jones/archive/2008/11/10/reading-data-from-spreadsheetml.aspx</a></p>
http://stackoverflow.com/questions/1155582/net-class-helper-method/1155620#11556201Answer by Rob Windsor for .Net class helper methodRob Windsor2009-07-20T20:00:42Z2009-07-20T20:00:42Z<p>Extension Methods. You can add the Randomize method to List. This code was written here so it may not complile. It should give you a start though.</p>
<pre><code>public static class Extenstions
{
public static List<T> Randomize<T>(this List<T> list)
{
// randomize into new list here
}
}
</code></pre>
http://stackoverflow.com/questions/1142014/how-to-copy-splistitem-from-one-splist-to-another-splist/1142066#11420661Answer by Rob Windsor for How to copy SPListitem from one SPList to Another SPListRob Windsor2009-07-17T08:42:45Z2009-07-17T08:42:45Z<p>The SPListItem type has a CopyTo method that will do what you want.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.copyto.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.copyto.aspx</a></p>
http://stackoverflow.com/questions/1135740/how-and-where-to-learn-the-changes-in-net-from-net-2-0-to-net-3-5/1135750#11357500Answer by Rob Windsor for How and where to learn the changes in .net from .net 2.0 to .net 3.5?Rob Windsor2009-07-16T06:27:41Z2009-07-16T06:27:41Z<p>This is a good start:</p>
<p>What's New in the .NET Framework Version 3.5</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb332048.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb332048.aspx</a></p>
http://stackoverflow.com/questions/1650093/creating-and-updating-site-columns-in-moss-publishing-site/1650196#1650196Comment by Rob Windsor on Creating and updating site columns in MOSS publishing siteRob Windsor2009-11-01T16:30:28Z2009-11-01T16:30:28ZYou could script the deployment as Colin suggests or you could use the SharePoint Solution Installer (<a href="http://www.codeplex.com/sharepointinstaller" rel="nofollow">codeplex.com/sharepointinstaller</a>) to create a setup program that will do it for you.http://stackoverflow.com/questions/1233086/what-does-refactoring-mean-to-you/1233110#1233110Comment by Rob Windsor on What does refactoring mean to you?Rob Windsor2009-08-05T19:40:55Z2009-08-05T19:40:55ZAh right. I answered based on the original question title. I should have read further.http://stackoverflow.com/questions/650555/how-to-use-settings-in-visual-cComment by Rob Windsor on How to use settings in Visual C#Rob Windsor2009-03-16T14:12:41Z2009-03-16T14:12:41ZFor future reference - a Google search of 'settings c#' had the article suggested by Alekc as the first item. http://stackoverflow.com/questions/542280/webpart-connections-asp-net-vb/556434#556434Comment by Rob Windsor on Webpart Connections asp.net VBRob Windsor2009-02-23T22:22:13Z2009-02-23T22:22:13ZHi James,
Glad I could help.
You should mark my response or your follow-up as the answer or the system will continue to show this question as unanswered.http://stackoverflow.com/questions/234994/what-is-the-best-way-to-compare-net-performance-vs-vb-6-performance-at-a-custom/235021#235021Comment by Rob Windsor on What is the best way to compare .NET performance vs. VB 6 performance at a customer site?Rob Windsor2008-10-24T19:58:06Z2008-10-24T19:58:06ZVB 5.0 and 6.0 have native compilation