473,796 Members | 2,520 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why cannot MSFT publish correct/updated info in MSDN and KB?

Why cannot MSFT publish correct/updated info in MSDN and KB?

It is to MSFT's advantage to encourage us to migrate old code, and develop
new code, with .NET, so they need to take extra care when publishing
examples for us to follow.
The following is a simple example of such an error.

The MSDN library that ships with VS .NET has an article "creating Office
managed COM Add-ins with visual studio .NET" that demonstrates how to make a
VB .NET COM add-in using Powerpoint.See
ms-help://MS.MSDNQTR.2003 FEB.1033/dnofftalk/html/office06062002. htm. The
article is also available the MSDN web site.

Since the article uses Powerpoint 2002, I booted to my system that has
Office XP and VS .NET 2002.
I obediently inserted the code from the article, and was disappointed to
find that I had to change 2 statements.

First, I had to change:
Imports PowerPoint.PpSl ideLayout
to
Imports Microsoft.Offic e.Interop.Power Point.PpSlideLa yout ' Modified by HK

Then I had to change
Dim objPresentation As PowerPoint.Pres entation
to
Dim objPresentation As Microsoft.Offic e.Interop.Power Point.Presentat ion '
Modified by HK

I then rebooted to my system that has Office 2003 and VS .NET 2003.
Other than replacing the Powerpoint reference, I do not recall further
problems.
--
http://www.standards.com/; See Howard Kaikow's web site.
Nov 20 '05 #1
5 1169
* "Howard Kaikow" <ka****@standar ds.com> scripsit:
Since the article uses Powerpoint 2002, I booted to my system that has
Office XP and VS .NET 2002.
I obediently inserted the code from the article, and was disappointed to
find that I had to change 2 statements.

First, I had to change:
Imports PowerPoint.PpSl ideLayout
to
Imports Microsoft.Offic e.Interop.Power Point.PpSlideLa yout ' Modified by HK

Then I had to change
Dim objPresentation As PowerPoint.Pres entation
to
Dim objPresentation As Microsoft.Offic e.Interop.Power Point.Presentat ion '
Modified by HK


Maybe there is a project-wide import on 'Microsoft.Offi ce.Interop' missing?

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #2
Yes.

But my point is why MSFT does not check out/correct such articles/help.

There's nothing simpler than running the code prepared for an article, then
making sure that the code is correctly put in the article.

And, when incorrect info gets in a Help file, it often does not get
corrected.
I've got a good example of his, if I can find it. I'll check whether problem
was corrected in Help in latest version of product.
I'll be happily surprised if it was corrected.

--
http://www.standards.com/; See Howard Kaikow's web site.
"Herfried K. Wagner [MVP]" <hi************ ***@gmx.at> wrote in message
news:2g******** ****@uni-berlin.de...
* "Howard Kaikow" <ka****@standar ds.com> scripsit:
Since the article uses Powerpoint 2002, I booted to my system that has
Office XP and VS .NET 2002.
I obediently inserted the code from the article, and was disappointed to
find that I had to change 2 statements.

First, I had to change:
Imports PowerPoint.PpSl ideLayout
to
Imports Microsoft.Offic e.Interop.Power Point.PpSlideLa yout ' Modified by HK
Then I had to change
Dim objPresentation As PowerPoint.Pres entation
to
Dim objPresentation As Microsoft.Offic e.Interop.Power Point.Presentat ion ' Modified by HK
Maybe there is a project-wide import on 'Microsoft.Offi ce.Interop'

missing?
--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 20 '05 #3
There's nothing simpler than checking ones own code before releasing it to
the customer, but how often does one get a call the same day, only to
discover that there is something wrong with the program?

The people at Microsoft are only human, like the rest of us. It's
frustrating, I know, but we have all been there. If you find a problem,
report it. Do you fix problems you don't know about? If no one tells you
about a problem, do you go looking for it? I'm sure you have better things
to do.

I'm not having a go, but I am realistic about producing quality software -
I've been trying to do it for long enough.

Charles
"Howard Kaikow" <ka****@standar ds.com> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
Yes.

But my point is why MSFT does not check out/correct such articles/help.

There's nothing simpler than running the code prepared for an article, then making sure that the code is correctly put in the article.

And, when incorrect info gets in a Help file, it often does not get
corrected.
I've got a good example of his, if I can find it. I'll check whether problem was corrected in Help in latest version of product.
I'll be happily surprised if it was corrected.

--
http://www.standards.com/; See Howard Kaikow's web site.
"Herfried K. Wagner [MVP]" <hi************ ***@gmx.at> wrote in message
news:2g******** ****@uni-berlin.de...
* "Howard Kaikow" <ka****@standar ds.com> scripsit:
Since the article uses Powerpoint 2002, I booted to my system that has
Office XP and VS .NET 2002.
I obediently inserted the code from the article, and was disappointed to find that I had to change 2 statements.

