User matthews - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:38:06Zhttp://stackoverflow.com/feeds/user/53189http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/894050/any-way-to-extend-or-modify-drag-and-drop-in-outlook-with-vsto0Any way to extend or modify drag-and-drop in Outlook with VSTO?matthews2009-05-21T17:16:45Z2009-11-07T23:00:18Z
<p>I have an add-in I'm working on in Outlook that relies on drag-and-drop to save an Outlook file to a file automagically. The problem is that the default behaviour is to use the email's subject line as the filename, and emails with extremely long subject lines send an error as there's not enough space in 250 characters to store all of it plus the rest of the path.</p>
<p>I'd like to change Outlook's drag and drop to Explorer so that the default filename is kept to the subject line cut to say 100 characters. Any pointers on where I'd go about doing this?</p>
http://stackoverflow.com/questions/1266576/how-do-i-read-the-recieved-date-from-outlook-msg-files-without-the-outlook-api1How do I read the Recieved Date from Outlook MSG files -without- the Outlook API?matthews2009-08-12T14:36:33Z2009-11-03T14:36:49Z
<p>I need to read stuff from an Outlook msg file. Currently I'm using a class from <a href="http://www.codeproject.com/KB/office/reading_an_outlook_msg.aspx" rel="nofollow">CodeProject.com</a> project to accomplish this, since deploying VSTO and Outlook on a server is not an option.</p>
<p>This class gets To, From, CC, Subject, Body, and everything else I need from the msg file, except Date information (such as Recieved Date and Sent Date).</p>
<p>There is some (really, really low-level) <a href="http://msdn.microsoft.com/en-us/library/cc463912.aspx" rel="nofollow">documentation</a> on how to get stuff out of msg files on MSDN, but it's a little beyond the scope of this project and doesn't mention dates at all.</p>
<p>Ideally I'd be able to have a drop-in replacement for the class I am using now (OutlookStorage.cs in the previously mentioned CodeProject) or be able to modify the existing class a bit. To modify, I would need the correct 4 character hexidecimal prop identifier for recieved date. For instance, Subject is listed as <code>PR_SUBJECT = "0037"</code> and Body is listed as <code>PR_BOY = "1000"</code>.</p>
http://stackoverflow.com/questions/552458/why-is-sql-server-2008-management-studio-intellisense-not-working0Why is SQL Server 2008 Management Studio Intellisense not working?matthews2009-02-16T07:06:13Z2009-10-16T09:41:45Z
<p>I'm being driven to insanity trying to figure out why Intellisense just fails to work at all. The server I'm using is local and is 2008, the database is set to 2008 compatibility, Intellisense is on in every menu I can find, and yet no member list will pop up even with a CTRL-J.</p>
<p>Has anyone experienced something like this and found a way to fix it? I really can't bring myself to start work unless I have Intellisense working.</p>
http://stackoverflow.com/questions/1312911/clickonce-error-after-delpoying-has-a-different-computed-hash-than-specified-i0ClickOnce error after delpoying -- has a different computed hash than specified in manifest.matthews2009-08-21T16:19:07Z2009-08-21T16:19:07Z
<p>Afer deploying my VSTO add-in with ClickOnce, I get the following error mesasge when trying to launch setup.exe:</p>
<blockquote>
<p>File, Addin.resources.dll, has a different computed hash than specified in manifest.</p>
</blockquote>
<p>Why is this happening? What can I do to fix this?</p>
http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint/1293531#12935311Answer by matthews for What are your biggest complaints about Sharepoint?matthews2009-08-18T12:30:52Z2009-08-18T12:30:52Z<p>There's a saying around my office:</p>
<h2>Sharepoint is slow.</h2>
http://stackoverflow.com/questions/1266576/how-do-i-read-the-recieved-date-from-outlook-msg-files-without-the-outlook-api/1267529#12675290Answer by matthews for How do I read the Recieved Date from Outlook MSG files -without- the Outlook API?matthews2009-08-12T17:21:55Z2009-08-17T11:54:42Z<p>Got a hint from <a href="http://social.msdn.microsoft.com/Forums/en-US/innovateonoffice/thread/346985ad-396d-4e3f-aaa2-4d99392db804" rel="nofollow">this</a>:</p>
<pre><code>string fullFileName = "c:\message.msg";
DateTime dateRevieved = new DateTime();
StreamReader sr = new StreamReader(fullFileName, Encoding.Default);
string full = sr.ReadToEnd();
string date;
int iStart;
int iLast;
string caption;
//This -should- handle all manner of screwage
//The ONLY way it would not is if someone guessed the -exact- to-the-second
//time that they send the message, put it in their subject in the right format
while (true) { //not an infinite loop, I swear!
caption = "Date:";
if (full.IndexOf("Date:") > -1) { //full shortens with each date is removed
string temp = "";
iStart = full.LastIndexOf(caption);
temp = full.Remove(0, iStart + caption.Length);
full = full.Substring(0, iStart);
iLast = temp.IndexOf("\r\n");
if (iLast < 0) {
date = temp;
} else {
date = temp.Substring(0, iLast);
}
date = date.Trim();
if (date.Contains(subject) || subject.Contains(date)) {
continue; //would only happen if someone is trying to screw me
}
try {
dateRevieved = DateTime.Parse(date); //will fail if not a date
break; //if not a date breaks out of while loop
} catch {
continue; //try with a smaller subset of the msg
}
} else {
break;
}
}
</code></pre>
<p>This is kind of a hack compared to the ways you can get other things from msg files using something this <a href="http://www.codeproject.com/KB/office/reading%5Fan%5Foutlook%5Fmsg.aspx" rel="nofollow">lovely project</a>. Still, it's stood up to everything I have thrown against it, and as noted the -only- way to fool it is to put the exact to-the-second date in the subject line in the proper format.</p>
http://stackoverflow.com/questions/552458/why-is-sql-server-2008-management-studio-intellisense-not-working/558174#5581741Answer by matthews for Why is SQL Server 2008 Management Studio Intellisense not working?matthews2009-02-17T18:35:08Z2009-08-14T04:08:55Z<p>I ended up fixing it by reinstalling SQL Server 2008. This wasn't at all optimal, but if someone comes across a similar problem be sure to know this route will probably work.</p>
http://stackoverflow.com/questions/798771/where-is-outlooks-save-filedialog0Where is Outlook's save FileDialog?matthews2009-04-28T16:25:10Z2009-08-06T14:51:26Z
<p>I'm working on an Outlook add-in that requires the Office specific FileDialog to interoperate with a Sharepoint site; the common file dialog doesn't have the interoperability. I know that both Word and Excel have a get_fileDialog method under Globals.ThisAddIn.Application.Application, but Outlook doesn't seem to. How do I launch an Outlook FileDialog? Is it even possible?</p>
http://stackoverflow.com/questions/834424/is-there-a-way-to-replace-the-reading-pane-with-a-vsto-customtaskbar-in-outlook-20Is there a way to replace the Reading Pane with a VSTO CustomTaskBar in Outlook 2007?matthews2009-05-07T12:38:38Z2009-08-06T14:46:05Z
<p>I have a custom task pane I've made in VSTO for Outlook 2007, but it needs a fair amount of screen real estate to be functional. I'd like to just take over the place of the Reading Pane, as it won't really be needed when this addon is active. It's also a really great spot since this addon relies on drag-and-drop from mail folders to this task pane, and the closer I can get it to the folder pane, the better.</p>
<p>Any way to replace the Reading Pane, or at least toggle it's visibility?</p>
http://stackoverflow.com/questions/1165540/how-do-i-remove-a-tooltip-currently-bound-to-a-control1How do I remove a tooltip currently bound to a control?matthews2009-07-22T14:09:22Z2009-07-23T15:34:58Z
<p>I'm currently adding a tooltip to a label like so:</p>
<pre><code>ToolTip LabelToolTip = new System.Windows.Forms.ToolTip();
LabelToolTip.SetToolTip(this.LocationLabel, text);
</code></pre>
<p>When I need to change this tooltip as the label's text changes, I try doing the same to add a new tooltip. Unfortunately, the old tooltip remains under the new one, which is really annoying. Is there a method to remove the old tooltip, or should I just make a new label when I want to change the text in a label?</p>
http://stackoverflow.com/questions/832572/explorer-view-on-a-non-sharepoint-page/893988#8939880Answer by matthews for Explorer view on a non-SharePoint pagematthews2009-05-21T17:05:58Z2009-05-21T17:05:58Z<p>While you might think it's some ActiveX control that needs special stuff from Sharepoint, Explorer View is kinda baked right into IE. As long as you've previously used it in SharePoint in a Windows session, as little as the following will net you an Explorer View frame:</p>
<pre><code><iframe src="\\path\to\sharepoint\webdav\folder">
</code></pre>
<p>You can do this with pretty well any valid Windows Explorer path as well, provided the page is hosted locally or on your intranet. Just try making a local test html file with something like:</p>
<pre><code><iframe src="c:\">
</code></pre>
<p>Mind you you'll run into some problems doing it like that, since authentication needs to be passed to SharePoint. The best way I've found is to copy core.js from Sharepoint, cut out everything in it but the navigation stuff and remove any calls in those methods to things not available, and then use NavigateHttpFolderIfSupported() to navigate to "http://path/to/sharepoint/webdav/folder".</p>
<p>The only problem I've had with this method is some incompatibilities with IE8, so watch out for that. I'm fairly certain it has to to with cross-site scripting protection and a call inside core.js but that whole file feels very rube-goldberg-esque and I don't want to mess with it.</p>
http://stackoverflow.com/questions/664189/silverlight-3-out-of-browser-experience-parameter-passing0SilverLight 3 Out of Browser Experience Parameter Passingmatthews2009-03-19T21:43:44Z2009-04-24T01:41:29Z
<p>I have a video player that I made with Silverlight 2, and to pass parameters in I'd have the following in the html file hosting it inside the SilverLight object tag:</p>
<pre><code><param name="initParams" value="path=http://foo.bar/pathToVid.wmv,
autoplay=false" />
</code></pre>
<p>This works in browser, but with the "out of browser" experience in SilverLight 3, the HTML file is autogenerated inside: </p>
<blockquote>
<p>AppData\LocalLow\Microsoft\Silverlight\Offline{{hostname}}.n\index.html </p>
</blockquote>
<p>Or the equivalent on OS X; so this doesn't really work.</p>
<p>I'd like to take a command line argument after the application is launched and just use that as the video source, turning my SilverLight app into a general purpose video player. Is there any way to do this with the out of browser SilverLight?</p>
http://stackoverflow.com/questions/661715/silverlight-3-can-i-run-out-of-browser-inside-another-application/683920#6839201Answer by matthews for Silverlight 3 - Can I run Out-of-browser inside another applicationmatthews2009-03-25T23:23:49Z2009-03-25T23:23:49Z<p>No, you can not embed out-of-browser silverlight into WPF. The sllauncher.exe standalone frame has a special handler for the offline://(hostname).(revision)/ url given to it to allow the app to have all the features of out-of-browser mode (like extra keyboard access). Unless you can find a way to embed this app into your app, you won't be able to get out-of-browser; if you know some way to do this the address for this app is:</p>
<p>C:\Program Files\Microsoft Silverlight\3.0.40307.0\sllauncher.exe</p>
<p>As others have said, however, you can embed a silverlight control inside of an html page and that inside a WebBrowser element. Be cautious with this method, however, since there is currently no x64 support for Silverlight and if you absolutely must do this make sure to compile specifically for x86.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/549611#549611437Answer by matthews for What is the best comment in source code you have ever encountered?matthews2009-02-14T19:21:06Z2009-02-14T19:21:06Z<pre><code>Exception up = new Exception("Something is really wrong.");
throw up; //ha ha
</code></pre>
http://stackoverflow.com/questions/495993/what-do-i-need-to-excell-at-silverlight-development/496027#4960276Answer by matthews for What do I need to excell at Silverlight development?matthews2009-01-30T16:04:21Z2009-01-30T22:33:36Z<p>To be a silverlight developer, you really only need to know a .NET language, event driven programming, and how to use markup for XAML. It's pretty simple really; the XAML describes UI elements (which can all be handled by the designer) which can then be used in code as a .NET object is created for each UI element.</p>
<p>Knowing graphic design is just a bonus.</p>
http://stackoverflow.com/questions/447941/f6-for-compiling/447990#4479901Answer by matthews for F6 for compiling?matthews2009-01-15T18:56:24Z2009-01-15T18:56:24Z<p>VMware's integrated debugging tool did this to me too. You can change this back to whatever you want, but every time you restart Visual Studio your keyboard shortcuts will be molested again.</p>
<p>The only way I could fix this was to remove the VMware debugging tools.</p>
http://stackoverflow.com/questions/2844/how-do-you-printf-an-unsigned-long-long-int/2850#2850Comment by matthews on How do you printf an unsigned long long int?matthews2009-10-11T20:57:26Z2009-10-11T20:57:26ZWorks for me in VS2008. Moreover, as far as I remember the MS C Compiler (when set up to compile straight C) is supposed to be C90 compliant by design; C99 introduced some things that not everyone liked. http://stackoverflow.com/questions/742598/open-a-url-in-a-new-browser-process/742611#742611Comment by matthews on Open a URL in a new browser processmatthews2009-08-20T17:32:23Z2009-08-20T17:32:23ZThis doesn't get the default web browser. In my case, IE8 is set as default and it went for Firefox. There must be a better way to handle this.http://stackoverflow.com/questions/1019573/save-icon-still-a-floppy-disk/1019689#1019689Comment by matthews on Save icon: Still a floppy disk?matthews2009-08-18T23:09:51Z2009-08-18T23:09:51ZI think it's a great testament to Office 2007's usability that my Mom is able to get into a word document and feel empowered to do things she thought were impossible.http://stackoverflow.com/questions/1019573/save-icon-still-a-floppy-disk/1025122#1025122Comment by matthews on Save icon: Still a floppy disk?matthews2009-08-18T23:05:38Z2009-08-18T23:05:38ZWell what do we do as the world moves away from hard drives and towards solid state drives, that may or may not be in a metallic enclosure? You run into the same problem.http://stackoverflow.com/questions/193551/can-you-code-while-drunkComment by matthews on Can you code while drunk?matthews2009-07-25T01:04:43Z2009-07-25T01:04:43ZI don't care if this is closed -- I was just about to ask this myself. Maybe I'll just crack open Visual Studio and see how I do.http://stackoverflow.com/questions/1165540/how-do-i-remove-a-tooltip-currently-bound-to-a-control/1165563#1165563Comment by matthews on How do I remove a tooltip currently bound to a control?matthews2009-07-22T14:16:52Z2009-07-22T14:16:52ZAh, so I should just have a class instance variable holding a ToolTip object instead, and re-use it when it needs to be changed. Much thanks.http://stackoverflow.com/questions/894050/any-way-to-extend-or-modify-drag-and-drop-in-outlook-with-vstoComment by matthews on Any way to extend or modify drag-and-drop in Outlook with VSTO?matthews2009-05-21T17:44:12Z2009-05-21T17:44:12ZThe idea of this addon is to promote sharing of Outlook emails by sorta placing them in a specific folder; nobody seems to want to do a file -> save-as. Essentially, a pane comes up with explorer embedded in it, and the user can drag and drop emails right into the folder. This is all done at a pretty high level; I've not touched Mailitem at all, and have totally relied on the built-in drag-and drop stuff.http://stackoverflow.com/questions/526264/clickonce-the-required-version-of-the-net-framework-is-not-installed-on-this-co/526396#526396Comment by matthews on ClickOnce: The required version of the .NET Framework is not installed on this computermatthews2009-05-13T17:18:41Z2009-05-13T17:18:41ZI'm having a very similar error on an XP VM. The latest .NET framework is installed as well as the VSTO runtime... I'm not sure what's causing it.http://stackoverflow.com/questions/834424/is-there-a-way-to-replace-the-reading-pane-with-a-vsto-customtaskbar-in-outlook-2/835198#835198Comment by matthews on Is there a way to replace the Reading Pane with a VSTO CustomTaskBar in Outlook 2007?matthews2009-05-07T16:49:20Z2009-05-07T16:49:20ZAh that really helps. So just for reference if needed one can minimize the preview pane by doing:
Application.ActiveExplorer().ShowPane(Microsoft.Office.Interop.Outlook.OlPane.olPreview, false);
And to bring it back:
Application.ActiveExplorer().ShowPane(Microsoft.Office.Interop.Outlook.OlPane.olPreview, true);http://stackoverflow.com/questions/798771/where-is-outlooks-save-filedialog/798822#798822Comment by matthews on Where is Outlook's save FileDialog?matthews2009-05-07T12:40:41Z2009-05-07T12:40:41ZI probably should have mentioned I'm using VSTO, not VBA. In any case, I dno't think makign my own dialog box would help since it needed the really specific SharePoint functionality that the Office dialog box provided.http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750689#750689Comment by matthews on What technologies are you using even though they are embarassingly out of date?matthews2009-04-19T17:09:56Z2009-04-19T17:09:56Z@tweakt Funny that site is using divs + css and fails to render properly in IE8. If they had used tables....
http://stackoverflow.com/questions/688045/visual-studio-on-windows-xp/688055#688055Comment by matthews on Visual studio on windows xpmatthews2009-03-29T02:57:32Z2009-03-29T02:57:32ZIf you must use Windows XP, stay with 32-bit and deal with the memory limit of ~3gb. 64-bit XP is not very good; not many drivers targeted to it, has more than a few annoying bugs. If you need more than 3gb of ram, go for 64-bit Vista or 7.http://stackoverflow.com/questions/538865/how-do-you-archive-an-entire-website-for-offline-viewing/538878#538878Comment by matthews on How do you archive an entire website for offline viewing?matthews2009-02-11T21:34:12Z2009-02-11T21:34:12ZFrom the --help, I can see what the rest do, but what do the flags K (capital) and E do?