.NET Framework - This newsgroup

Asked By theNugget2009
12-Sep-09 06:08 AM
Hi All

I have been reviewing this Newsgroup for a while and there never seems to be
much activity on it. Where is there a active Forum\Newsgroup for VSTO?

Regards

D
Microsoft Excel
(1)
Microsoft Word
(1)
Outlook 2007
(1)
Outlook 2003
(1)
Office 2007
(1)
Office 2003
(1)
Outlook
(1)
VSTO
(1)
  Norman Yuan replied to theNugget2009
13-Sep-09 01:00 PM
The main reason is that, I guess, there is not a lot people doing VSTO
development: it is jsut too risky in term of ROI (return of investment).
Basically, you can only target Office 2007 and Office2003 Pro users. I'd
better there are still more Office 2003 users that Office 2007. Among Office
2003 users, how many of them use Office 2003 Pro, instead of Office 2003
Standard? Even VS2008 made quite some changes to VSTO so that it is a bit
easier to work with than VSTO2003/5, still, comparing to VBA, it is just too
early to to choose VSTO than VBA.
  Ken Slovak - [MVP - Outlook] replied to theNugget2009
14-Sep-09 09:02 AM
The main VSTO support area is an MSDN Web forum. The VSTO team participates
there and there is a lot more traffic there.

The URL for that forum is
http://social.msdn.microsoft.com/forums/en-US/vsto/threads/

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
  theNugget2009 replied to Norman Yuan
18-Sep-09 03:12 PM
Hang on, i thought you could target Office 2003 Standard users?
  Norman Yuan replied to theNugget2009
22-Sep-09 10:07 AM
Only the stand-alone Office app, such as MS Word 2003, or MS Excel 2003. or
MS Outlook 2003 as individually bought product, not the ones coming as part
of MS Office2003 standard suite. In reallity, there a much less users who
bought MS Office app individually than uses who have Office2003 suite, be is
Standard suite or Pro suite. Yes, VSTO project only works with Office 2003
Pro and individual lisenced app, not the Standard (or Basic, as many OEM
pre-loaded into a new computer) suite, which are used by most users.
  theNugget2009 replied to Norman Yuan
23-Sep-09 03:37 AM
Isn't this a ballsup by Microsoft, in my firm most users have standard
edition as they do  not require Access.
  Norman Yuan replied to theNugget2009
25-Sep-09 08:27 PM
I would not waste time on VSTO stuff, before .NET4.0 and VS2010, at least,
and maybe, only with MS Office2010 or later(?). too.
Create New Account
help
Excel dependent on .Net Framework Runtime? .NET Framework Hello everyone, I am wondering whether Microsoft Excel 2003 is a native application or dependent on any .Net Framework Runtime, like 1.1, 2.0 or 3.0? How about Microsoft Excel 2007? thanks in advance, George VC++.NET Discussions Microsoft Excel (1) Visual Studio (1) Excel 2007 (1) Excel 2003 (1) Office (1) Excel (1) Word (1) CLRInsideOut (1) Run Excel
Microsoft Excel and Word 2000 .NET Framework I have Windows XP-Microsoft Office 2000 Small Business and when I try to open any files previously saved I Recycle Bin, did advanced searches and still cannot pull any of my past worksheets or word docs up. I have reloaded my Excel, restored the computer back to that date and still no luck. Can someone tell me my files? Thank you for any help! - - Ia Cattle Lady .NET Discussions Windows XP (1) Microsoft Excel (1) Office (1) Word (1) Missing (1) Recycle (1) CattleLady (1) Cattle (1) I'm
Security problem w / VB.Net and Word / Excel on Vista 32bit .NET Framework Hi, I have a VB.Net application that I have recently upgraded from Visual Studio 2003 to Visual Studio 2005. The VB.Net app accesses Word and Excel. When I run the newly compiled VB.Net app on the Windows XP Pro system the app can interact with Word and Excel just fine. I'm pretty certain I have the correct Microsoft Word 11.0 Object Library and Microsoft Excel 11.0 Object Library references. All of my
switch focus between modal forms? .NET Framework If I have, say, Microsoft Excel open on the left screen, and Microsoft Word open at the same time on the right screen, then I can move the mouse cursor over Excel and click on it, and Excel gets activated, and I can then move the mouse cursor over the Word screen, click on it, and Word gets activated. I'm writing a program using two Windows Forms in VB.Net (VS
How to check word, excel are installed in the machine .NET Framework Hi, How to check whether the MSOffice files like word, excel, powerpoint are installed in the machine or not? Anyone please help! C# Discussions Type.GetTypeFromProgID (1) Office (1) Excel (1) Console.WriteLine (1) Application (1) Console (1) MSOffice (1) OfficeType (1) There are a few ways. You could try the following: try { Type officeType = Type.GetTypeFromProgID("Excel.Application"); if (officeType = = null) { Console.WriteLine("Excel is missing"); } else { Console.WriteLine("Excel is present"); } } catch (Exception ex) { Console.WriteLine(ex.Message); } Or you could have a look