First, I had to change:
Imports PowerPoint.PpSl ideLayout
to
Imports Microsoft.Offic e.Interop.Power Point.PpSlideLa yout ' Modified
by
HK
Then I had to change
Dim objPresentation As PowerPoint.Pres entation
to
Dim objPresentation As
Microsoft.Offic e.Interop.Power Point.Presentat ion
' Modified by HK


Maybe there is a project-wide import on 'Microsoft.Offi ce.Interop'

missing?

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>


Nov 20 '05 #4
* "Howard Kaikow" <ka****@standar ds.com> scripsit:
But my point is why MSFT does not check out/correct such articles/help.
Maybe no bug has been reported yet?
There's nothing simpler than running the code prepared for an article, then
making sure that the code is correctly put in the article.
ACK. It's even worser for translated versions of the articles.
And, when incorrect info gets in a Help file, it often does not get
corrected.
I've got a good example of his, if I can find it. I'll check whether problem
was corrected in Help in latest version of product.
I'll be happily surprised if it was corrected.


I have reported some bugs for the MSDN documentation using the email
address that can be found on bottom of the MSDN pages (local
installation), and I hope they will fix the bugs.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #5

"Herfried K. Wagner [MVP]" <hi************ ***@gmx.at> wrote
I have reported some bugs for the MSDN documentation using the email
address that can be found on bottom of the MSDN pages (local
installation), and I hope they will fix the bugs.


I was saying that back in the beta process. Every chance I got I made a
point to suggest that it is very important that they make sure the documentation
matches the runtime responses. That was in fact where I spent most of my
time during the betas. The documentation we get is sparse as it is, even so
little mistakes can cause a significant amount of wasted effort over time.

I hope everyone does as you indicate and provides feedback on the mistakes
they do find. Ten minutes of providing feedback may save an hour for the
first ten people who see the corrected version, and more time, considering
all those who follow....

LFS



Nov 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
9550
by: George Copeland | last post by:
This is a request for help fixing a SQL Server 2000/ADO problem on Windows XP. I would appreciate any useful assistance. PROBLEM: SQL Server access on my machine fails as follows: 1. All of my VB6 apps reference the following ADO typelib: Microsoft ActiveX Data Objects 2.7 Library Located at: c:\Program Files\Common Files\System\ADO\msado27.tlb
0
2230
by: Kenneth Baltrinic | last post by:
I am getting the following error when deserializing an object that has a couple of dozen dependant objects in its object graph. Anyone who can suggest where I might begin to look to resolve problem I would greatly in debted to. Serializing the object works fine. When I try to deserialize it, I get the following error: A first chance exception of type 'System.Runtime.Serialization.SerializationException' occurred in mscorlib.dll Additional...
6
13732
by: Chad Crowder | last post by:
Getting the following error on my production server whether the file exists or not: "System.IO.IOException: Cannot create a file when that file already exists." Here's the code generating the error (seems to be happening when I try creating a directory) If dirmgr.Exists("s:\blah\" & txt_name.Text) Then lblerror.Text = lblerror.Text & "Unable to build physical path. " &
3
1590
by: Rob Rogers | last post by:
I have an ASP.NET datagrid that contains an image. The image can be one of two images, either "INFO.GIF" or "NOINFO.GIF". The datagrid looks fine when I test it from my local machine in visual studio.net, but when I publish it to the net, the "INFO.GIF" image doesn't show up. I am pulling my hair out on this one. Here is the code from my aspx file. <asp:templateColumn> <itemtemplate>
7
3856
by: Wayne Brantley | last post by:
I have found what appears to be an error in streaming with Datasets. It causes an error of 'Cannot find relation 0' when recreating the dataset from a stream. Here is how you reproduce it. Lets assume you have tables like this: Customers CustomerName: Varchar(50) CustomerNumber: Int (Primary Key)
2
22416
by: GaryDean | last post by:
although my publish usually works for my asp.net 2.0 projects, sometimes it just says "Publish Failed". Is there anywhere I can look to see the reason? Perhaps a log? -- Regards, Gary Blakely
2
1948
by: Ken Fine | last post by:
Sorry if this is off-topic but I can't find a better MSFT-managed newsgroup for the question. I'm looking for contact info for Microsoft's campus rep for the University of Washington in Seattle. This isn't specifically "academic alliance"-related. The most appropriate person would be a rep in charge of sales or who was a general liason between the company and the University. I'm a .NET developer/systems adminstrator working out of the...
4
4443
by: eschneider | last post by:
I get the following error when trying to browse the .asmx. I get the same thing when trying to add a reference. using .NET 2.0 There is no error message. Any ideas? Thanks,
3
2251
by: =?Utf-8?B?Sm9obiBT?= | last post by:
Hi, I'm trying to publish a new web service that I've written. It's fine when I publish it on the local PC but I get Publish failed in the development environment when I try to publish it to another server.
0
10457
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10231
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10176
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10013
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9054
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6792
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5443
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4119
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2927
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.