User Ben Collins - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:38:08Z http://stackoverflow.com/feeds/user/3279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/816575/silverlight-toolkit-accordion-in-treeview 0 Silverlight Toolkit Accordion in TreeView Ben Collins 2009-05-03T08:23:39Z 2009-12-19T07:26:41Z <p>I'm trying to get the SL Tookit (March 2009) Accordion control to populate the ItemTemplate of a TreeView control, but it doesn't render properly (just a 1x1 pixel square). </p> <p>Here's my XAML:</p> <pre><code>&lt;UserControl x:Class="SilverlightTest.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:tk="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit" xmlns:tkw="clr-namespace:System.Windows;assembly=System.Windows.Controls.Toolkit" xmlns:lo="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Layout.Toolkit" Width="400" Height="300"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;tk:TreeView Name="tv"&gt; &lt;tk:TreeView.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;lo:Accordion Name="acc" SelectionMode="ZeroOrMore"&gt; &lt;lo:Accordion.HeaderTemplate&gt; &lt;DataTemplate&gt; &lt;TextBlock Text="{Binding Key}"/&gt; &lt;/DataTemplate&gt; &lt;/lo:Accordion.HeaderTemplate&gt; &lt;lo:Accordion.ContentTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;TextBlock Text="Value: "/&gt; &lt;TextBlock Text="{Binding Value}"/&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/lo:Accordion.ContentTemplate&gt; &lt;/lo:Accordion&gt; &lt;/DataTemplate&gt; &lt;/tk:TreeView.ItemTemplate&gt; &lt;/tk:TreeView&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>And the codebehind:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace SilverlightTest { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); KeyValuePair&lt;string, string&gt;[] data = new KeyValuePair&lt;string,string&gt;[] { new KeyValuePair&lt;string, string&gt;("Item 1", "Apple"), new KeyValuePair&lt;string, string&gt;("Item 2", "Banana"), new KeyValuePair&lt;string, string&gt;("Item 3", "Grapefruit"), new KeyValuePair&lt;string, string&gt;("Item 4", "Kiwi") }; tv.ItemsSource = data; } } } </code></pre> <p>What can I do to make this do what I want?</p> http://stackoverflow.com/questions/1662471/vsewss-phantom-feature-cant-be-deleted 0 VSeWSS phantom feature can't be deleted Ben Collins 2009-11-02T17:04:37Z 2009-12-03T15:29:20Z <p>After doing a subversion merge with a co-worker, my VSeWSS project no longer build correctly. It creates two features for a single webpart feature (before the merge, this didn't happen). If the name of the feature is "MyFeature', VSeWSS always creates a second folder called 'MyFeature_2' and adds it to the solution manifest. </p> <p>I've tried deleting everything I know to delete: pkg/MyFeature_2, the entry from pkg/manifest.xml, and the incorrect feature id in pkg/solution.xml (which gets generated every time I build the wsp). I've deleted bin/Debug/solution. After that, I have no idea where VSeWSS is getting information telling it to add a second feature.</p> <p>I've also tried completely removing that feature and re-adding it from scratch, but the same behavior persists. In the WSP view, the 'delete feature' button is enabled for the "true" feature, but disabled for the generated one. however, if I try to delete the true one, it fails and reports a permission error on pkg/MyFeature/.svn/all-wcprops. </p> <p>Grr.</p> http://stackoverflow.com/questions/1662777/vsewss-an-item-with-the-same-key-has-already-been-added 1 VSeWSS "An item with the same key has already been added" Ben Collins 2009-11-02T18:09:19Z 2009-12-03T15:29:10Z <p>During the package phase of a VSeWSS deployment, an exception is thrown. From the logs:</p> <blockquote> <p>2009/11/02 11:59:46 Error System.ArgumentException: An item with the same key has already been added.<br /> at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) at System.Collections.Generic.Dictionary<code>2.Insert(TKey key, TValue value, Boolean add) at System.Collections.Generic.Dictionary</code>2.Add(TKey key, TValue value) at Microsoft.SharePoint.Tools.SharePointProxies.WSPViewFacade.CreateWebPartReferenceResolverClassMap(String[] paths) at VSeWSS.Server.Services.SPService.CreateWebPartReferenceResolverClassMap(String[] paths)</p> </blockquote> <p>Has anyone seen this before? I have checked all my feature.xml files and my solution.xml to see if any id's have been duplicated, and they aren't. I've also checked the names of features, and they also have not been duplicated. Any hints?</p> http://stackoverflow.com/questions/70347/zlib-compatible-compression-streams 0 Zlib-compatible compression streams? Ben Collins 2008-09-16T08:25:33Z 2009-11-30T10:59:28Z <p>Are System.IO.Compression.GZipStream or System.IO.Compression.Deflate compatible with zlib compression?</p> http://stackoverflow.com/questions/1801165/django-template-url-function-not-matching-in-app 0 django template url function not matching in app Ben Collins 2009-11-26T01:55:51Z 2009-11-26T22:45:34Z <p>I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. I've also got a template that uses the 'url' function to resolve a url on a view, defined in the openidgae module. The problem is that after the httprequest is routed to pub.views.index (like it's supposed to), I try to respond by rendering a template that uses the template 'url' function. The code I'm showing below is also here: <a href="http://gist.github.com/243158" rel="nofollow">http://gist.github.com/243158</a></p> <p>Here's my top-level urls.py:</p> <pre><code>from django.conf.urls.defaults import * urlpatterns = patterns('', (r'', include('openidgae.urls')), (r'^pub', include('pub.urls')), ) </code></pre> <p>and pub/urls.py:</p> <pre><code>from django.conf.urls.defaults import * urlpatterns = patterns('', (r'', 'pub.views.index'), (r'^/$', 'pub.views.index'), ) </code></pre> <p>and templates/base.html:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt; &lt;title&gt;{% block title %}My amazing site{% endblock %}&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="header"&gt; {% if lip %} Welcome {{ lip.pretty_openid }} &lt;a href="{% url openidgae.views.LogoutSubmit %}"&gt;logout&lt;/a&gt; {% else %} &lt;form id="login-form" action="{% url openidgae.views.OpenIDStartSubmit %}?continue={{continueUrl}}" method="post"&gt; &lt;input type="text" name="openid_identifier" id="openid_identifier" /&gt; &lt;input type="submit" value="Verify" /&gt; &lt;/form&gt; &lt;!-- BEGIN ID SELECTOR --&gt; &lt;script type="text/javascript" id="__openidselector" src="https://www.idselector.com/selector/46b0e6d0c8ba5c8617f6f5b970865604c9f87da5" charset="utf-8"&gt;&lt;/script&gt; &lt;!-- END ID SELECTOR --&gt; {% endif %} &lt;/div&gt; {% block content %}{% endblock %} &lt;/body&gt; &lt;/html&gt; </code></pre> <p>and templates/pub/index.html:</p> <pre><code>{% extends "base.html" %} {% block title %}blahblah!{% endblock %} {% block content %} blahblahblah {% endblock %} </code></pre> <p>and finally, pub/views.py:</p> <pre><code>from django.shortcuts import render_to_response from django.http import HttpResponse from django import forms import openidgae def index(request): lip = openidgae.get_current_person(request, HttpResponse()) resp = render_to_response('pub/index.html', {'lip': lip}) return resp </code></pre> <p>Now, if i set the second pattern in my top-level urls.py to point directly to 'pub.views.index', all works like it should, but not if I use the include function.</p> <p>Any ideas? I'm sure the problem has something to do with the urlpattern that would map the views I'm trying to resolve to urls not being available to the template rendering functions when the HttpRequest is handled by the pub app rather than by the top-level, but I don't understand why or how to fix it. </p> http://stackoverflow.com/questions/1788245/django-unprintable-templatesyntaxerror-object-caused-by-urlconf 0 django unprintable templatesyntaxerror object caused by urlconf? Ben Collins 2009-11-24T06:33:25Z 2009-11-25T09:12:02Z <p>I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don't think it really has anything to do with template rendering, actually, because I stepped through the execution path until just before the render_to_response function completes (which is where the urlconf seems to be causing an error) and the template objects are parsed correctly.</p> <pre><code>Traceback (most recent call last): File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2978, in _HandleRequest base_env_dict=env_dict) File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 411, in Dispatch base_env_dict=base_env_dict) File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2244, in Dispatch self._module_dict) File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2162, in ExecuteCGI reset_modules = exec_script(handler_path, cgi_path, hook) File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2058, in ExecuteOrImportScript exec module_code in script_module.__dict__ File "C:\Users\Ben\Development\workspace\ringbot\src\main.py", line 52, in &lt;module&gt; main() File "C:\Users\Ben\Development\workspace\ringbot\src\main.py", line 49, in main util.run_wsgi_app(application) File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\util.py", line 97, in run_wsgi_app run_bare_wsgi_app(add_wsgi_middleware(application)) File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\util.py", line 115, in run_bare_wsgi_app result = application(env, _start_response) File "C:\Python25\lib\site-packages\django\core\handlers\wsgi.py", line 241, in __call__ response = self.get_response(request) File "C:\Python25\lib\site-packages\django\core\handlers\base.py", line 134, in get_response return self.handle_uncaught_exception(request, resolver, exc_info) File "C:\Python25\lib\site-packages\django\core\handlers\base.py", line 154, in handle_uncaught_exception return debug.technical_500_response(request, *exc_info) File "C:\Python25\lib\site-packages\django\views\debug.py", line 40, in technical_500_response html = reporter.get_traceback_html() File "C:\Python25\lib\site-packages\django\views\debug.py", line 114, in get_traceback_html return t.render(c) File "C:\Python25\lib\site-packages\django\template\__init__.py", line 178, in render return self.nodelist.render(context) File "C:\Python25\lib\site-packages\django\template\__init__.py", line 779, in render bits.append(self.render_node(node, context)) File "C:\Python25\lib\site-packages\django\template\debug.py", line 81, in render_node raise wrapped TemplateSyntaxError: &lt;unprintable TemplateSyntaxError object&gt; </code></pre> <p>Here is my top-level urlconf:</p> <pre><code>from django.conf.urls.defaults import * urlpatterns = patterns('', (r'', include('pub.urls')), ) </code></pre> <p>And pub.urls:</p> <pre><code>from django.conf.urls.defaults import * import pub urlpatterns = patterns('pub.views', (r'^$', 'index') ) </code></pre> <p>and pub.views.index:</p> <pre><code># Create your views here. from django.shortcuts import render_to_response from django.http import HttpResponse import openidgae # this needs to be moved somewhere else, but for now it can live here def index(request): lip = openidgae.get_current_person(request, HttpResponse()) resp = render_to_response('pub/index.html', {'lip': lip}) # exception thrown here return resp </code></pre> http://stackoverflow.com/questions/1738790/build-management-in-c-good-ides-on-linux/1738871#1738871 0 Answer by Ben Collins for Build management in C++ & good IDEs on Linux Ben Collins 2009-11-15T21:20:44Z 2009-11-15T21:20:44Z <p>I found Emacs + Scons works pretty well for me.</p> http://stackoverflow.com/questions/1736480/c-new-operator-creating-a-new-instance/1736504#1736504 0 Answer by Ben Collins for C++ new operator. Creating a new instance Ben Collins 2009-11-15T03:45:27Z 2009-11-15T03:45:27Z <p>actually, it looks like your error message doesn't have anything to do with the code you pasted in your OP. I had a very good response ready to go about not passing const char * as a std::string&amp; parameter, but that doesn't look like it's your issue. What you have posted isn't enough to pinpoint the problem.</p> http://stackoverflow.com/questions/1717922/type-inference-with-control-statements 1 Type inference with control statements Ben Collins 2009-11-11T20:42:40Z 2009-11-11T22:40:14Z <pre><code>var sortQ = filterQ; // &lt;--- update if (iSortingCols &gt; 0) { sortQ = (sortDirs[0] == "asc") ? sortQ.OrderBy((d) =&gt; d.GetColumnData()[sortCols[0]]) : sortQ.OrderByDescending((d) =&gt; d.GetColumnData()[sortCols[0]]); if (iSortingCols &gt; 1) { for (int i = 1; i &lt; iSortingCols; i++) { sortQ = (sortDirs[i] == "asc") ? sortQ.ThenBy(d =&gt; d.GetColumnData()[sortCols[i]]) : sortQ.ThenByDescending(d =&gt; d.GetColumnData()[sortCols[i]]); } } } </code></pre> <p>The compiler underlines the two results of the ternary operator inside the for loop, saying that IEnumerable&lt;...> doesn't have a method overload called ThenBy (and similarly for ThenByDescending), but the sortQ will be an IOrderedEnumerable&lt;...> in that block. Why isn't C# type inference picking that up?</p> <p><strong>Update</strong>: for those who might have been confused before, what I left out of the original snippet was that I was assigning sortQ to the result of another query which forced the type inference engine to type sortQ as an IEnumerable&lt;..>, which of course is what was screwing up my example. The answer below is the way around this. Thanks to @Marc for reading between the lines.</p> http://stackoverflow.com/questions/1689590/suggestions-for-a-fast-two-way-encrypt/1689713#1689713 1 Answer by Ben Collins for Suggestions for a fast two way encrypt? Ben Collins 2009-11-06T19:17:52Z 2009-11-06T19:17:52Z <p>What is your primary criterion for selection? Speed or security? That's the fundamental trade-off in the cryptography business. Here's a set of <a href="http://www.cryptopp.com/benchmarks.html" rel="nofollow">benchmark results for Crypto++</a>. They won't tell you everything, but you will be able to tell which algorithms are generally faster than others. Here's a <a href="http://www.discretix.com/PDF/Strength%20Assessment%20of%20Encryption%20Algorithms.pdf" rel="nofollow">whitepaper discussing the relative strengths of some popular algorithms</a>. Determining strength is a very hard thing to do in the general case, although some algorithms have been given enough attention that their strengths and weaknesses are fairly well known (DES, RSA, etc). A conventional rule of thumb is that longer keys imply greater strengths, but you gotta be very careful with that. I suspect that in your case, either AES or Blowfish will be fine. AES will probably be somewhat more widely supported, but really - either would probably do. Stay away from DES unless speed is a critical factor.</p> http://stackoverflow.com/questions/1662777/vsewss-an-item-with-the-same-key-has-already-been-added/1668664#1668664 0 Answer by Ben Collins for VSeWSS "An item with the same key has already been added" Ben Collins 2009-11-03T16:55:32Z 2009-11-03T16:55:32Z <p>I finally ended up completely reconstituting the project, and all is well again. I would normally submit something like this to MS Connect, but there's no way they're going to fix this. VSeWSS as a VS2008 plugin is a completely dead product.</p> <p>We'll just have to struggle along until we get VS2010, at which point I can start filing connect bugs.</p> http://stackoverflow.com/questions/1662471/vsewss-phantom-feature-cant-be-deleted/1662669#1662669 0 Answer by Ben Collins for VSeWSS phantom feature can't be deleted Ben Collins 2009-11-02T17:44:27Z 2009-11-02T17:44:27Z <p>It turns out that during the SVN merge, the pkg/MyFeature/feature.xml file got jacked up. A FeatureID was no longer specified, so every time it tried to rebuild, VSeWSS generated a FeatureID for it, which caused it to try and build out the entire feature again, but the folder that existed in the filesystem was in conflict with it. Once I restored the feature.xml for MyFeature, this problem was resolved. Now my problem is that I can't seem to get the package built - there may be a problem retracting the old solution, but that's something different.</p> http://stackoverflow.com/questions/1661982/how-do-i-get-the-full-path-for-a-filename-command-line-argument/1662024#1662024 2 Answer by Ben Collins for How do I get the full path for a filename command-line argument? Ben Collins 2009-11-02T15:40:32Z 2009-11-02T15:40:32Z <p><a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/filesystem/doc/index.htm" rel="nofollow">Boost.Filesystem</a></p> http://stackoverflow.com/questions/1661912/why-does-everybody-use-unanchored-namespace-declarations-i-e-std-not-std/1661977#1661977 1 Answer by Ben Collins for Why does everybody use unanchored namespace declarations (i.e. std:: not ::std::)? Ben Collins 2009-11-02T15:32:49Z 2009-11-02T15:32:49Z <p>A lot of code is written in the global namespace. If someone really redefines ::std::, it won't matter how you refer to it in that kind of code.</p> <p>Also, your scenario is both unlikely and easy to work around. Firstly, the convention since there was a 'std' was that you don't use that name. Secondly, if you were to encounter a package that defined the 'std' namespace, you just do this:</p> <pre><code>#include &lt;package_name.hpp&gt; namespace package_name { using namespace std; } namespace my_app { class my_class : public package_name::class_of_something {}; } </code></pre> <p>Or something similar. You might have to explicitly name ::std as std. My point is this: people go about using the un-anchored 'std::' all the time because even the worst-case consequences aren't a big deal, and unlikely at that.</p> http://stackoverflow.com/questions/1651342/updatepanel-startup-script-not-executing 0 UpdatePanel startup script not executing Ben Collins 2009-10-30T17:50:04Z 2009-10-30T21:13:46Z <p>I'm writing an ASP.NET webpart for use in a SharePoint site and trying to use an UpdatePanel to render query results. I want to use a JQuery plugin to modify the table returned from the asynchronous postback, but I'm having trouble getting the startup script to execute on the asynchronous udpate. </p> <p>I found this post which <a href="http://weblogs.asp.net/infinitiesloop/archive/2007/09/17/inline-script-inside-an-asp-net-ajax-updatepanel.aspx" rel="nofollow">indicates that the UpdatePanel won't do an eval() on startup scripts; instead, you must register the startup script block with the ScriptManager</a>. It all makes sense until it doesn't work. The <a href="http://msdn.microsoft.com/en-us/library/bb310408.aspx" rel="nofollow">MSDN reference documentation seems to concur</a> with the approach taken there.</p> <p>My control is too long to post completely, but here's a trimmed-down representation that I think covers anything relevant. Forgive me if there are missing controls in the paste below - I had to remove some parts, and there may be some dangling tentacles, so to speak. The below is the code for the webpart, which is not unlike the SmartPart which loads a user control (.ascx).</p> <p>As you can see, I am using the ScriptManager.RegisterStartupScript method. I've tried both overloads; once for the Page, and once for the ListView (renamed as 'AspListView') which is in the update panel. In neither case does the startup script execute on the asynchronous update, and I'm at a loss for why.</p> <pre><code>using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Serialization; using Microsoft.SharePoint; using Microsoft.SharePoint.WebControls; using Microsoft.SharePoint.WebPartPages; namespace MyNamespace { using AspListView = System.Web.UI.WebControls.ListView; [Guid("601b3bdb-ed2a-4ec8-8a40-c37de8ab048d")] public class ListSearch : StaticTemplateWebPart { private AspListView resultsList; public ListSearch() { } protected override void CreateChildControls() { base.CreateChildControls(); ScriptLink.Register(Page, "jquery-1.3.2.js", false); ScriptLink.Register(Page, "jquery-ui-1.7.2.custom.min.js", false); ScriptLink.Register(Page, "jquery.timepickr.js", false); ScriptLink.Register(Page, "jquery.quicksearch.js", false); string scriptBlock = @" if ($('table#discrepancy-results').length) { $('table#discrepancy-results tr').quicksearch({ position: 'before', attached: 'table.results', stripeRowClass: ['odd', 'even'], labelText: 'Keyword Search' }); }"; ScriptManager.RegisterStartupScript(Page, typeof(Page), UniqueID, scriptBlock, true); /* adding other controls, getting references, databinding, etc. */ } void searchButt_Click(object sender, EventArgs e) { if (Page.IsPostBack) { var beginDT = DateTime.Parse((beginDateText.Text ?? "") + " " + (beginTimeText.Text ?? "")); var endDT = DateTime.Parse((endDateText.Text ?? "") + " " + (endTimeText.Text ?? "")); var dataList = SPContext.Current.Web.Lists["MyDataList"].Items; var results = SearchListItems(dataList, beginDT, endDT, keywordText.Text ?? ""); if (results.Count &gt; 0) { resultsList.DataSource = results; resultsList.DataBind(); } } } } } </code></pre> <p>And the user control that gets loaded:</p> <pre><code>&lt;%@ Control Language="C#" ClassName="ListSearchControl" %&gt; &lt;% if (false) { %&gt; &lt;script src="../../LAYOUTS/jquery-1.3.2-vsdoc2.js" type="text/javascript"&gt;&lt;/script&gt; &lt;% } %&gt; &lt;script type="text/javascript"&gt; $(function() { $('id').trigger('click'); $('#&lt;%= BeginTime.ClientID %&gt;').timepickr({ handle: '#&lt;%= BeginTimeTrigger.ClientID %&gt;', convention: 12, trigger: 'nothing' }); $('#&lt;%= EndTime.ClientID %&gt;').timepickr({ handle: '#&lt;%= EndTimeTrigger.ClientID %&gt;', convention: 12, trigger: 'nothing' }); }); &lt;/script&gt; &lt;asp:Panel ID="ControlPanel" runat="server"&gt; &lt;asp:Panel ID="Inputs" runat="server"&gt; &lt;asp:Panel CssClass="DateInputWrapper" runat="server"&gt; &lt;asp:Panel CssClass="BeginDateInput" runat="server"&gt; &lt;asp:Label Text="Begin Date: " runat="server" /&gt; &lt;asp:TextBox ID="BeginDate" Columns="14" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Image ID="BeginDateImg" ImageUrl="/_layouts/Images/calendar.gif" runat="server" /&gt; &lt;ajax:CalendarExtender ID="BeginDateExtender" TargetControlID="BeginDate" PopupButtonID="BeginDateImg" Format="MMMM d, yyyy" runat="server"&gt; &lt;/ajax:CalendarExtender&gt; &lt;asp:Label Text="Begin Time: " runat="server" /&gt; &lt;asp:TextBox ID="BeginTime" Columns="6" Text="04:00 am" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Image ID="BeginTimeTrigger" runat="server" ImageUrl="/_layouts/1033/Images/clock.png" /&gt; &lt;/asp:Panel&gt; &lt;asp:Panel CssClass="EndDateInput" runat="server"&gt; &lt;asp:Label Text="End Date: " runat="server" /&gt; &lt;asp:TextBox ID="EndDate" Columns="14" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Image ID="EndDateImg" ImageUrl="/_layouts/Images/calendar.gif" runat="server" /&gt; &lt;ajax:CalendarExtender ID="EndDateExtender" TargetControlID="EndDate" PopupButtonID="EndDateImg" Format="MMMM d, yyyy" runat="server"&gt; &lt;/ajax:CalendarExtender&gt; &lt;asp:Label Text="End Time: " runat="server" /&gt; &lt;asp:TextBox ID="EndTime" Columns="6" Text="03:59 am" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Image ID="EndTimeTrigger" runat="server" ImageUrl="/_layouts/1033/Images/clock.png" /&gt; &lt;/asp:Panel&gt; &lt;/asp:Panel&gt; &lt;asp:Panel CssClass="Submit" runat="server"&gt; &lt;asp:Button ID="SearchButton" Text="Search" runat="server" /&gt; &lt;asp:Label CssClass="SearchStatusText" runat="server" /&gt; &lt;/asp:Panel&gt; &lt;/asp:Panel&gt; &lt;/asp:Panel&gt; &lt;asp:Panel ID="ResultsPanel" runat="server"&gt; &lt;asp:ListView ID="ResultsList" runat="server"&gt; &lt;LayoutTemplate&gt; &lt;table id="discrepancy-results"&gt; &lt;tr class="header-row"&gt; &lt;th&gt;Scheduled Date/Time&lt;/th&gt; &lt;th&gt;Code&lt;/th&gt; &lt;th&gt;Description&lt;/th&gt; &lt;/tr&gt; &lt;asp:PlaceHolder runat="server" ID="itemPlaceHolder" /&gt; &lt;/table&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;tr class="result-row"&gt; &lt;td&gt;&lt;%# Eval("ScheduledDate") %&gt;&lt;/td&gt; &lt;td&gt;&lt;%# Eval("Code") %&gt;&lt;/td&gt; &lt;td&gt;&lt;%# Eval("Description") %&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/ItemTemplate&gt; &lt;/asp:ListView&gt; &lt;/asp:Panel&gt; &lt;asp:Panel ID="DetailsPanel" runat="server"&gt; &lt;/asp:Panel&gt; </code></pre> http://stackoverflow.com/questions/1651342/updatepanel-startup-script-not-executing/1652355#1652355 0 Answer by Ben Collins for UpdatePanel startup script not executing Ben Collins 2009-10-30T21:13:46Z 2009-10-30T21:13:46Z <p>after playing with it a bit, I got it to work. I think the problem was that I was just using quicksearch() incorrectly somehow. I tried later with a simple alert() and it worked fine. Thanks for the suggestions!</p> http://stackoverflow.com/questions/1640758/passing-stdvector-for-any-type-to-a-function/1640769#1640769 4 Answer by Ben Collins for Passing std::vector for any type to a function Ben Collins 2009-10-28T23:22:19Z 2009-10-28T23:42:40Z <p>Templatize B.</p> <pre><code>template&lt;typename T&gt; class B { void fill(const std::vector&lt;T&gt;&amp; a, std::vector&lt;T&gt;&amp; b) { } }; template&lt;typename T&gt; class A { B&lt;T&gt; b; std::vector&lt;T&gt; vec1; std::vector&lt;T&gt; vec2; } </code></pre> <p>If you don't want to templatize B, then templatize the fill function:</p> <pre><code>class B { template&lt;typename T&gt; void fill(const std::vector&lt;T&gt;&amp; a, std::vector&lt;T&gt;&amp; b) {} }; </code></pre> http://stackoverflow.com/questions/1633933/loadcontrol-on-control-with-assembly-reference 0 LoadControl on control with assembly reference Ben Collins 2009-10-27T22:03:48Z 2009-10-28T07:14:50Z <p>I'm trying to use System.Web.UI.TemplateControl.LoadControl to build a templated web part for a SharePoint application, and I'm having trouble with a control that references an external assembly.</p> <p>I have a user control with the first few lines like this:</p> <pre><code>&lt;%@ Control Language="C#" ClassName="MyControl" %&gt; &lt;%@ Assembly Name="AjaxControlToolkit" %&gt; &lt;%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %&gt; </code></pre> <p>The web part derives from a base webpart that implements the templating and some other utilities which is in an assembly called "MyWebParts" (for example), while the derived web part class is in "MyProject". MyProject has a reference to "MyWebParts" (obviously), and to "AjaxControlToolkit", but "MyWebParts" does not have a reference to "AjaxControlToolkit". At runtime, when the templated web part tries to load the user control (a .ascx file in the "controltemplates" SharePoint root folder), it calls the base methods it inherited across assemblies, and it throws an HttpParseException, indicating that it couldn't load a required assembly. The EventViewer confirms that the assembly in question is AjaxControlToolkit.</p> <p>I tried adding the AjaxControlToolkit assembly to the web.config for sharepoint, and it's sitting in the GAC, but to no avail.</p> <p>Anyone know how I can do this without having a reference to every assembly in existence in my "MyWebParts" assembly?</p> http://stackoverflow.com/questions/43777/method-vs-message-vs-function-vs/43792#43792 11 Answer by Ben Collins for 'method' vs. 'message' vs. 'function' vs. '???' Ben Collins 2008-09-04T13:45:18Z 2009-10-13T23:29:05Z <p>I've found this to be a language and programming-paradigm thing. One paradigm — OOP — refers to objects with member methods, which conceptually are how you send messages to those objects (this view is reflected in UML, for example).</p> <p>Another paradigm — functional — may or may not involve classes of objects, but functions are merely the atomic unit of work. </p> <p>In structured programming, you had sub-routines (notice that the prefix "sub" implies structure).</p> <p>In imperative programming (which overlaps with structured quite a lot, but a slightly different way of looking at things), you have a more formulaic view of the world, and so 'procedures' represent some operation.</p> <p>All you have to do to not sound like a rube is to use the terminology used by the language reference for the language you're using.</p> http://stackoverflow.com/questions/822941/sharepoint-web-services-in-subwebs 1 sharepoint web services in subwebs Ben Collins 2009-05-05T01:38:22Z 2009-10-08T18:00:03Z <p>I'm trying to build a web service that is sensitive to the subweb context (i.e., it exposes a WebMethod that needs to be able to touch lists in particular subwebs).</p> <p>I have deployed the web app with the following files:</p> <pre><code>ISAPI/MyService.asmx ISAPI/MyServiceWsdl.aspx ISAPI/MyServiceDisco.aspx </code></pre> <p>The codebehind:</p> <pre><code>[WebService] public class MyService : System.Web.Services.WebService { [WebMethod] public ListSettings GetListSettings(string listName) { SPWeb site = SPControl.GetContextWeb(this.Context); SPList list = site.Lists[listName]; return new ListSettings(list); } [WebMethod] public void UpdateListSettings(string listName, ListSettings settings) { SPWeb site = SPControl.GetContextWeb(this.Context); SPList list = site.Lists[listName]; list.EnableFolderCreation = settings.EnableFolders; list.Update(); } } public class ListSettings { public ListSettings() { } internal ListSettings(SPList list) { EnableFolders = list.EnableFolderCreation; } public bool EnableFolders { get; set; } } </code></pre> <p>This seems to work just fine at the root web of my site collection. However, when I make requests to <a href="http://moss/subweb/_vti_bin/MyService.asmx" rel="nofollow">http://moss/subweb/_vti_bin/MyService.asmx</a>, and stop the web method on a breakpoint to inspect the HttpContext, I find that the request has been made to <a href="http://moss/_vti_bin/MyService.asmx" rel="nofollow">http://moss/_vti_bin/MyService.asmx</a>.</p> <p>I read a number of resources that describes the adjustments needed in the WSDL/disco files and in the spdisco.aspx file in ISAPI and made the adjustments I though I was supposed to make. Like so:</p> <p>In MyServiceDisco.aspx:</p> <pre><code>&lt;%@ Page Inherits="System.Web.UI.Page" Language="C#" %&gt; &lt;%@ Assembly Name="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %&gt; &lt;%@ Import Namespace="Microsoft.SharePoint.Utilities" %&gt; &lt;%@ Import Namespace="Microsoft.SharePoint" %&gt; &lt;% Response.ContentType = "text/xml"; %&gt; &lt;discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/"&gt; &lt;contractRef ref=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, SPWeb.OriginalBaseUrl(Request) + "?wsdl", '"'); %&gt; docRef=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, SPWeb.OriginalBaseUrl(Request), '"'); %&gt; xmlns="http://schemas.xmlsoap.org/disco/scl/" /&gt; &lt;soap address=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, SPWeb.OriginalBaseUrl(Request), '"'); %&gt; xmlns:q1="http://tempuri.org/" binding="q1:MyServiceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /&gt; &lt;soap address=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, SPWeb.OriginalBaseUrl(Request), '"'); %&gt; xmlns:q2="http://tempuri.org/" binding="q2:MyServiceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /&gt; &lt;/discovery&gt; </code></pre> <p>At the top of MyServiceWsdl.aspx:</p> <pre><code>&lt;%@ Page Inherits="System.Web.UI.Page" Language="C#" %&gt; &lt;%@ Assembly Name="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %&gt; &lt;%@ Import Namespace="Microsoft.SharePoint.Utilities" %&gt; &lt;%@ Import Namespace="Microsoft.SharePoint" %&gt; &lt;% Response.ContentType = "text/xml"; %&gt; </code></pre> <p>And at the bottom:</p> <pre><code>&lt;wsdl:service name="MyService"&gt; &lt;wsdl:port name="MyServiceSoap" binding="tns:MyServiceSoap"&gt; &lt;soap:address location=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, SPWeb.OriginalBaseUrl(Request), '"'); %&gt; /&gt; &lt;/wsdl:port&gt; &lt;wsdl:port name="MyServiceSoap12" binding="tns:MyServiceSoap12"&gt; &lt;soap12:address location=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, SPWeb.OriginalBaseUrl(Request), '"'); %&gt; /&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; </code></pre> <p>And finally, the additions to spdisco.aspx:</p> <pre><code>&lt;contractRef ref=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, spWeb.Url + "/_vti_bin/MyService.asmx?wsdl", '"'); %&gt; docRef=&lt;% SPEncode.WriteHtmlEncodeWithQuote(Response, spWeb.Url + "/_vti_bin/MyService.asmx", '"'); %&gt; xmlns="http://schemas.xmlsoap.org/disco/scl/" /&gt; &lt;discoveryRef ref=&lt;% SPHttpUtility.AddQuote(SPHttpUtility.HtmlEncode(spWeb.Url + "/_vti_bin/MyService?disco"),Response.Output); %&gt; xmlns="http://schemas.xmlsoap.org/disco/" /&gt; </code></pre> <p>At long last, I thought I had done everything necessary to get the service working properly in every web in the site collection, but alas, it doesn't seem to be right. What did I forget to do?</p> <p><strong>Update</strong>: another tidbit of information is that trying to get the discovery XML leads to a "Not Found" sharepoint error. In other words, accessing <a href="http://moss/mysubsite/_vti_bin/MyService.asmx?disco" rel="nofollow">http://moss/mysubsite/_vti_bin/MyService.asmx?disco</a> leads to a Sharepoint "File Not Found" error.</p> <p><strong>Update</strong>: turns out there was a minor typo in MyServiceDisco.aspx that caused the "File Not Found" error. However, I fixed that and now the service is completely broken. Using the WCF testing client, I get an error message of "Server was unable to process request. ---> Object reference not set to an instance of an object" followed by a stack trace. From an application I'm working on, when I invoke the generated proxy class "MyServiceSoapClient", the response is "The remote server returned an error: NotFound".</p> <p>Arrrgggh!</p> <p><strong>Update</strong>: Alright, the "object reference not set..." message was the result of a boneheaded mistake on my part. Things seem to be working now, <strong>except</strong> that the SPContext.Current.HttpRequestContext.Request.Path property always shows the url to the service under the root web instead of the current web. I've used Wireshark to make sure the client is POSTing to the correct url (and it is: <a href="http://moss/subweb/_vti_bin/MyService.asmx" rel="nofollow">http://moss/subweb/_vti_bin/MyService.asmx</a>), I've used the ASP.NET tracing facility and haven't noticed anything awry (the request shows up in the trace with the correct url), and I've used the IIS tracing utility (logman.exe) which shows nothing unexpected. The only thing that doesn't seem right is the HttpRequest context once I hit the breakpoint in my service. </p> http://stackoverflow.com/questions/145103/whats-the-best-way-to-benchmark-programs-in-windows 3 What's the best way to benchmark programs in Windows? Ben Collins 2008-09-28T03:14:36Z 2009-09-30T21:59:27Z <p>I need to do some performance benchmarks on .NET programs (C#) in Windows, but I haven't done benchmarking much in the Windows world. I've looked into using the Windows 2000/XP Performance monitor with custom counters for this, but I don't think this is quite what I want.</p> <p>Are there any good system facilities for this in Windows XP, or do I need to just use System.Diagnostics.Stopwatch [edit] and write text logs for manual interpretation, or is there something else?</p> <p>Edit: is there anything beyond <code>System.Diagnostics.Stopwatch</code>?</p> http://stackoverflow.com/questions/620775/installing-a-merge-module-as-well-as-consuming 0 Installing a merge module as well as "consuming" Ben Collins 2009-03-06T22:54:36Z 2009-09-22T13:57:31Z <p>I've got a couple of solutions that represent a framework of code that I've built up at work. One solution called 'Framework' and another called 'Extensions'. </p> <p>The reason I split them is that the 'Extensions' solution contain projects that consist of extension methods, and the projects are organized so that the resulting assemblies mirror the .NET assemblies.</p> <p>I created a merge module project for 'Extensions', and an installer that uses it. It's all fine and dandy - but now I want to create an installer for 'Framework' that also uses that same merge module. Consequently, I'd like to modify the 'Extensions' installer to copy the 'Extensions' merge module file to C<code>:\Program Files\Common Files\Merge Modules</code> so that the 'Framework' installer will have a well-known path by which to reference the merge module for 'Extensions', rather than referencing whatever obscure path my VS solution lives in (the reason being that the Framework will at times be built on different machines on which paths to VS projects may vary).</p> <p>The MSDN documentation addresses this only briefly, and merely says that merge modules cannot be installed to the file system, but can only be "consumed".</p> <p>Fail.</p> <p>Does anyone know a way around this? Custom actions? How does the Visual Studio installer install it's merge modules?</p> http://stackoverflow.com/questions/247888/how-to-require-commit-messages-in-visualsvn-server 10 How to require commit messages in VisualSVN server? Ben Collins 2008-10-29T18:30:50Z 2009-08-12T14:18:56Z <p>We've got VisualSVN set up as our Subversion server on Windows, and we use Ankhsvn + TortoiseSVN on our client workstations.</p> <p>How can you configure the server to require commit messages to be non-empty?</p> http://stackoverflow.com/questions/1223827/how-do-you-debug-problems-with-local-storage-trouble-with-an-error-occurred-whi 1 How do you debug problems with local storage? Trouble with "An error occurred while processing this request" in HandleBatchResponse Ben Collins 2009-08-03T18:16:45Z 2009-08-04T23:23:24Z <p>Cross-posted at <a href="http://social.msdn.microsoft.com/Forums/en-US/windowsazure/thread/0678890e-6d2e-4fc5-8851-712bfb6f206c" rel="nofollow">MSDN</a>.</p> <p>I have a list of entity objects I'm trying to insert into a table in the local storage service. Using a data context class derived from the SampleClient TableStorageDataContext class, I create a new context object and add the entities with no issues. When I call context.SaveChanges(), an exception is ultimately thrown, but with sparingly little detail. I've run a profiler trace on SQL Server Express to see if the error originated there, and didn't find anything useful, which leads me to believe there's some issue in the local storage service, which I have no idea how to debug.</p> <p>Here's the client code (F#):</p> <pre><code>let cxt0 = new WebRole.Models.TableDataContext() entityList |&gt; Seq.iter (fun n -&gt; cxt0.AddObject("NutritionData", n)) let results = cxt0.SaveChanges() </code></pre> <p>I can set a breakpoint on the last of the above lines and stop execution and see that the cxt0 object contains all the entities to be added (>500K). After then continuing execution, the following exception is thrown:</p> <blockquote> <p>System.Data.Services.Client.DataServiceRequestException: "An error occurred while processing this request." </p> <p>at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.HandleBatchResponse() at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.EndRequest() at System.Data.Services.Client.DataServiceContext.SaveChanges(SaveChangesOptions options) at System.Data.Services.Client.DataServiceContext.SaveChanges() at WorkerRole.SrDataProcessor.importSrData(FastFunc`2 pf, String blobName) in C:\Users\Ben\Development\Projects\CloudProject\WorkerRole\SrDataProcessor.fs:line 76</p> </blockquote> <p>The InnerException (pardon the brackets as I avoid the html tag scrubber):</p> <blockquote> <p>System.Data.Services.Client.DataServiceClientException: " [?xml version="1.0" encoding="utf-8" standalone="yes"?] [error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"] [code][/code] [message xml:lang="en-US"]An error occurred while processing this request.[/message] [/error] "</p> <p>at System.Data.Services.Client.DataServiceContext.SaveAsyncResult.d__1d.MoveNext()</p> </blockquote> <p>In the HandleBatchResponse method, it appears that this error may be reported as it enumerates through the responses. Any ideas what might be calling this? The only thing left I've thought to check but haven't is to ensure that none of my entities have string properties that go past 1000 characters. </p> <p><em>Update</em>: Now I have, and it doesn't look like there are any. The following snippet produced an empty sequence:</p> <pre><code>let longEntities = nutData |&gt; Seq.choose (fun nd -&gt; if HasLongStringProperties(nd) then Some(nd) else None) </code></pre> <p>Also, more generally, how does one debug issues like this? Is there any way to get some introspection into the local storage service?</p> <p><strong>Update 2</strong>: I've since discovered that the "exception of origin", so to speak, is actually a System.WebException reporting an "Internal Server Error (500)", with no further detail. I've done everything I know to do to ensure that the data I'm trying to insert is compatible with the schema and data types in the tables in the SQL Server Express database backing the table service, and still I don't know what the issue is. The TableDataService just won't accept the object I'm inserting. See the MSDN thread for more details. I've also opened a <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=480731" rel="nofollow">bug on connect</a>.</p> http://stackoverflow.com/questions/787366/silverlight-control-toolkit-debugging-symbols 0 Silverlight Control Toolkit debugging symbols Ben Collins 2009-04-24T20:06:20Z 2009-08-02T18:28:16Z <p>Does the Silverlight Control Toolkit have debug symbols available anywhere? I know the source is distributed and I could just build that and reference the newly-built assemblies and their symbols, but that's lame.</p> http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/1117544#1117544 1 Answer by Ben Collins for What programming religious argument bothers you the most? Ben Collins 2009-07-13T02:51:56Z 2009-07-13T02:51:56Z <p>Agile Programming vs anything.</p> <p>Agile programming is great. We use a form of it at work - but I cringe reading about sprints and scrums and whatever other religious dogma comes from the Agile Manifesto. There are a lot of good ideas there - but they can be implemented in a number of ways and [gasp/] with varying terminology.</p> http://stackoverflow.com/questions/780427/visual-studio-2008-add-service-reference-for-sharepoint-401-and-port-numbers 0 Visual Studio 2008 "Add Service Reference" for Sharepoint: 401 and port numbers Ben Collins 2009-04-23T05:41:43Z 2009-06-22T09:07:39Z <p>I'm trying to "Add Service Reference" to SharePoint web services (e.g., "http://cogent-moss/_vti_bin/Webs.asmx"), but am having trouble. I seem to always get this error:</p> <blockquote> <p>The document at the url <a href="http://cogent-moss/_vti_bin/Webs.asmx" rel="nofollow">http://cogent-moss/_vti_bin/Webs.asmx</a> was not recognized as a known document type. The error message from each known type may help you fix the problem: - Report from '<a href="http://cogent-moss/_vti_bin/Webs.asmx" rel="nofollow">http://cogent-moss/_vti_bin/Webs.asmx</a>' is 'The document format is not recognized (the content type is 'text/html; charset=utf-8').'. - Report from 'DISCO Document' is 'Root element is missing.'. - Report from 'WSDL Document' is 'The document format is not recognized (the content type is 'text/html; charset=utf-8').'. - Report from 'XML Schema' is 'The document format is not recognized (the content type is 'text/html; charset=utf-8').'. Metadata contains a reference that cannot be resolved: '<a href="http://cogent-moss/_vti_bin/Webs.asmx" rel="nofollow">http://cogent-moss/_vti_bin/Webs.asmx</a>'. The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'. The remote server returned an error: (401) Unauthorized. If the service is defined in the current solution, try building the solution and adding the service reference again.</p> </blockquote> <p>I've scoured the web for solutions to this, and most of them are solutions to run-time problems. I merely want to get Visual Studio 2008 to generate the proxy classes for me.</p> <p>What's strange to me is that if I try the very same thing, except pointed at "http://cogent-moss:8888/_vti_bin/Webs.asmx", it all works fine. Both of these IIS VirtualServers are Sharepoint Site Collections, configured by SharePoint, and both are configured for Windows authentication. What's going on that would make it work when I specify a port number, but not when I go to the default at port 80?</p> http://stackoverflow.com/questions/1019133/custom-server-control-on-moss-publishing-page 0 custom server control on MOSS publishing page Ben Collins 2009-06-19T17:33:59Z 2009-06-20T22:36:13Z <p>The question was:</p> <blockquote> <p>I've got a page in a MOSS 2007 publishing site that uses a layout (the page inherits from <code>Microsoft.SharePoint.Publishing.TemplatedRedirectionPage</code>),and I need to write a codebehind for this page, but still let the layout templating mechanism work.</p> <p>My attempt was to write a class that inherits from <code>Microsoft.SharePoint.Publishing.TemplatedRedirectionPage</code>, and then change the page to inherit from my class. The page behaves normally (i.e., it worked as before), but the methods in my code behind class don't get called.</p> <p>Anyone know what I should be doing?</p> </blockquote> <p>But at this point, I'm pretty sure it won't work. My current direction is to try and place a custom server control on the publishing page, but I can't seem to get that working either. Is it just not possible to customize a publishing page except through its layout (which isn't an option here)?</p> http://stackoverflow.com/questions/1019133/custom-server-control-on-moss-publishing-page/1022718#1022718 1 Answer by Ben Collins for custom server control on MOSS publishing page Ben Collins 2009-06-20T22:36:13Z 2009-06-20T22:36:13Z <p>As it turns out, the most straight-forward way to accomplish what I wanted was to drop a Web Part Zone on the page layout, and then use the SharePoint editing controls to add my control (which can be made into a web part trivially).</p> <p>All is well, and I didn't have to do anything freaky.</p> http://stackoverflow.com/questions/1019083/how-to-divide-big-numbers/1019114#1019114 0 Answer by Ben Collins for How to divide big numbers? Ben Collins 2009-06-19T17:28:24Z 2009-06-19T17:48:38Z <p>Per my commenters below, my previous answer was stupid.</p> <p>Quickly, my new answer would be that when I've tried to do this in the past, it almost always involved shifting, because it's the only operation that can be applied across multiple "words", if you will, and have it look the same as if it were one large word (with the exception of having to track carryover bits).</p> <p>There are a couple different approaches to it, but I don't know of any better general direction than using shifts, unless your hardware has some special operations.</p> http://stackoverflow.com/questions/1801165/django-template-url-function-not-matching-in-app/1806003#1806003 Comment by Ben Collins on django template url function not matching in app Ben Collins 2009-11-27T04:47:53Z 2009-11-27T04:47:53Z Yep, I didn't edit my question very well. The problem is here: '{% url openidgae.views.LogoutSubmit %}'. I think I got it fixed, but I still don't quite have my head wrapped around how URLconfs really work. I know it's not that complicated, but it takes some time when you're just jumping in head first instead of studying the docs. http://stackoverflow.com/questions/1788245/django-unprintable-templatesyntaxerror-object-caused-by-urlconf Comment by Ben Collins on django unprintable templatesyntaxerror object caused by urlconf? Ben Collins 2009-11-25T04:31:40Z 2009-11-25T04:31:40Z looks like the problem is because of a NoReverseMatch exception being thrown because my templates contain a {% url ... %} block that doesn't resolve. From the django site: Note that if the URL you're reversing doesn't exist, you'll get an NoReverseMatch exception raised, which will cause your site to display an error page. http://stackoverflow.com/questions/1788245/django-unprintable-templatesyntaxerror-object-caused-by-urlconf/1788336#1788336 Comment by Ben Collins on django unprintable templatesyntaxerror object caused by urlconf? Ben Collins 2009-11-25T00:30:38Z 2009-11-25T00:30:38Z good suggestion, but in this case, I am able to import both my top-level module as well as the 'pub' module. http://stackoverflow.com/questions/1788245/django-unprintable-templatesyntaxerror-object-caused-by-urlconf Comment by Ben Collins on django unprintable templatesyntaxerror object caused by urlconf? Ben Collins 2009-11-24T23:01:59Z 2009-11-24T23:01:59Z pub is a django app. It's the only one for now, and will be the default. Ultimately there will be a few others, and their url modules will be imported too, when I get there. http://stackoverflow.com/questions/1552158/what-do-i-need-to-install-to-make-data-connections-in-server-explorer-work/1552167#1552167 Comment by Ben Collins on What do I need to install to make Data Connections in Server Explorer work? Ben Collins 2009-11-16T21:56:46Z 2009-11-16T21:56:46Z This is an odd error - I was connecting to my SQL Server 2005 just fine until today when a co-worker who uses 2008 touched a database file I was using. now VS2008 can't connect anymore. Grrr. http://stackoverflow.com/questions/1717922/type-inference-with-control-statements/1717931#1717931 Comment by Ben Collins on Type inference with control statements Ben Collins 2009-11-11T20:46:26Z 2009-11-11T20:46:26Z Doh! You're right. I didn't even think about the prior assignment to sortQ. Good call. http://stackoverflow.com/questions/115045/good-c-gui-library-for-windows/128778#128778 Comment by Ben Collins on Good C++ GUI library for Windows Ben Collins 2009-11-07T22:18:53Z 2009-11-07T22:18:53Z Do you know of a walkthrough blog or other documentation demonstrating how to build an app using Adam &amp; Eve? I've spent a number of hours researching this thing in the last few days, and I've had a hard time figuring out how to do anything. Even the dialog interface kit is confusing, because I can't find it in the sources. The begin app would have been a good start, but the sources aren't available anywhere that I can find. http://stackoverflow.com/questions/1689484/should-i-learn-asp-net-mvc-or-the-zend-framework/1689518#1689518 Comment by Ben Collins on Should I learn ASP.NET MVC or the Zend Framework? Ben Collins 2009-11-06T19:10:48Z 2009-11-06T19:10:48Z I would add to this that the tooling for ASP.NET and C# is much more vast than for PHP. http://stackoverflow.com/questions/1662777/vsewss-an-item-with-the-same-key-has-already-been-added/1662945#1662945 Comment by Ben Collins on VSeWSS "An item with the same key has already been added" Ben Collins 2009-11-02T20:07:28Z 2009-11-02T20:07:28Z This didn't work for me. I tried your suggestion - deleting the solution folder, cleaning the solution, retracting, etc. Then I closed VS. I even checked out the solution from SVN again in a different directory, and still got the same result. http://stackoverflow.com/questions/1651342/updatepanel-startup-script-not-executing Comment by Ben Collins on UpdatePanel startup script not executing Ben Collins 2009-10-30T21:13:27Z 2009-10-30T21:13:27Z after playing with it a bit, I got it to work. I think the problem was that I was just using quicksearch() incorrectly somehow. I tried later with a simple alert() and it worked fine. http://stackoverflow.com/questions/1640758/passing-stdvector-for-any-type-to-a-function/1640769#1640769 Comment by Ben Collins on Passing std::vector for any type to a function Ben Collins 2009-10-28T23:48:24Z 2009-10-28T23:48:24Z I realize refactoring large hierarchies is a pain, but you might also try to use a policy class as a template parameter instead of passing in smart pointers and apparently (based on your description) sacrificing type-safety for flexibility. http://stackoverflow.com/questions/1633933/loadcontrol-on-control-with-assembly-reference/1635607#1635607 Comment by Ben Collins on LoadControl on control with assembly reference Ben Collins 2009-10-28T13:02:03Z 2009-10-28T13:02:03Z I tried that, but it didn't work. (that's what I meant above when I said &quot;I tried adding the AjaxControlToolkit assembly to the web.config...&quot;). Thanks for the suggestion, though. http://stackoverflow.com/questions/132241/hidden-features-of-c/133714#133714 Comment by Ben Collins on Hidden features of C Ben Collins 2009-10-23T21:59:53Z 2009-10-23T21:59:53Z @Anacrolix: Yes. I understood what he was pointing out. You seem to miss my point though: it's apropos nothing. Whether or not a particular compiler &quot;supports C99&quot; really has nothing at all to do with whether or not you should use the standard integer typedefs. They are portable and easy to define even if your compiler sucks. If you need to specify a certain integer width, then the standard typedefs should <i>always</i>, <b>always</b> be used, regardless of where the definitions come from. http://stackoverflow.com/questions/647967/how-to-extend-stdtr1hash-for-custom-types Comment by Ben Collins on How to extend std::tr1::hash for custom types? Ben Collins 2009-10-12T17:21:29Z 2009-10-12T17:21:29Z Is there a way to extend std::hash for user-defined types with private copy constructors? Also, is there a way to extend it with an operator() that takes a const ref instead of val? http://stackoverflow.com/questions/348586/microsoft-visual-c-intellisense-has-stopped-working-in-project-referencing-f/357476#357476 Comment by Ben Collins on "Microsoft Visual C# IntelliSense has stopped working" in project referencing F# Ben Collins 2009-10-08T16:31:41Z 2009-10-08T16:31:41Z Is there a connect link for this, or a blog post or something that would allow tracking? I've just been hit by this and had to turn off intellisense (boo!).