User Nathan DeWitt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T12:27:48Zhttp://stackoverflow.com/feeds/user/1753http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/936167/how-do-i-determine-the-size-of-a-sharepoint-list1How do I determine the size of a SharePoint list?Nathan DeWitt2009-06-01T18:47:37Z2009-11-19T18:23:19Z
<p>I have a list with roughly 5500 items, and I would like to find out the size on disk. Is there some way I can do this? I don't mind running a query in the database, if necessary.</p>
http://stackoverflow.com/questions/935130/how-do-i-access-the-onresize-event-from-a-sharepoint-web-part0How do I access the onresize event from a SharePoint Web Part?Nathan DeWitt2009-06-01T14:43:34Z2009-11-13T14:47:40Z
<p>I have some JavaScript that will execute within a SharePoint web part. I would like to have a function execute when the window is resized. Normally I would use</p>
<pre><code><html>
<body onresize="resizeFunction();">
</body>
</html>
</code></pre>
<p>but in SharePoint things start to get hairy. I have an onload function that I am able to use thusly:</p>
<pre><code>_spBodyOnLoadFunctionNames.push('myFunctionName');
</code></pre>
<p>and this gets executed in the <code>onLoad</code> event. Is there something similar for <code>onResize</code> events?</p>
http://stackoverflow.com/questions/187506/how-do-you-use-version-control-with-access-development21How do you use version control with Access development?Nathan DeWitt2008-10-09T14:25:29Z2009-11-10T21:28:21Z
<p>I'm involved with updating an Access solution. It has a good amount of VBA, a number of queries, a small amount of tables, and a few forms for data entry & report generation. It's an ideal candidate for Access.</p>
<p>I want to make changes to the table design, the VBA, the queries, and the forms. How can I track my changes with version control? (we use Subversion, but this goes for any flavor) I can stick the entire mdb in subversion, but that will be storing a binary file, and I won't be able to tell that I just changed one line of VBA code.</p>
<p>I thought about copying the VBA code to separate files, and saving those, but I could see those quickly getting out of sync with what's in the database.</p>
http://stackoverflow.com/questions/1474432/can-i-change-the-display-value-of-my-fields-coming-in-from-sharepoint0Can I change the display value of my fields coming in from SharePoint?Nathan DeWitt2009-09-24T22:07:49Z2009-09-25T15:32:21Z
<p>In Dashboard Designer I have created a pivot chart based on data in a SharePoint list, using the Microsoft Data Retrieval Services to connect. My column name is something like <strong>Number of Allocated Items</strong> but this field is displayed in the chart legend as <strong>Sum of Number_0020_of_0020_Alloca</strong>. This is really annoying, especially since my data is already aggregated and having "Sum of" at the beginning is just dumb.</p>
<p>Can I change the display value of this field? I have not been able to find anything in the chart Commands and Options dialog box.</p>
<p>As a last resort, I attempted to edit the dsQuery string in the Data dialog box. The Data Retrieval Services is using a query against DspSts.asmx, which specifies that you can do something like this: </p>
<pre><code><Field Name="Ugly_0020_Name" Alias="Pretty Name" />
</code></pre>
<p>When I modify the connection string to include the <code>Alias</code> I get no data returned. Am I doing it wrong?</p>
http://stackoverflow.com/questions/428450/performance-point-dashboard-designer/1474392#14743920Answer by Nathan DeWitt for Performance Point, Dashboard Designer....Nathan DeWitt2009-09-24T21:58:37Z2009-09-24T21:58:37Z<p>I would do the calculation on your database side. Then it's simple to just pull the caculated value into the dashboard. Dashboard Designer isn't the best at doing calculations (beyond normal aggregations like sum, average, etc).</p>
http://stackoverflow.com/questions/444632/how-to-disable-field-list-at-runtime-in-performancepoint/1474368#14743680Answer by Nathan DeWitt for how to disable field list at runtime in performancepoint?Nathan DeWitt2009-09-24T21:53:07Z2009-09-24T21:53:07Z<p>Edit the chart in Dashboard Designer. In the <strong>Commands and Options</strong> dialog box select <strong>Chart Workspace</strong> in the drop down list. Once you do that, the tab <strong>Show/Hide</strong> should appear. On that tab you can clear the checkbox for the Fields List. Clear any other checkboxes in that dialog, and close the window. Click on your chart in DD and make sure the fields list (and any other dialog boxes - ie Commands and Options, Drop Zone, etc) don't appear. Publish your chart and you should be good to go.</p>
http://stackoverflow.com/questions/1404706/unable-to-deploy-performancepoint-dashboard-page-to-sharepoint-2007/1474334#14743340Answer by Nathan DeWitt for Unable to Deploy PerformancePoint Dashboard Page to SharePoint 2007Nathan DeWitt2009-09-24T21:45:59Z2009-09-24T21:45:59Z<p>When you publish a dashboard in MOSS, you have to make sure that you select <strong>Publish a Major Version</strong> in the dashboard page's drop-down in the report library.</p>
<p>Why is this a community wiki? Seems like there should be a right answer to this question...</p>
http://stackoverflow.com/questions/1233169/custom-sql-queries-in-performancepoint-dashboard-designer/1279545#12795450Answer by Nathan DeWitt for Custom SQL queries in PerformancePoint DashBoard designerNathan DeWitt2009-08-14T18:52:33Z2009-09-24T21:40:48Z<p>I'd recommend creating a View in your database and creating a datasource that connects to that view. The view would join all the tables you need.</p>
<p><strong>Edit</strong>:<br />
If you don't have permissions to create a view, you still have some options:</p>
<ol>
<li>stand up a SQL box you control, create a linked server to the one you don't, and create the view in your control</li>
<li>create an Access database, with a linked table to the tables you want. create your view there, and use that as your ODBC datasource in dashboard designer.</li>
<li>Give to the DBA the query you want and ask them to create the view for you. If you have permissions to create the query, there should be no problem creating the view (better performance, stability of the data, etc)</li>
</ol>
http://stackoverflow.com/questions/1401083/installing-office-2007-breaks-data-retrieval-services-in-dashboard-designer0Installing Office 2007 breaks Data Retrieval Services in Dashboard DesignerNathan DeWitt2009-09-09T17:52:12Z2009-09-17T18:22:52Z
<p>I had Office 2003 & Dashboard Designer installed. I was creating a bunch of reports in dashboard designer that started by creating a data source using Microsoft's Data Retrieval Services to connect to a SharePoint list.</p>
<p>I installed Office 2007 and I no longer can create a data source using Data Retrieval Services. I reinstalled Microsoft Office 2003 Web Components, but I still do not have the option to create a report based on a data source pointing to a SharePoint list.</p>
<p>Do I need to install Excel 2003 or something?</p>
http://stackoverflow.com/questions/1401083/installing-office-2007-breaks-data-retrieval-services-in-dashboard-designer/1440520#14405200Answer by Nathan DeWitt for Installing Office 2007 breaks Data Retrieval Services in Dashboard DesignerNathan DeWitt2009-09-17T18:22:52Z2009-09-17T18:22:52Z<p>I installed Excel 2003 side-by-side with Office 2007 and I can now use Data Retrieval Services again.</p>
http://stackoverflow.com/questions/1428983/how-do-i-expose-excel-2003-spreadsheets-to-performancepoint-20071How do I expose Excel 2003 Spreadsheets to PerformancePoint 2007?Nathan DeWitt2009-09-15T18:46:04Z2009-09-15T18:46:04Z
<p>I am working on a PerformancePoint 2007 project. I have a bunch of Excel spreadsheets, and I need to get at the data. The users need to continue to enter data, they have Excel 2003, and I won't be here forever. If the users had Excel 2007 I could just use Excel Web Services in MOSS 2007, but that's a no go.</p>
<p>What are your recommendations for getting the data into a usable state? </p>
<p>Some options are: </p>
<ul>
<li>create an SSIS package to import the data into SQL Server, and teach them how to run the package as time goes on</li>
<li>get the data into SQL Server (SSIS) and then build a web front-end that lets them enter new data </li>
<li>use Access as a proxy for getting the data into SQL Server and use its web access pages to let the users enter new data</li>
</ul>
<p>Any other ideas? I've heard "Business Data Catalog" thrown about, but I'm not sure how it would help...</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1380584/make-scrollbars-disappear-in-performancepoint-strategy-map0Make scrollbars disappear in PerformancePoint Strategy MapNathan DeWitt2009-09-04T17:34:38Z2009-09-15T17:44:16Z
<p>I have a PerformancePoint 2007 strategy map that displays in Visio Viewer within the browser. I can right-click the map and hide the toolbar & the scrollbars. When I refresh they come back. How do I set the default view of Visio Viewer to hide the toolbar and the scrollbars?</p>
http://stackoverflow.com/questions/934561/how-do-i-get-a-web-part-to-refresh-in-ie0How do I get a web part to refresh in IE?Nathan DeWitt2009-06-01T12:07:42Z2009-08-25T15:45:50Z
<p>I have a SharePoint web part that gets XML data from an .ASHX page, parses it and displays it using JavaScript. Everything works fine, until the XML changes. When I view the web part in IE, the new data is not updated until I close the browser. Even doing a CTRL-F5 does not grab the new data.</p>
<p>Firefox displays the new data immediately, with just a simple page refresh.</p>
<p>I have added a timestamp to the query string of my .ASHX page so that the XML result is not cached, but that did not fix my IE woes. Any other ideas?</p>
<p><strong>Edit</strong><br />
The .ASHX page is using the API to access a list and is building the XML string, then returning that as an <code>application/XML</code> content type. I have confirmed that the XML is updated to reflect the new data in the list. I am also able to see the data consumed in the web part when it is displayed in FireFox.</p>
<p><strong>Solution</strong><br />
I actually was generating the timestamp to append to my query in the server code, and then putting that string in the javascript. Once I moved the timestamp code to the javascript, things started working much better.</p>
http://stackoverflow.com/questions/706642/how-should-i-store-old-dates-in-sharepoint4How should I store old dates in SharePoint?Nathan DeWitt2009-04-01T17:45:25Z2009-08-25T15:42:25Z
<p>I need to store dates in SharePoint that need to go back around 5000 BC. Ideally, I would like to be able to do date addition/subtraction, like this:</p>
<pre><code>oldDate = '5000 BC';
newDate = '1995 AD';
DateDiff(oldDate, newDate, 'Years'); // equals 6995
</code></pre>
<p>How should I proceed? Build an old_date class based on strings? Just use regular dates, but add an AD or BC that makes the date negative?</p>
http://stackoverflow.com/questions/706642/how-should-i-store-old-dates-in-sharepoint/1329134#13291340Answer by Nathan DeWitt for How should I store old dates in SharePoint?Nathan DeWitt2009-08-25T15:42:25Z2009-08-25T15:42:25Z<p>I ended up storing dates as a text field in ISO 8601 format:<br />
<code>YYYY-MM-DDThh:mm:ss.sTZD</code></p>
<p>You don't have to store the entire string, for instance if you wanted to store 5000 BC, you would enter <code>-5000-01-01</code>. I don't get my date addition and subtraction very easily, but it was much easier to get the data in there in the format I wanted.</p>
http://stackoverflow.com/questions/1135199/how-do-i-sync-my-development-with-the-users1How do I sync my development with the users?Nathan DeWitt2009-07-16T02:57:07Z2009-08-25T15:36:32Z
<p>I create websites for people. I have given them the ability to edit certain areas of their published pages using CushyCMS. That works fine, and everyone is happy with it.</p>
<p>When I go to publish some of my more extensive changes, I first need to pull down the latest version that they have produced. Then I make my changes, and upload everything to production.</p>
<p>I would like to use some sort of version control in this process. This should be a classic update-edit-commit-publish workflow, but I'm not sure how to go about this. Basically I want to avoid pulling down everything locally and doing the commits. I only want to pull down what has changed.</p>
<p>I use filezilla, and it doesn't do a good job of identifying changed files. I can't rely on the filesize, because sometimes it stays the same. I can't rely on timestamps because the server time is different than my machine, and it never seems to work correctly.</p>
<p>How can I get around my problem? I use Notepad++, Subversion and FileZilla, but I'm willing to try other tools if they would make this process easier.</p>
http://stackoverflow.com/questions/1135199/how-do-i-sync-my-development-with-the-users/1329095#13290951Answer by Nathan DeWitt for How do I sync my development with the users?Nathan DeWitt2009-08-25T15:36:32Z2009-08-25T15:36:32Z<p>I found that it was easiest to use a tool like <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> to handle the synchronization. </p>
http://stackoverflow.com/questions/1306419/query-to-linked-server-never-stops-executing0Query to Linked Server never stops executingNathan DeWitt2009-08-20T14:03:31Z2009-08-22T12:44:46Z
<p>I have created a linked server in SQL Server 2005 to an Oracle DB. When I run a query, The query never stops executing, and never returns results. When I cancel the query, it never completes cancelling. I have to close the window to get it to stop.</p>
<p>I have set things up as follows:</p>
<ul>
<li>Installed Oracle Client Tools on SQL Server</li>
<li><p>Ran following query: </p>
<p><code>EXEC sp_addlinkedserver<br />
@server = 'MyNewLinkedServer',<br />
@srvproduct = 'Oracle',<br />
@provider = 'OraOLEDB.Oracle',<br />
@datasrc = 'TNSNAMES_Entry'</code></p></li>
<li><p>I then added the TNSNAMES.ORA file to <code>ORAHOME1\network\admin\</code> directory. </p></li>
<li>In Properties for my Linked Server, I changed the Security settings to <code>Be made using this security context:</code> for all connections using my Oracle username/password</li>
<li><p>I ran the following query:</p>
<p><code>SELECT * FROM OPENQUERY(MyNewLinkedServer, 'SELECT COUNT(*) FROM MySchema.MyTable'); </code></p></li>
</ul>
<p>The query never completes execution. Anyone have any insights? Any steps I'm missing?</p>
<p>UPDATE:<br />
I came in the following day and tried the query again and it worked just fine. I suspect network issues of some sort.</p>
http://stackoverflow.com/questions/1300951/start-learning-c-without-knowing-c/1300966#13009663Answer by Nathan DeWitt for Start learning C# without knowing C ?Nathan DeWitt2009-08-19T16:03:40Z2009-08-19T16:03:40Z<p>While C is a good language to learn in general, I do not believe you will get any specific knowledge that will help you learn C#. </p>
http://stackoverflow.com/questions/1285989/learning-sharepoint-at-home/1286070#12860701Answer by Nathan DeWitt for Learning sharepoint at homeNathan DeWitt2009-08-17T03:43:11Z2009-08-17T03:43:11Z<p>Virtual Machine is the way to go, along with the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=67f93dcb-ada8-4db5-a47b-df17e14b2c74&displaylang=en" rel="nofollow">time-bombed SharePoint 2007 dev environment VM</a>. This VM expires in 30 days, but if you are an MSDN or TechNet subscriber then you can activate it for another 4 or 5 months.</p>
<p>Use Virtual PC or Virtual Server, they're both free and they read VHDs.</p>
<p>The "run MOSS on XP/Vista/Win7" from Bamboo is not a bad solution, if you're just looking to learn. But the virtual machine is the best way to go.</p>
http://stackoverflow.com/questions/721895/performancepoint-scorecards-one-scorecard-shared-by-many-uses/1279509#12795090Answer by Nathan DeWitt for performancepoint scorecards - one scorecard shared by many usesNathan DeWitt2009-08-14T18:44:27Z2009-08-14T18:44:27Z<p>If you create one scorecard with all the kpis on there, and only grant access on the KPI level, you'll get a barebones approach to what you want. The data for each KPI that a user does not have access to will show as blank.</p>
http://stackoverflow.com/questions/1107753/whats-a-good-version-control-for-a-mac-environment2What's a good version control for a Mac environment?Nathan DeWitt2009-07-10T04:54:09Z2009-07-10T18:48:51Z
<p>I'm a Windows developer looking to do some Cocoa dev on a Mac. I'm familiar with Subversion, TFS, Sourcegear Vault, CVS and VSS in a Windows environment. What version control should I look at using in my new, unfamiliar Mac environment?</p>
<p>I will be doing 95% of the development, with the other 5% coming from one or two other people. However, it is probably safe to assume I will be the only one making commits.</p>
<p>Is there a good Subversion client for Macs? I have a repository already setup that I could use, but I also wouldn't mind using something else. What do you recommend?</p>
http://stackoverflow.com/questions/1032837/personalize-this-page-changes-on-personal-view-not-saving-sharepoint/1035196#10351961Answer by Nathan DeWitt for "Personalize this Page" changes on Personal View not saving - sharepoint Nathan DeWitt2009-06-23T21:01:10Z2009-06-23T21:13:48Z<p>Create your view, make it personal. </p>
<p>Personalize the page, adding your web part.</p>
<p>Then exit edit mode. In the query string, delete the <code>&ShowWebPart=GUID</code> part. Your personal web part should show up.</p>
<p>Personal views each have a GUID. The selector in a list view uses the querystring to show which view to display, hence the <code>ShowWebPart</code> parameter. I don't believe there is any way to override the behavior in the list selector to <strong>not</strong> use that <code>ShowWebPart</code> parameter, without great effort.</p>
http://stackoverflow.com/questions/1002812/sharepoint-permissions-issues-access-denied/1002916#10029160Answer by Nathan DeWitt for sharepoint permissions issues - "Access Denied"Nathan DeWitt2009-06-16T17:37:13Z2009-06-16T17:37:13Z<p>when do they get the access denied error? hitting the site? </p>
<p>are you sure that the user you're adding to the group is the same user you're logging in as? Sometimes if you have multiple user stores you can add different users to the group: DOMAIN\joe.user, forms:joe.user, someotheraccountstore:joe.user, etc.</p>
http://stackoverflow.com/questions/1001122/oo-design-vs-database-design/1001152#10011521Answer by Nathan DeWitt for OO Design vs Database DesignNathan DeWitt2009-06-16T12:24:53Z2009-06-16T12:24:53Z<p>If you know that your data is going into three separate tables, then I would normally have three separate DA classes.</p>
<p>However, if your tables are pretty much exactly the same, then you could genericize the TransactionDA and simplify your data layer. I would only do this if you know that you will have high volume of transactions and are going to be separating out your tables into different files or something, otherwise I would probably just simplify things and combine it all.</p>
<p>Don't try to create a TransactionDA unless all your separate transaction types are <strong>extremely</strong> similar.</p>
http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/992723#9927231Answer by Nathan DeWitt for What software for your own personal use did you write?Nathan DeWitt2009-06-14T12:23:47Z2009-06-14T12:23:47Z<p>I wrote a Windows Service that counted down the time to the first Lord of the Rings release. It had a One Ring that would sit in the system tray, and when you hovered over it would tell you the time remaining. There were other options when you clicked on the ring - I think opening the LOTR web page or something like that.</p>
http://stackoverflow.com/questions/959015/links-sometimes-dont-work-in-ie0Links sometimes don't work in IENathan DeWitt2009-06-06T04:45:33Z2009-06-06T11:32:08Z
<p>I have a webpage that uses sprites for its navigation link. In IE7 sometimes the links are not clickable. It works fine in IE8 and Firefox. Anyone encountered this before? </p>
<p><a href="http://blazemanifesto.com" rel="nofollow">http://blazemanifesto.com</a></p>
<p>Thanks.</p>
<p><strong>Edit</strong><br />
To clarify, on my computer, everything works fine. (Vista, IE8, Firefox 3, Chrome, Safari). I had a complaint from some users that the main nav wasn't clickable. Honestly, I thought "user error" and didn't look much further. Last night I saw my wife browsing the site (Vista, IE7), and noticed some times when she hovered over a link it was not clickable. The mouse pointer did not turn into a hand, and the link itself did not turn white. Clicking did nothing. Some links work fine, some are sporadic, some never work.</p>
<p>I've never seen this before, so I decided to ask you guys.</p>
http://stackoverflow.com/questions/957619/store-data-in-a-list-definition-sharepoint/957681#9576810Answer by Nathan DeWitt for store data in a list definition sharepointNathan DeWitt2009-06-05T19:23:58Z2009-06-05T19:23:58Z<p>The data in a lookup field is stored in the other list. So that data would not be pulled from the other list.</p>
<p>If you wanted this solution to be portable, you could create the lookup list(s) at the same time you create your main list, and then prepopulate it with whatever data you wanted. You just want to be sure to create the lookup lists first so that your lookup fields can find the list to connect to.</p>
http://stackoverflow.com/questions/898291/sharepoint-get-value-of-calculated-field-without-manual-parsing/898324#8983244Answer by Nathan DeWitt for SharePoint - get value of calculated field without manual parsingNathan DeWitt2009-05-22T15:00:36Z2009-05-22T15:10:53Z<p>You have to cast it to an SPCalculatedField:</p>
<pre><code>SPFieldCalculated cf = (SPFieldCalculated)myItem.Fields["CIDandTitle"];
string value = cf.GetFieldValueForEdit(myItem["CIDandTitle"]);
</code></pre>
<p>or </p>
<pre><code>string value = cf.GetFieldValueAsText(myItem["CIDandTitle"]);
</code></pre>
http://stackoverflow.com/questions/889569/how-do-you-embed-other-programming-languages-into-your-code5How do you embed other programming languages into your code?Nathan DeWitt2009-05-20T18:47:38Z2009-05-21T19:50:55Z
<p>Using C# for ASP.NET and MOSS development, we often have to embed JavaScript into our C# code. To accomplish this, there seems to be two prevalent schools of thought:</p>
<pre><code>string blah = "asdf";
StringBuilder someJavaScript = new StringBuilder();
someJavaScript.Append("<script language='JavaScript' >");
someJavaScript.Append("function foo()\n");
someJavaScript.Append("{\n");
someJavaScript.Append(" var bar = '{0}';\n", blah);
someJavaScript.Append("}\n");
someJavaScript.Append("</script>");
</code></pre>
<p>The other school of thought is something like this: </p>
<pre><code>string blah = "asdf";
string someJavaScript = @"
<script language='JavaScript' >
function foo()
{
var bar = '" + blah + @"';
}
</script>";
</code></pre>
<p>Is there a better way than either of these two methods? I like the second personally, as you can see the entire section of JavaScript (or other language block, whether SQL or what have you), and it also aids in copying the code between another editor for that specific language.</p>
<p>Edit:<br />
I should mention that the end goal is having formatted JavaScript in the final web page.</p>
<p>I also changed the example to show interaction with the generated code.</p>
http://stackoverflow.com/questions/353485/how-do-you-insert-a-query-value-as-a-parameter-in-sharepoint-designer/386491#386491Comment by Nathan DeWitt on How do you insert a query value as a parameter in sharepoint designer?Nathan DeWitt2009-12-02T19:03:39Z2009-12-02T19:03:39Zbug in sharepoint designer.http://stackoverflow.com/questions/1404706/unable-to-deploy-performancepoint-dashboard-page-to-sharepoint-2007/1474334#1474334Comment by Nathan DeWitt on Unable to Deploy PerformancePoint Dashboard Page to SharePoint 2007Nathan DeWitt2009-09-30T14:35:56Z2009-09-30T14:35:56Zah. I see. Well, once you get it published, don't forget to do the major version thing.http://stackoverflow.com/questions/1233169/custom-sql-queries-in-performancepoint-dashboard-designer/1279545#1279545Comment by Nathan DeWitt on Custom SQL queries in PerformancePoint DashBoard designerNathan DeWitt2009-09-24T21:40:27Z2009-09-24T21:40:27ZI updated my answer to reflect the limited access.http://stackoverflow.com/questions/1135199/how-do-i-sync-my-development-with-the-users/1329095#1329095Comment by Nathan DeWitt on How do I sync my development with the users?Nathan DeWitt2009-08-25T19:45:07Z2009-08-25T19:45:07ZI couldn't tell if WinMerge can compare an FTP folder... any idea?http://stackoverflow.com/questions/1306419/query-to-linked-server-never-stops-executing/1314356#1314356Comment by Nathan DeWitt on Query to Linked Server never stops executingNathan DeWitt2009-08-22T12:45:34Z2009-08-22T12:45:34ZI'm going to accept your answer even though the query just started working by itself. Thanks for commenting.http://stackoverflow.com/questions/1311825/what-course-is-missing-from-the-cs-is-education/1311842#1311842Comment by Nathan DeWitt on What course is missing from the CS/IS education.Nathan DeWitt2009-08-21T13:18:19Z2009-08-21T13:18:19ZThis was in my CS curriculum.http://stackoverflow.com/questions/1279301/how-to-tell-with-objective-c-if-the-iphone-is-connected-to-a-wifi-network/1279447#1279447Comment by Nathan DeWitt on How to tell with Objective-C if the iPhone is connected to a wifi network?Nathan DeWitt2009-08-14T18:38:56Z2009-08-14T18:38:56Zdoesn't this check if you can get to the website? Would this return a value if you were able to connect via 3G? Would this tell you that you're not connected if the website is down, even though you are connected? Doesn't sound like it answers the orig question...http://stackoverflow.com/questions/1127546/win32-vs-net/1127565#1127565Comment by Nathan DeWitt on Win32 vs .NetNathan DeWitt2009-07-14T20:19:12Z2009-07-14T20:19:12Zmaybe JB King was thinking that .NET apps require more resources, and with the advent of x64 and 4+ GB of RAM that's not an issue anymore... #benefitofthedoubthttp://stackoverflow.com/questions/58640/great-programming-quotes/151145#151145Comment by Nathan DeWitt on Great programming quotesNathan DeWitt2009-07-08T15:57:02Z2009-07-08T15:57:02ZThis isn't a very good programming quote. And I'm just testing <i>italics</i> and <b>bold</b> and <code>code</code>.
<code>x = 5 + y</code>http://stackoverflow.com/questions/1032837/personalize-this-page-changes-on-personal-view-not-saving-sharepoint/1035196#1035196Comment by Nathan DeWitt on "Personalize this Page" changes on Personal View not saving - sharepoint Nathan DeWitt2009-06-23T21:14:47Z2009-06-23T21:14:47ZIt actually displays <i>all</i> the views created. Create two views, navigate to that page, then scroll down.http://stackoverflow.com/questions/1032837/personalize-this-page-changes-on-personal-view-not-saving-sharepoint/1035196#1035196Comment by Nathan DeWitt on "Personalize this Page" changes on Personal View not saving - sharepoint Nathan DeWitt2009-06-23T21:11:02Z2009-06-23T21:11:02Zshowing all the views they create on the same page is no good, huh?http://stackoverflow.com/questions/1032837/personalize-this-page-changes-on-personal-view-not-saving-sharepoint/1035196#1035196Comment by Nathan DeWitt on "Personalize this Page" changes on Personal View not saving - sharepoint Nathan DeWitt2009-06-23T21:03:51Z2009-06-23T21:03:51Zput a link on the nav bar on the left to the page without the GUID in the querystring. Permanency FTW.http://stackoverflow.com/questions/997086/vista-style-explorer-folder-viewComment by Nathan DeWitt on Vista style explorer/folder viewNathan DeWitt2009-06-15T16:40:18Z2009-06-15T16:40:18Zsecond link is generating a 404 not found error.http://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint/249711#249711Comment by Nathan DeWitt on What's the best way to link to an external style sheet in SharePointNathan DeWitt2009-06-11T19:01:46Z2009-06-11T19:01:46ZJust checked - Page.IsClientScriptBlockRegistered is obsolete and will generate a compiler warning with anything above .NET 1.1http://stackoverflow.com/questions/248738/whats-the-best-way-to-link-to-an-external-style-sheet-in-sharepoint/249711#249711Comment by Nathan DeWitt on What's the best way to link to an external style sheet in SharePointNathan DeWitt2009-06-11T17:42:17Z2009-06-11T17:42:17Zisn't this for SPS 2003? How would this work with MOSS 2007?