User Ward Werbrouck - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T16:35:46Zhttp://stackoverflow.com/feeds/user/51459http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser/773894#7738943Answer by Ward Werbrouck for Can you provide an example of parsing HTML with your favorite parser?Ward Werbrouck2009-04-21T18:17:17Z2009-11-24T13:23:11Z<p>Language: <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a><br>
Library: <a href="http://www.w3.org/DOM/" rel="nofollow">DOM</a></p>
<pre><code>var links = document.links;
for(var i in links){
var href = links[i].href;
if(href != null) console.debug(href);
}
</code></pre>
<p>(using firebug console.debug for output...)</p>
http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser/773978#7739789Answer by Ward Werbrouck for Can you provide an example of parsing HTML with your favorite parser?Ward Werbrouck2009-04-21T18:35:34Z2009-11-24T13:22:30Z<p>Language: <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a><br>
Library: <a href="http://jquery.com/" rel="nofollow">jQuery</a></p>
<pre><code>$.each($('a[href]'), function(){
console.debug(this.href);
});
</code></pre>
<p>(using firebug console.debug for output...)</p>
<p>And loading any html page:</p>
<pre><code>$.get('http://stackoverflow.com/', function(page){
$(page).find('a[href]').each(function(){
console.debug(this.href);
});
});
</code></pre>
<p>Used another each function for this one, I think it's cleaner when chaining methods.</p>
http://stackoverflow.com/questions/1733039/android-web-what-is-the-equivalent-style-for-the-web/1733066#17330660Answer by Ward Werbrouck for Android & Web: What is the equivalent style for the web?Ward Werbrouck2009-11-14T02:49:00Z2009-11-14T02:49:00Z<p>PHP Framework: <a href="http://www.pradosoft.com/" rel="nofollow">http://www.pradosoft.com/</a></p>
http://stackoverflow.com/questions/1540394/scrambling-text-elements-in-xml/1540670#15406701Answer by Ward Werbrouck for Scrambling Text Elements in XMLWard Werbrouck2009-10-08T21:44:06Z2009-10-14T22:51:28Z<pre><code>using System;
using System.Linq;
using System.Xml.Linq;
using System.Collections.Generic;
namespace App
{
class Scrambler
{
public static void ScrambleTextNodes(XContainer xml)
{
foreach (XText textNode in GetDescendantTextNodes(xml))
textNode.Value = Scramble(textNode.Value);
}
public static void UnScrambleTextNodes(XContainer xml)
{
foreach (XText textNode in GetDescendantTextNodes(xml))
textNode.Value = UnScramble(textNode.Value);
}
public static IEnumerable<XNode> GetDescendantTextNodes(XContainer xml)
{
return xml.DescendantNodes().Where(node => node.NodeType == System.Xml.XmlNodeType.Text);
}
public static string Scramble(string s)
{
var a = s.Select(ch => (char)(ch + 3)).ToArray();
return new string(a);
}
public static string UnScramble(string s)
{
var a = s.Select(ch => (char)(ch - 3)).ToArray();
return new string(a);
}
}
class Program
{
static void Main(string[] args)
{
var doc = XDocument.Parse("<a><b>this</b><b><c>is</c><c><d>a test</d></c></b></a>");
Scrambler.ScrambleTextNodes(doc);
Console.WriteLine(doc.ToString());
Scrambler.UnScrambleTextNodes(doc);
Console.WriteLine(doc.ToString());
Console.ReadLine();
}
}
}
</code></pre>
<p>Output:</p>
<pre><code><a>
<b>wklv</b>
<b>
<c>lv</c>
<c>
<d>d whvw</d>
</c>
</b>
</a>
<a>
<b>this</b>
<b>
<c>is</c>
<c>
<d>a test</d>
</c>
</b>
</a>
</code></pre>
<p>You can always use some other scrambling algorithm. The scrambling itself is a translation to C# of Kai's Python answer.</p>
<p>edit: clean-up :)
edit2: removed the check to not scramble spaces. This would cause the unscrambling to be incorrect at times...</p>
http://stackoverflow.com/questions/654185/creating-a-clickonce-setup-for-vsto-outlook-add-in1Creating a (ClickOnce) setup for VSTO Outlook Add-inWard Werbrouck2009-03-17T13:12:33Z2009-10-08T11:11:39Z
<p>So I created an Outlook Add-in and used the click-once setup to deploy it.</p>
<p>The setup runs fine when the user is administrator, but otherwise: no go.</p>
<p>Running the setup with "run as..." and logging in as admin works, but than the add-in is installed under the admin, not the current user. The addin doesn't show up in outlook.</p>
<p>I tried following this guide:
<a href="http://blogs.msdn.com/mshneer/archive/2008/04/24/deploying-your-vsto-add-in-to-all-users-part-iii.aspx" rel="nofollow">http://blogs.msdn.com/mshneer/archive/2008/04/24/deploying-your-vsto-add-in-to-all-users-part-iii.aspx</a></p>
<p>But I get stuck at part I:
<a href="http://blogs.msdn.com/mshneer/archive/2007/09/04/deploying-your-vsto-add-in-to-all-users-part-i.aspx" rel="nofollow">http://blogs.msdn.com/mshneer/archive/2007/09/04/deploying-your-vsto-add-in-to-all-users-part-i.aspx</a></p>
<p>I follow the examples and start excel as described:</p>
<blockquote>
<p>Now start Excel application. Examine
the registry keys in HKCU hive e.g.
you will find two interesting
registry keys that appear under your
HKCU hive: </p>
<ul>
<li>HKCU\Software\Microsoft\Office\TestKey
registry key containing registry value
TestValue </li>
<li>You now also have
HKCU\Software\Microsoft\Office\12.0\User
Settings\TestPropagation registry key
with Count value set to 1</li>
</ul>
</blockquote>
<p>But on my machine, the keys are not created... What can I try next?</p>
http://stackoverflow.com/questions/1062444/can-not-create-commandbar-when-outlook-is-run-minimized-outlook-2007-add-in1Can not create CommandBar when Outlook is run minimized (Outlook 2007 Add-In)Ward Werbrouck2009-06-30T08:30:54Z2009-07-08T07:43:58Z
<p><strong>Original post:</strong><br />
When Outlook is launched, the Add-In is loaded and adds a toolbar with some buttons.</p>
<pre><code>toolBar = OutlookApp.ActiveExplorer().CommandBars.Add(MENU_TAG, MsoBarPosition.msoBarTop, false, true);
</code></pre>
<p>Everything was working fine, but now one user has his Outlook shortcut set to launch Outlook minimized.</p>
<p>And then OutlookApp.ActiveExplorer() return null.
Is there some event I can use to catch when there is an ActiveExplorer and then add the commandbar?</p>
<p>OutlookApp.Explorers.NewExplorer doesn't work.</p>
<p>Also, when I show a messagebox before I add the CommandBar: everything works fine, even with Outlook minimized... Why?</p>
<p><strong>edit:</strong><br />
Accessing the Explorers proprerty directly did work, as someone said in the answers. So this solves the problem for a minimized outlook... But...</p>
<p>One of the users does not have Outlook run minimized, and still the plugin loads before any gui is available. There are not even 1 explorer in the Explorers collection :( How is this possible?</p>
<p><strong>edit 2:</strong><br />
I tried using a timer as suggested by <em>76mel</em>, checking ActiveExplorer for null every 100ms. This adds the buttons as expected, but I can set the Picture property of the button.</p>
<p>I get this exception:<br />
<strong>Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))</strong></p>
http://stackoverflow.com/questions/730268/unique-random-string-generation/1086555#10865554Answer by Ward Werbrouck for Unique random string generationWard Werbrouck2009-07-06T11:42:00Z2009-07-06T11:42:00Z<p>This is a duplicate question, the answer given in the other is much better:</p>
<p><a href="http://stackoverflow.com/questions/54991/generating-random-passwords/55447#55447">http://stackoverflow.com/questions/54991/generating-random-passwords/55447#55447</a></p>
<blockquote>
<p>there's always
System.Web.Security.Membership.GeneratePassword(int
length, int
numberOfNonAlphanumericCharacters)</p>
</blockquote>
http://stackoverflow.com/questions/901225/good-example-sites-using-silverlight-and-deepzoom/901292#9012922Answer by Ward Werbrouck for Good example sites using Silverlight and DeepZoom?Ward Werbrouck2009-05-23T10:46:14Z2009-05-24T09:55:06Z<ul>
<li><a href="http://playboy.covertocover.com/" rel="nofollow">Playboy Archive</a> (<a href="http://en.wikipedia.org/wiki/Not%5Fsafe%5Ffor%5Fwork" rel="nofollow">NSFW</a>) </li>
<li><a href="http://memorabilia.hardrock.com/" rel="nofollow">Hardrock Memorabilia</a></li>
</ul>
http://stackoverflow.com/questions/791660/css-positioning-and-display-order/791680#7916801Answer by Ward Werbrouck for CSS Positioning and Display OrderWard Werbrouck2009-04-26T21:56:58Z2009-04-26T21:56:58Z<p>So actually you want a nav list and some other list? Why not use 2 lists?</p>
<pre><code><ul class="other">
<li>a</li>
<li>b</li>
</ul>
<ul class="nav">
<li>c</li>
<li>d</li>
</ul>
</code></pre>
<p>And css:</p>
<pre><code>ul li {
display: inline;
}
.other{
float:left;
}
.nav {
float: right;
}
</code></pre>
http://stackoverflow.com/questions/791118/viewing-a-ruby-on-rails-script-in-my-native-browser/791140#7911401Answer by Ward Werbrouck for Viewing a Ruby on Rails script in my native browserWard Werbrouck2009-04-26T16:31:03Z2009-04-26T16:31:03Z<p>Well, running some Ruby code in IRB has nothing to do with using the Rails framework.</p>
<p>Follow a tutorial <a href="http://wiki.rubyonrails.org/getting-started/first-rails-app-walkthrough" rel="nofollow">(for example this one)</a> to learn the Rails framework itself now you have some understanding of the Ruby language.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser/774853#7748532Answer by Ward Werbrouck for Can you provide an example of parsing HTML with your favorite parser?Ward Werbrouck2009-04-21T22:08:02Z2009-04-21T22:57:17Z<p>Language: PHP<br />
Library: <a href="http://us2.php.net/simplexml" rel="nofollow">SimpleXML</a> (and DOM)</p>
<pre><code><?php
$page = new DOMDocument();
$page->strictErrorChecking = false;
$page->loadHTMLFile('http://stackoverflow.com/questions/773340');
$xml = simplexml_import_dom($page);
$links = $xml->xpath('//a[@href]');
foreach($links as $link)
echo $link['href']."\n";
</code></pre>
http://stackoverflow.com/questions/719013/class-constructor-with-multiple-parameters/719033#7190330Answer by Ward Werbrouck for Class constructor with multiple parametersWard Werbrouck2009-04-05T14:46:34Z2009-04-05T14:53:26Z<p>Use seperate classes that are able to write data to logfile/database/email and pass the one you want to use in the constructor.
And make them all implement the same interface</p>
<p>example:</p>
<pre><code>LogDatabaseWriter writer = new LogDatabaseWriter(param1, param2, param3);
Logger log = new Logger(writer);
</code></pre>
<p>edit: Some more code</p>
<p>So you have an example interface:</p>
<pre><code>interface ILogWriter
{
public void Write(string s);
}
</code></pre>
<p>And several implementations of the interface</p>
<pre><code>class LogDatabaseWriter : ILogWriter
{
//constructor
// ...
//implement the required interface methods
public void Write(string s)
{
//Do your thing
}
}
</code></pre>
<p>And your Logger class has a constructor like this:</p>
<pre><code>class Logger
{
private ILogWriter _writer;
public Logger(ILogWriter writer)
{
_writer = writer;
//Do your thing
}
}
</code></pre>
http://stackoverflow.com/questions/718016/is-there-a-javascript-function-library-like-php-has/718021#7180214Answer by Ward Werbrouck for Is there a javascript function library like php has?Ward Werbrouck2009-04-04T23:18:53Z2009-04-04T23:24:12Z<p><a href="http://developer.mozilla.org/en/JavaScript" rel="nofollow">http://developer.mozilla.org/en/JavaScript</a></p>
<p><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference" rel="nofollow">http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference</a></p>
<p>edit: also have a look at <a href="http://www.gotapi.com/jsdomw3s" rel="nofollow">http://www.gotapi.com/jsdomw3s</a> . It has docs for javascript, jquery, css, html, ruby, php, databases...</p>
http://stackoverflow.com/questions/657562/list-all-folders-on-my-computer-php/658036#6580361Answer by Ward Werbrouck for List all folders on my computer (php)Ward Werbrouck2009-03-18T12:21:39Z2009-03-18T12:21:39Z<p>In one of the comments, seeming says:</p>
<blockquote>
<p>i want the user to select couple of
files and upload rather than having
multiple upload boxes. why are people
downvoting this question?</p>
</blockquote>
<p>Well, it is because your question is unclear and it is impossible to answer without the context of multiple file uploads.</p>
<p>The answer is: you can't do that with PHP.
PHP runs serverside, so it can only give you a list of all the folders on the server; not the folders on the client side.</p>
<p>So the solution you need will either be</p>
<ul>
<li>a Java-Applet (Facebook uses this for multiple file uploads)</li>
<li>or Flash/Flex (Gmail multiple file upload)</li>
</ul>
http://stackoverflow.com/questions/655226/php-sql-order-by-or-sortarray/655244#6552442Answer by Ward Werbrouck for php/SQL: ORDER BY or sort($array)?Ward Werbrouck2009-03-17T17:27:02Z2009-03-17T17:27:02Z<p>ORDER BY will almost always be faster.</p>
http://stackoverflow.com/questions/648568/interpreting-javascript-outside-of-the-browser/648581#6485811Answer by Ward Werbrouck for Interpreting JavaScript outside of the browser?Ward Werbrouck2009-03-15T21:35:38Z2009-03-15T21:35:38Z<p>According to this page, there used to be 2 "implementations" on the CLR:</p>
<p><a href="http://blogs.ugidotnet.org/nettools/articles/8060.aspx" rel="nofollow">http://blogs.ugidotnet.org/nettools/articles/8060.aspx</a></p>
<p>But both seem to be dead...</p>
http://stackoverflow.com/questions/648069/best-way-to-implement-add-edit-functionallity-in-html-for-several-classes-at-once/648091#6480911Answer by Ward Werbrouck for Best way to implement add/edit functionallity in HTML for several classes at onceWard Werbrouck2009-03-15T16:34:29Z2009-03-15T16:34:29Z<p>I'm not sure if this play along with fluent nhibernate, but <a href="http://www.codeplex.com/aspnet/Wiki/View.aspx?title=Dynamic%20Data&referringTitle=Home" rel="nofollow">Dynamic Data</a> is great for creating CRUD pages for classes/tables.</p>
http://stackoverflow.com/questions/648051/converting-il-to-c-code/648060#6480601Answer by Ward Werbrouck for Converting IL to C# codeWard Werbrouck2009-03-15T16:11:56Z2009-03-15T16:11:56Z<p>Can't you do this with <a href="http://reflector.red-gate.com/download.aspx" rel="nofollow">Reflector</a>?</p>
<p>You can load an assembly and view it as VB.net/C#/IL...</p>
http://stackoverflow.com/questions/647969/detect-exact-os-version-from-browser/647984#6479841Answer by Ward Werbrouck for Detect exact OS version from browserWard Werbrouck2009-03-15T15:27:36Z2009-03-15T15:27:36Z<p>Ask the user?
That's as close as you'll get...</p>
http://stackoverflow.com/questions/647911/what-is-the-best-programming-language-to-master/647957#6479573Answer by Ward Werbrouck for What is the best programming language to master?Ward Werbrouck2009-03-15T15:04:57Z2009-03-15T15:04:57Z<p>Do you ever "master" a language?</p>
<p>I think the best programmers are the ones that find their way in every language, as long as they are familiar with the paradigms of similar languages.
So it's better to understand functional programming, OOP, etc.. instead of just a language.</p>
<p>The mastering is in the programming, not in the language. </p>
http://stackoverflow.com/questions/646538/cms-for-a-personal-website-asp-net-c/647006#6470064Answer by Ward Werbrouck for CMS for a personal website - ASP.NET/C#Ward Werbrouck2009-03-15T00:22:10Z2009-03-15T00:22:10Z<p>I recommend <a href="http://n2cms.com/" rel="nofollow">N2</a>.</p>
<p>It's opensource, free, written in C#, has plug-in support and is very extensible on every level.</p>
http://stackoverflow.com/questions/646943/what-is-the-worst-abuse-of-xml-that-you-have-seen/646991#64699117Answer by Ward Werbrouck for What is the worst abuse of XML that you have seen?Ward Werbrouck2009-03-15T00:11:46Z2009-03-15T00:11:46Z<p>Using it as a database, rewriting the file on every update/insert.
See this all the time...</p>
http://stackoverflow.com/questions/488102/multiple-xmlelement-attributes-on-same-property-class0Multiple XmlElement attributes on same property/class/...Ward Werbrouck2009-01-28T15:42:16Z2009-03-14T14:30:50Z
<p>I'm putting several legacy web services and the current web service into the same back end.</p>
<p>But I have to keep the old web services compatible with there old interface.</p>
<p>So my question:</p>
<p>Is there a way I can set several attributes on, for example, a property?</p>
<p>Like this:</p>
<pre><code>[XmlElement("AvailableFrom",... what I need...)]
[XmlElement("Available",... what I need...)]
public DateTime AvailableFrom{get; set;}
</code></pre>
<p>One solution would be creating extra properties, but I really don't like the code bloat.</p>
<pre><code> private DateTime _availableFrom;
[XmlElement("AvailableFrom")]
public DateTime AvailableFrom
{
get
{
return _availableFrom;
}
set
{
_availableFrom = value;
}
}
[XmlElement("Available")]
public DateTime Available
{
get
{
return _availableFrom;
}
set
{
_availableFrom = value;
}
}
</code></pre>
http://stackoverflow.com/questions/641310/what-are-some-utilities-to-search-for-code-throughout-many-files-or-folders/641782#6417821Answer by Ward Werbrouck for What are some utilities to search for code throughout many files or folders?Ward Werbrouck2009-03-13T07:56:54Z2009-03-13T07:56:54Z<p>I use Notepad++ for this. It even has regex support.</p>
<p>Search->Search in files</p>
http://stackoverflow.com/questions/640691/my-jquery-code-not-working-ie6-ie7/640780#6407801Answer by Ward Werbrouck for my jquery code not working IE6,IE7Ward Werbrouck2009-03-12T22:42:37Z2009-03-12T22:42:37Z<pre><code>'url('+brnbackgroundurl+')'+bgrepeat
</code></pre>
<p>I think the error is in this part, you are missing a space.</p>
<p>Like this:</p>
<pre><code>'url('+brnbackgroundurl+') '+bgrepeat
</code></pre>
<p>And to avoid more problems, just use the correct attribute order.
Example from w3schools:</p>
<pre><code>background: #00ff00 url('smiley.gif') no-repeat fixed center;
</code></pre>
http://stackoverflow.com/questions/630330/what-does-mean-in-c/630344#63034419Answer by Ward Werbrouck for What does "() =>" mean in C#?Ward Werbrouck2009-03-10T14:06:36Z2009-03-10T14:06:36Z<p>It's a lambda expression that takes 0 arguments</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb397687.aspx</a></p>
http://stackoverflow.com/questions/630166/extract-domain-from-link/630187#6301872Answer by Ward Werbrouck for Extract domain from linkWard Werbrouck2009-03-10T13:33:04Z2009-03-10T13:33:04Z<pre><code>echo parse_url($url, PHP_URL_HOST);
</code></pre>
<p>More info: <a href="http://be.php.net/manual/en/function.parse-url.php" rel="nofollow">http://be.php.net/manual/en/function.parse-url.php</a></p>
http://stackoverflow.com/questions/630041/handling-null-references-when-using-eg-linq-to-xml4Handling null references when using eg Linq-To-XmlWard Werbrouck2009-03-10T13:00:41Z2009-03-10T13:09:55Z
<p>Is there a better/shorter way to handle (lots of) null references, for example when I'm using LinqToXML.</p>
<p>I wrote this extention for XElement that handles it quite nicely, but maybe there is another way? </p>
<p>And what about the function name?
"And" isn't really descriptive.</p>
<pre><code>public static class XmlExtentions
{
public static T And<T>(this T obj, Func<T, T> action) where T : XElement
{
return obj == null ? obj : action(obj);
}
}
internal class Program
{
private static void Main()
{
//create example xml element
var x =
XElement.Parse("<root><find><name>my-name</name></find></root>");
//old way
var test1 = x.Element("find");
if (test1 != null) test1 = test1.Element("name");
Console.WriteLine(test1);
//using the extentions method
var test2 = x.Element("find").And(findme => findme.Element("name"));
Console.WriteLine(test2);
Console.ReadLine();
}
}
</code></pre>
<p>PS: I know I could use XPath for this example, but that's not always the case in more complex cases.</p>
http://stackoverflow.com/questions/628306/how-to-avoid-name-clashes-in-javascript-widgets/628325#6283254Answer by Ward Werbrouck for How to avoid name clashes in javascript widgetsWard Werbrouck2009-03-09T22:43:45Z2009-03-09T22:43:45Z<p>Javascript namespaces:</p>
<p><a href="http://www.codeproject.com/KB/scripting/jsnamespaces.aspx" rel="nofollow">http://www.codeproject.com/KB/scripting/jsnamespaces.aspx</a></p>
<p>It is heavily used in several javascript frameworks/libraries, such as YUI:
<a href="http://developer.yahoo.com/yui/yahoo/" rel="nofollow">http://developer.yahoo.com/yui/yahoo/</a></p>
http://stackoverflow.com/questions/628239/date-and-time-input/628259#6282597Answer by Ward Werbrouck for Date and time inputWard Werbrouck2009-03-09T22:20:39Z2009-03-09T22:35:14Z<pre><code>$mysqldate = date( 'Y-m-d H:i:s', $phpdate );
$phpdate = strtotime( $mysqldate );
</code></pre>
<p>edit:</p>
<p>This and Everything else about date/time in PHP, and how to use it with MySQL, is in the wonderfull PHP documentation: </p>
<p><a href="http://be.php.net/datetime" rel="nofollow">http://be.php.net/datetime</a></p>
http://stackoverflow.com/questions/564650/convert-html-to-pdf-c/564654#564654Comment by Ward Werbrouck on Convert HTML to PDF C#Ward Werbrouck2009-11-25T14:58:39Z2009-11-25T14:58:39ZI don't see how this would help convert HTML to PDF, can't find anything about support for HTML as an input format.http://stackoverflow.com/questions/1370236/what-does-somemethod-x-something-mean-in-cComment by Ward Werbrouck on What does SomeMethod(() => x.Something) mean in C#Ward Werbrouck2009-09-02T21:36:07Z2009-09-02T21:36:07ZDuplicate: <a href="http://stackoverflow.com/questions/630330/what-does-mean-in-c/630344#630344" rel="nofollow" title="what does mean in c">stackoverflow.com/questions/630330/…</a>http://stackoverflow.com/questions/1216675/add-two-numbers-without-knowing-their-type-in-netComment by Ward Werbrouck on Add Two Numbers Without Knowing Their Type in .NET?Ward Werbrouck2009-08-01T14:23:09Z2009-08-01T14:23:09ZI know you can't use the + operator on objects, but passing the values to a function ain't gonna solve that ;) And what about precision? If one value is a double and the other a decimal, what should the output be? I think you'd need a giant switch/if-else structure to handle all cases, if you care about that.http://stackoverflow.com/questions/1216675/add-two-numbers-without-knowing-their-type-in-netComment by Ward Werbrouck on Add Two Numbers Without Knowing Their Type in .NET?Ward Werbrouck2009-08-01T14:09:41Z2009-08-01T14:09:41ZWhy not just use the "+" operator? Why the need for a function?http://stackoverflow.com/questions/1184181/what-are-some-specific-circumstances-in-which-you-used-json-over-xml/1184188#1184188Comment by Ward Werbrouck on What are some specific circumstances in which you used JSON over XML?Ward Werbrouck2009-07-26T10:13:57Z2009-07-26T10:13:57ZWarning: do not parse JSON from external sources with eval()... EVER!http://stackoverflow.com/questions/1062444/can-not-create-commandbar-when-outlook-is-run-minimized-outlook-2007-add-in/1093308#1093308Comment by Ward Werbrouck on Can not create CommandBar when Outlook is run minimized (Outlook 2007 Add-In)Ward Werbrouck2009-07-09T11:29:21Z2009-07-09T11:29:21ZThanks for you input Pter, but I went with 76mel's answer. It doesn't need a user action before adding the toolbar. What if the first thing the user wants to do is use the not yet added toolbar? Doesn't seem very user friendly...http://stackoverflow.com/questions/1062444/can-not-create-commandbar-when-outlook-is-run-minimized-outlook-2007-add-in/1079444#1079444Comment by Ward Werbrouck on Can not create CommandBar when Outlook is run minimized (Outlook 2007 Add-In)Ward Werbrouck2009-07-09T11:27:06Z2009-07-09T11:27:06ZAllright, I was indeed using the wrong Timer! Using the System.Windows.Forms.Timer works just fine. So I go with your answer, since it doesn't expect user action before adding the toolbar. Thanks!http://stackoverflow.com/questions/1062444/can-not-create-commandbar-when-outlook-is-run-minimized-outlook-2007-add-in/1079444#1079444Comment by Ward Werbrouck on Can not create CommandBar when Outlook is run minimized (Outlook 2007 Add-In)Ward Werbrouck2009-07-08T07:38:28Z2009-07-08T07:38:28ZWhen using a Timer I can't set the icons on my buttons. I get this amazing exception: "Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))"http://stackoverflow.com/questions/1062444/can-not-create-commandbar-when-outlook-is-run-minimized-outlook-2007-add-in/1093308#1093308Comment by Ward Werbrouck on Can not create CommandBar when Outlook is run minimized (Outlook 2007 Add-In)Ward Werbrouck2009-07-07T20:59:10Z2009-07-07T20:59:10ZThanks, this solved it in the case I was talking about.
But now there is another related problem. I also tried the OnObjectChange before, but it's kind of awkard since it only loads the toolbar when the user clicks something in Outlook.http://stackoverflow.com/questions/1062444/can-not-create-commandbar-when-outlook-is-run-minimized-outlook-2007-add-in/1079444#1079444Comment by Ward Werbrouck on Can not create CommandBar when Outlook is run minimized (Outlook 2007 Add-In)Ward Werbrouck2009-07-06T15:06:49Z2009-07-06T15:06:49ZDoesn't work, since that event isn't fired when opening the Outlook main window. Any other ideas?http://stackoverflow.com/questions/859186/why-is-c-statically-typed/859196#859196Comment by Ward Werbrouck on Why is C# statically typed?Ward Werbrouck2009-05-13T17:21:40Z2009-05-13T17:21:40ZSince this answer has the most upvotes, can someone edit the answer to mention "static type checking at compile time" or something?http://stackoverflow.com/questions/859186/why-is-c-statically-typed/859225#859225Comment by Ward Werbrouck on Why is C# statically typed?Ward Werbrouck2009-05-13T17:19:00Z2009-05-13T17:19:00Z(Strongly-typed or weakly-typed) and (static-type-checking or duck-typing). Don't get confused :)
Ruby for example is Strongly Typed AND uses duck-typing.http://stackoverflow.com/questions/859186/why-is-c-statically-typed/859196#859196Comment by Ward Werbrouck on Why is C# statically typed?Ward Werbrouck2009-05-13T17:11:29Z2009-05-13T17:11:29ZWell, being strongly typed doesn't always mean you should define the type.
For example Ruby, Python and Javascript are strongly typed but uses duck typing instead of static type checking.http://stackoverflow.com/questions/849836/anonymous-class-initialization-in-vb-netComment by Ward Werbrouck on Anonymous class initialization in VB.NetWard Werbrouck2009-05-11T20:13:23Z2009-05-11T20:13:23ZYour example shows an anonymous class in C#, it is not related to json..http://stackoverflow.com/questions/817807/c-how-to-remove-all-null-properties-from-a-generic-object-using-reflectionComment by Ward Werbrouck on C#: How to remove all null properties from a generic object using reflection?Ward Werbrouck2009-05-03T19:38:49Z2009-05-03T19:38:49ZHow would you remove a member? The question is a bit unclear...