User matthews - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:38:06Z http://stackoverflow.com/feeds/user/53189 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/894050/any-way-to-extend-or-modify-drag-and-drop-in-outlook-with-vsto 0 Any way to extend or modify drag-and-drop in Outlook with VSTO? matthews 2009-05-21T17:16:45Z 2009-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-api 1 How do I read the Recieved Date from Outlook MSG files -without- the Outlook API? matthews 2009-08-12T14:36:33Z 2009-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-working 0 Why is SQL Server 2008 Management Studio Intellisense not working? matthews 2009-02-16T07:06:13Z 2009-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-i 0 ClickOnce error after delpoying -- has a different computed hash than specified in manifest. matthews 2009-08-21T16:19:07Z 2009-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#1293531 1 Answer by matthews for What are your biggest complaints about Sharepoint? matthews 2009-08-18T12:30:52Z 2009-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#1267529 0 Answer by matthews for How do I read the Recieved Date from Outlook MSG files -without- the Outlook API? matthews 2009-08-12T17:21:55Z 2009-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:") &gt; -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 &lt; 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#558174 1 Answer by matthews for Why is SQL Server 2008 Management Studio Intellisense not working? matthews 2009-02-17T18:35:08Z 2009-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-filedialog 0 Where is Outlook's save FileDialog? matthews 2009-04-28T16:25:10Z 2009-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-2 0 Is there a way to replace the Reading Pane with a VSTO CustomTaskBar in Outlook 2007? matthews 2009-05-07T12:38:38Z 2009-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-control 1 How do I remove a tooltip currently bound to a control? matthews 2009-07-22T14:09:22Z 2009-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#893988 0 Answer by matthews for Explorer view on a non-SharePoint page matthews 2009-05-21T17:05:58Z 2009-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>&lt;iframe src="\\path\to\sharepoint\webdav\folder"&gt; </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>&lt;iframe src="c:\"&gt; </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-passing 0 SilverLight 3 Out of Browser Experience Parameter Passing matthews 2009-03-19T21:43:44Z 2009-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>&lt;param name="initParams" value="path=http://foo.bar/pathToVid.wmv, autoplay=false" /&gt; </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#683920 1 Answer by matthews for Silverlight 3 - Can I run Out-of-browser inside another application matthews 2009-03-25T23:23:49Z 2009-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#549611 437 Answer by matthews for What is the best comment in source code you have ever encountered? matthews 2009-02-14T19:21:06Z 2009-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#496027 6 Answer by matthews for What do I need to excell at Silverlight development? matthews 2009-01-30T16:04:21Z 2009-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#447990 1 Answer by matthews for F6 for compiling? matthews 2009-01-15T18:56:24Z 2009-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#2850 Comment by matthews on How do you printf an unsigned long long int? matthews 2009-10-11T20:57:26Z 2009-10-11T20:57:26Z Works 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#742611 Comment by matthews on Open a URL in a new browser process matthews 2009-08-20T17:32:23Z 2009-08-20T17:32:23Z This 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#1019689 Comment by matthews on Save icon: Still a floppy disk? matthews 2009-08-18T23:09:51Z 2009-08-18T23:09:51Z I 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#1025122 Comment by matthews on Save icon: Still a floppy disk? matthews 2009-08-18T23:05:38Z 2009-08-18T23:05:38Z Well 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-drunk Comment by matthews on Can you code while drunk? matthews 2009-07-25T01:04:43Z 2009-07-25T01:04:43Z I 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#1165563 Comment by matthews on How do I remove a tooltip currently bound to a control? matthews 2009-07-22T14:16:52Z 2009-07-22T14:16:52Z Ah, 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-vsto Comment by matthews on Any way to extend or modify drag-and-drop in Outlook with VSTO? matthews 2009-05-21T17:44:12Z 2009-05-21T17:44:12Z The 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 -&gt; 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#526396 Comment by matthews on ClickOnce: The required version of the .NET Framework is not installed on this computer matthews 2009-05-13T17:18:41Z 2009-05-13T17:18:41Z I'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#835198 Comment by matthews on Is there a way to replace the Reading Pane with a VSTO CustomTaskBar in Outlook 2007? matthews 2009-05-07T16:49:20Z 2009-05-07T16:49:20Z Ah 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#798822 Comment by matthews on Where is Outlook's save FileDialog? matthews 2009-05-07T12:40:41Z 2009-05-07T12:40:41Z I 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#750689 Comment by matthews on What technologies are you using even though they are embarassingly out of date? matthews 2009-04-19T17:09:56Z 2009-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#688055 Comment by matthews on Visual studio on windows xp matthews 2009-03-29T02:57:32Z 2009-03-29T02:57:32Z If 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#538878 Comment by matthews on How do you archive an entire website for offline viewing? matthews 2009-02-11T21:34:12Z 2009-02-11T21:34:12Z From the --help, I can see what the rest do, but what do the flags K (capital) and E do?