Visual Basic Q&A

As a software engineer, I focus on .NET, especially asp.net, C#, WCF and so on, and I am also very interested in Search Engine Optimization.

Entries for the ‘exception’ Category

PRB: Cannot Administer Analysis Services by Using DSO in ASP.NET

Symptoms
When you try to use Microsoft Decision Support Objects (DSO) from an ASP.NET application to perform administrative tasks on a server that is running Analysis Services, you may receive an error similar to the following:
When connecting to the local computer that is running Analysis Services:

Cannot connect to the Analysis server on computer ‘MyServer’. Connection to the server is lost
When connecting to a remote computer that is running Analysis Services:

Cannot open connection to Analysis server ‘MyRemoteServer’. Error in data [Possible data corruption]
Resolution
This behavior occurs for two separate reasons. One part of the issue involves the start permissions of the DSO ActiveX DLL. By default, the ActiveX DLLs are carried out in the ASP.NET worker process (Aspnet_wp.exe) under the ASPNET account, when called from an ASPX page.
The other part of the issue is, Aspnet_wp.exe uses a Multi-Threaded Apartment (MTA) model, while DSO uses a Single-Threaded Apartment (STA) model. With the ASP.NET application, the impersonation token is on one of the applications MTA threads and the STA COM component is accessed by a different thread (the single thread in its STA). Because the MTA threads impersonation token is not passed to the STA thread, the STA thread carries out under the security token associated with the Aspnet_wp.exe process.

PRB: “System.Messaging.MessageQueueException” Error Message When You Run the MessageQueue.Send Method MSDN Sample Code or When You Run the MessageQueue.Receive Method MSDN Sample Code

Symptoms
When you run the sample code that appears on certain Microsoft Developer Network (MSDN) Web sites, you may receive the following error message:

An unhandled exception of type ‘System.Messaging.MessageQueueException’ occurred in system.messaging.dll
Additional information: External component has thrown an exception.The following MSDN Web sites are affected:
MessageQueue.Send Method
http://msdn2.microsoft.com/en-us/library/system.messaging.messagequeue.send(vs.71).aspx(http://msdn2.microsoft.com/en-us/library/system.messaging.messagequeue.send(vs.71).aspx)
MessageQueue.Send Method (Object)
http://msdn2.microsoft.com/en-us/library/aa329510(VS.71).aspx(http://msdn2.microsoft.com/en-us/library/aa329510(VS.71).aspx)
MessageQueue.Send Method (Object, MessageQueueTransaction)
http://msdn2.microsoft.com/en-us/library/aa329511(VS.71).aspx(http://msdn2.microsoft.com/en-us/library/aa329511(VS.71).aspx)
MessageQueue.Receive Method
http://msdn2.microsoft.com/en-us/library/system.messaging.messagequeue.receive(vs.71).aspx(http://msdn2.microsoft.com/en-us/library/system.messaging.messagequeue.receive(vs.71).aspx)
MessageQueue.Receive Method (MessageQueueTransaction)
http://msdn2.microsoft.com/en-us/library/aa329505(VS.71).aspx(http://msdn2.microsoft.com/en-us/library/aa329505(VS.71).aspx)
MessageQueue.Receive Method (TimeSpan, MessageQueueTransaction)
http://msdn2.microsoft.com/en-us/library/aa329508(VS.71).aspx(http://msdn2.microsoft.com/en-us/library/aa329508(VS.71).aspx)
Resolution
The sample code that appears on these MSDN Web sites contains the following code that may cause you to receive the System.Messaging.MessageQueueException error message.
Microsoft Visual Basic .NET

myQueue.Send(“My Message Data.”, New _MessageQueueTransaction())Microsoft Visual C# .NET

myQueue.Send(“My Message Data.”, newMessageQueueTransaction());Microsoft Visual C++ .NET

myQueue->Send(S”My Message Data.”, new MessageQueueTransaction());You receive the error message because the call to the myQueue.Send method uses a MessageQueueTransaction object without starting a transaction. Additionally, even if you start a transaction before calling the myQueue.Send method, your application may wait indefinitely to receive the sent message. However, your application does not receive a sent message unless the corresponding transaction is committed.
Note The MessageQueue.Send(Object, MessageQueueTransaction) method applies only to transactional queues. Therefore, you receive the error message that is mentioned in the “Symptoms” sectiononly if you use transactional queues.

PRB: “Requested Registry Access Is Not Allowed” Error Message When ASP.NET Application Tries to Write New EventSource in the EventLog

Symptoms
When you use ASP.NET to create a new event source in the event log, you may receive the following error message:

System.Security.SecurityException: Requested registry access is not allowed.
Resolution
By default, the user token of the ASP.NET worker process is ASPNET (or NetworkService for applications that run on Internet Information Services [IIS] 6.0). The problem in the “Symptoms” section occurs because your account does not have the correct user rights to create an event source.

Output parameters are not returned when you run an ADO.NET command in Visual Basic

Symptoms
Output parameters do not appear to be initialized or return a wrong value when executing an ADO.NET command.
Resolution
This problem can occur for the following reasons: Output parameters are returned at the end of the data stream when using a DataReader object.The Direction property of the parameter is not set properly.

List of bugs that are fixed in Visual Studio .NET 2003 Service Pack 1

Symptoms
Microsoft Visual Studio .NET version 2003 Service Pack 1 (SP1) contains fixes for many bugs that have been documented in the Microsoft Knowledge Base (KB). This article lists these KB articles.
The list contains links to articles about Microsoft ASP.NET and Web Forms, Microsoft Visual Basic .NET, Microsoft Visual C# .NET, Microsoft Visual C++ .NET, Microsoft Visual J# .NET, Microsoft Visual Studio .NET, and Microsoft Visual Studio for Devices.
Resolution
This article contains a list of Microsoft Knowledge Base (KB) articles that describe bugs that are fixed in Microsoft Visual Studio .NET 2003 SP1.
To obtain Visual Studio .NET 2003 SP1, visit the following Microsoft Download Center Web site:
http://www.microsoft.com/downloads/details.aspx?familyid=69d2219f-ce82-46a5-8aec-072bd4bb955e(http://www.microsoft.com/downloads/details.aspx?familyid=69d2219f-ce82-46a5-8aec-072bd4bb955e)To see a complete list of updates for Visual Studio .NET products and for Microsoft .NET Framework products, visit the following Microsoft Developer Network (MSDN) Web site:
http://msdn2.microsoft.com/en-us/vstudio/aa718693.aspx(http://msdn2.microsoft.com/en-us/vstudio/aa718693.aspx)

List of bugs fixed in Visual Studio 6.0 Service Pack 4

Symptoms
This article contains a list of Microsoft Knowledge Base article numbers for bugs that are fixed in Visual Studio version 6.0 Service Pack 4.
Service packs are cumulative. This means that the bugs fixed in a service pack are also fixed in subsequent service packs. Click the Qxxxxxx number that precedes the title of the article to view the article about that bug.
Visual Studio Service Pack 4 is available on from the following Microsoft Web site:
http://msdn2.microsoft.com/en-us/vstudio/Aa718362.aspx(http://msdn2.microsoft.com/en-us/vstudio/Aa718362.aspx)
Resolution
Visual Basic
183979?(http://support.microsoft.com/kb/183979/) FIX: Visual Basic UserControls within UserControls do not print in Internet Explorer
224181?(http://support.microsoft.com/kb/224181/) FIX: GDI resource leak using checkboxes in ListView control
224185?(http://support.microsoft.com/kb/224185/) FIX: User defined type in public function of a user control fails to run
232194?(http://support.microsoft.com/kb/232194/) FIX: ITC OpenUrl method does not return complete files
234317?(http://support.microsoft.com/kb/234317/) FIX: HTML page truncated with Visual Studio SP3 WebClass run time when running in the VB IDE
234771?(http://support.microsoft.com/kb/234771/) FIX: Error 800a2328 returned when browsing a Visual Basic 6.0 WebClass (IIS application)
237175?(http://support.microsoft.com/kb/237175/EN-US/) FIX: VB IDE Improperly Changes Registry Entries of ATL Object Interface When Generating OCA File
238672?(http://support.microsoft.com/kb/238672/EN-US/) FIX: Mouse Hook Not Called When Used in User Controls
239943?(http://support.microsoft.com/kb/239943/EN-US/) FIX: UserControls with Menus Cause Resource Leak
240927?(http://support.microsoft.com/kb/240927/EN-US/) FIX: Cannot Read Source File Error Running PDW Distribution
245124?(http://support.microsoft.com/kb/245124/EN-US/) FIX: VB6SP4 – Access Violation in Remote Automation Manager (Autmgr32.exe)
245159?(http://support.microsoft.com/kb/245159/EN-US/) FIX: Winsock Control SendData Only Works Over the Latest Connection
246233?(http://support.microsoft.com/kb/246233/EN-US/) FIX: Selecting a Nested UserControl DataSource Property May Cause Crash
246919?(http://support.microsoft.com/kb/246919/EN-US/) FIX: Visual Basic Crashes on Code Generated by ActiveX Control Interface Wizard
248416?(http://support.microsoft.com/kb/248416/EN-US/) FIX: Wrong TreeView Node Selected When SingleSel Property = True
248418?(http://support.microsoft.com/kb/248418/EN-US/) FIX: Unable to Develop IIS Applications (WebClasses) on Windows 2000
249607?(http://support.microsoft.com/kb/249607/EN-US/) FIX: Visual Basic 6.0 UserControl in Excel Does Not Print or Display in Print Preview
253555?(http://support.microsoft.com/kb/253555/EN-US/) FIX: Error Message ‘Report Width Is Larger Than the Paper Width’ on Exporting Data Report
242483?(http://support.microsoft.com/kb/242483/EN-US/) FIX: Error 486 or 482 Occurs When Using PrintForm
254166?(http://support.microsoft.com/kb/254166/EN-US/) BUG: Distribution of Microsoft Scripting Runtime Library Fails
257421?(http://support.microsoft.com/kb/257421/EN-US/) FIX: Compiling ActiveX Project Does Not Release Reference Correctly
257495?(http://support.microsoft.com/kb/257495/EN-US/) FIX: ListView Executes the ItemClick Event Twice with LabelEdit Set to Manual
257496?(http://support.microsoft.com/kb/257496/EN-US/) FIX: Optimized Code Incorrectly Compares Floating Point Numbers
257501?(http://support.microsoft.com/kb/257501/EN-US/) FIX: Error Message When Exporting Data Report to HTML File
257516?(http://support.microsoft.com/kb/257516/EN-US/) FIX: Button Removed from Toolbar Cannot Be Added Back
257523?(http://support.microsoft.com/kb/257523/EN-US/) FIX: Resource Leak Occurs When You Display WMF Files in a PictureBox
257524?(http://support.microsoft.com/kb/257524/EN-US/) FIX: Adding Items to ListView Control Results in IPF on Win9x
257529?(http://support.microsoft.com/kb/257529/EN-US/) FIX: MonthView’s Year is Changed When Setting DayofWeek Property
257530?(http://support.microsoft.com/kb/257530/EN-US/) FIX: Images Replicated When Customizing a Toolbar
257531?(http://support.microsoft.com/kb/257531/EN-US/) FIX: Wrong Large Currency Values Returned from Late Bound Object
257543?(http://support.microsoft.com/kb/257543/EN-US/) FIX: MouseDown Event Fires Unexpectedly on Modal Form
257550?(http://support.microsoft.com/kb/257550/EN-US/) FIX: An Invalid Page Fault Error Occurs When You Use a DataReport
257572?(http://support.microsoft.com/kb/257572/EN-US/) FIX: Error Message ‘Missing Dependency Information’ for Mshtml.tlb When Using PDW
257630?(http://support.microsoft.com/kb/257630/EN-US/) FIX: Exception Error Closing an Application Containing a CoolBar Control
257635?(http://support.microsoft.com/kb/257635/EN-US/) FIX: DataGrid Loses Focus After You Cancel AddNew
257641?(http://support.microsoft.com/kb/257641/EN-US/) FIX: DataSource Drop-Down List Box Loads Slowly in Large Projects
257645?(http://support.microsoft.com/kb/257645/EN-US/) FIX: Setting Windowless Control to Transparent Prevents Animation
257657?(http://support.microsoft.com/kb/257657/EN-US/) FIX: Edit/Update Fails for SQL 7.0 for Column of Type Text When CursorDriver Is Set to rdUseODBC
257660?(http://support.microsoft.com/kb/257660/EN-US/) FIX: Setting Printer Object Reference to Nothing Causes IPF
257661?(http://support.microsoft.com/kb/257661/EN-US/) FIX: Double-Click Event of a Form May Fire the SSTab’s GotFocus and Click Events
257664?(http://support.microsoft.com/kb/257664/EN-US/) FIX: Object in a DLL on a Non-UI Thread Disables Modeless Forms in UI Thread
257686?(http://support.microsoft.com/kb/257686/EN-US/) FIX: Double-Clicking ListBox Control Causes Invalid Page Fault
257691?(http://support.microsoft.com/kb/257691/EN-US/) FIX: Dynamically Loaded UserControl Does Not Send Edits in Data-Bound Textboxes to Data Source
257692?(http://support.microsoft.com/kb/257692/EN-US/) FIX: Resource Leak if Control’s IMEMode Is Greater Than 0 (International Versions)
257695?(http://support.microsoft.com/kb/257695/EN-US/) FIX: Invalid Page Fault When Using Data Environment Designer
257703?(http://support.microsoft.com/kb/257703/EN-US/) FIX: ListView Control Still Active After Opening Modal Form
257707?(http://support.microsoft.com/kb/257707/EN-US/) FIX: Recordset Not Updated After Invoking the Move Method
257710?(http://support.microsoft.com/kb/257710/EN-US/) FIX: PointSelected of MSChart May Return Wrong DataPoint Value
257712?(http://support.microsoft.com/kb/257712/EN-US/) FIX: DBCS Characters Cause Duplicate Column Name When Using Jet 4
257714?(http://support.microsoft.com/kb/257714/EN-US/) FIX: ADO DataControl and DataEnvironment Events Only Work with ADO 2.0
257728?(http://support.microsoft.com/kb/257728/EN-US/) FIX: Client Winsock Control Never Connects to Server Control on Same Form
257730?(http://support.microsoft.com/kb/257730/EN-US/) FIX: PrintForm Method of a Form Containing a UserControl Causes IPF
257741?(http://support.microsoft.com/kb/257741/EN-US/) FIX: UserControl Validate Event Hangs the VB IDE
257777?(http://support.microsoft.com/kb/257777/EN-US/) FIX: Printer.Height May Eject the Wrong Amount of Paper with Some Dot Matrix Printers
257779?(http://support.microsoft.com/kb/257779/EN-US/) FIX: Printer Dialog of DataReport PrintReport Method Always Shows Portrait
257780?(http://support.microsoft.com/kb/257780/EN-US/) FIX: Unrecognized Database Format Error with Data Control or Data Form Wizard
257782?(http://support.microsoft.com/kb/257782/EN-US/) FIX: Visual Basic IDE Crashes Changing Control’s Name in Properties Window
257783?(http://support.microsoft.com/kb/257783/EN-US/) FIX: Function Returning Double Followed by Numeric Label Causes Crash
257784?(http://support.microsoft.com/kb/257784/EN-US/) FIX: ARROW Key Does Not Work on Cells that Contain Double-Byte Chars on Japanese Windows
257786?(http://support.microsoft.com/kb/257786/EN-US/) FIX: IPF in Msvbvm60.dll When Showing a Data Report After a Modal Form
257787?(http://support.microsoft.com/kb/257787/EN-US/) FIX: Program with UserControl Causes Access Violation When Exiting
257788?(http://support.microsoft.com/kb/257788/EN-US/) FIX: Navigating DataGrid Using Row Selector Fails to Submit Updates
257789?(http://support.microsoft.com/kb/257789/EN-US/) FIX: Data Source Is Not Updated When PropertyChanged Is Called
257792?(http://support.microsoft.com/kb/257792/EN-US/) FIX: TreeView NodeClick Events May Fire Despite Cancel = True
260098?(http://support.microsoft.com/kb/260098/EN-US/) FIX: Cannot Set the ComboBox Text in the Click Event in Visual Basic 6.0
257778?(http://support.microsoft.com/kb/257778/EN-US/) BUG: Closing Two MDI Child Forms Rapidly Results in an Invalid Page Fault
257732?(http://support.microsoft.com/kb/257732/EN-US/) BUG: VB6SP4 – GDI Resource Leak When UserControl’s MaskPicture Is Set to An Icon
257772?(http://support.microsoft.com/kb/257772/EN-US/) BUG: Updates to Textbox Bound to Remote Data Control Fail with rdUseClientBatch
257658?(http://support.microsoft.com/kb/257658/EN-US/) BUG: RDO BatchCollisionCount is Incorrect after BatchUpdate to SQL Server 7 Database
248837?(http://support.microsoft.com/kb/248837/EN-US/) Access Violation in VBA6.DLL During Compilation When Using SP3 Version of VBA6.DLL
Visual C++
167359?(http://support.microsoft.com/kb/167359/EN-US/) FIX: extern Declaration Generates Extra Constructor Call
231655?(http://support.microsoft.com/kb/231655/EN-US/) FIX: VC++ Stops Responding Opening Files or Adding Files to Projects
231872?(http://support.microsoft.com/kb/231872/EN-US/) FIX: Using #import May Cause Memory Leaks
234511?(http://support.microsoft.com/kb/234511/EN-US/) FIX: BUG: Visual C++ 6.0 Compiler Does Not Remove Some Unneeded Instruction
234602?(http://support.microsoft.com/kb/234602/EN-US/) FIX: /Og Generates Bad Code for a Compare/Branch
235434?(http://support.microsoft.com/kb/235434/EN-US/) FIX: ‘Attach to Process’ List Is Empty
243599?(http://support.microsoft.com/kb/243599/EN-US/) FIX: VC Debugger Fails on Some Long Names
248477?(http://support.microsoft.com/kb/248477/EN-US/) FIX: Deadlock Using STL Map or Set In Multithreaded Application
251362?(http://support.microsoft.com/kb/251362/EN-US/) FIX: Suspend and Resume Thread Hangs Visual C++ Debugger
229889?(http://support.microsoft.com/kb/229889/EN-US/) QuickView Command Is Missing from Windows 2000
256056?(http://support.microsoft.com/kb/256056/EN-US/) FIX: DllMain Throws Unhandled Exception with DLL_THREAD_DETACH
256158?(http://support.microsoft.com/kb/256158/EN-US/) FIX: Text May Appear Truncated in MFC Applications Localized for Japanese Windows 2000
256329?(http://support.microsoft.com/kb/256329/EN-US/) FIX: Opening a CFileDialog from Handler of a Custom CFileDialog Causes Access Violation
259723?(http://support.microsoft.com/kb/259723/EN-US/) FIX: Debugger Fails on Fast Dual Processors
259726?(http://support.microsoft.com/kb/259726/EN-US/) FIX: Debugger Encounters Invisible Breakpoints in Assembly Code
259746?(http://support.microsoft.com/kb/259746/EN-US/) FIX: C1001 Compiler Error When Virtual Function Used as a Parameter
260172?(http://support.microsoft.com/kb/260172/EN-US/) FIX: MFC ISAPI Parse Functions Fail Under Stress on Multiple-CPU Computers
262515?(http://support.microsoft.com/kb/262515/EN-US/) FIX: /GT Compiler Switch May Cause Access Violation (AV) During Thread Switches
262698?(http://support.microsoft.com/kb/262698/EN-US/) FIX: Visual C++ 6.0 Debugger Stops Responding on Multiprocessor Computers
201641?(http://support.microsoft.com/kb/201641/EN-US/) FIX: Euro Symbol in ODL/IDL File Causes Visual C++ IDE to Stop Responding
Visual FoxPro
217174?(http://support.microsoft.com/kb/217174/EN-US/) FIX: APPEND FROM TYPE XL8 Makes VFP 6 Disappear
221745?(http://support.microsoft.com/kb/221745/EN-US/) FIX: C0000005 Fatal Error Using GETPEM() in Loop with Debugger
238945?(http://support.microsoft.com/kb/238945/EN-US/) FIX: Repeatedly Manipulating Data in Editbox Causes Error Message
250059?(http://support.microsoft.com/kb/250059/EN-US/)FIX: Accessing Printer Drivers After Issuing SYS(1037) Might Cause Error
258428?(http://support.microsoft.com/kb/258428/EN-US/) FIX: Printer Name Longer than 64 Characters Causes Error
258530?(http://support.microsoft.com/kb/258530/EN-US/) FIX: Multiple References to File Object of Project Causes OLE Error
258532?(http://support.microsoft.com/kb/258532/EN-US/) FIX: Random Characters in Report Do Not Print Under Localized Windows
258533?(http://support.microsoft.com/kb/258533/EN-US/) FIX: Cannot Resize Grid Column Widths Under Localized Windows
258536?(http://support.microsoft.com/kb/258536/EN-US/) FIX: UP ARROW Key Not Working in Code Editor Under Hebrew Windows
258537?(http://support.microsoft.com/kb/258537/EN-US/) FIX: Config.fpw Setting for Terminal Server Environment
258736?(http://support.microsoft.com/kb/258736/EN-US/) FIX: Multi-Threaded DLL Is Slow to Release Connection Under MTS
258737?(http://support.microsoft.com/kb/258737/EN-US/) FIX: DataSession Property Cannot Be Set in Session Subclass
262789?(http://support.microsoft.com/kb/262789/EN-US/) INFO: New SYS(2800) Function Improves Magnifier Accessibility Tool
262878?(http://support.microsoft.com/kb/262878/EN-US/) FIX: Fatal Exception with Large Number of Variables or Objects
Visual InterDev
259485?(http://support.microsoft.com/kb/259485/EN-US/) FIX: Devenv.exe Application Error (0×67bbfbdf) Occurs When You Are Using Visual InterDev 6.0
243809?(http://support.microsoft.com/kb/243809/EN-US/) BUG: Recordset DTC Does Not Recognize Data Connection; Connection Information Appears in Red
261150?(http://support.microsoft.com/kb/261150/EN-US/) FIX: Visual InterDev Incorrectly Determines Web Server Version
261152?(http://support.microsoft.com/kb/261152/EN-US/) FIX: Visual InterDev Returns Generic ‘Unable to Contact Web Server’ Error
261153?(http://support.microsoft.com/kb/261153/EN-US/) INFO: Can’t Create/Modify SQL Server 2000 Table, View, Diagram
262601?(http://support.microsoft.com/kb/262601/EN-US/) FIX: Menu Does Not Appear When You Right-Click in the Query Builder
Visual SourceSafe
230702?(http://support.microsoft.com/kb/230702/EN-US/) FIX: Errors When Renaming or Deleting a Project in Visual SourceSafe
236810?(http://support.microsoft.com/kb/236810/EN-US/) FIX: Command Line GET Fails with ‘Unable to finish writing file’ Error
237184?(http://support.microsoft.com/kb/237184/EN-US/) FIX: Branching from Label Causes Error ‘You do not have access rights to $/’
244960?(http://support.microsoft.com/kb/244960/EN-US/) FIX: Analyze and DDUPD Return ‘Out of Memory’
244961?(http://support.microsoft.com/kb/244961/EN-US/) FIX: Analyze.exe -f Replaces Project Data Files with a 0 Byte File
248760?(http://support.microsoft.com/kb/248760/EN-US/) FIX: Project Log ‘Physical Filename’ has a Share (From Another Project)
259902?(http://support.microsoft.com/kb/259902/EN-US/) FIX: Installation of Service Pack 4 Does Not Update Readmess.htm with Latest Version
259915?(http://support.microsoft.com/kb/259915/EN-US/) FIX: Analyze.exe Corrupts MBCS File Names When First 8 Bytes Are Same Text
Visual Studio
260049?(http://support.microsoft.com/kb/260049/EN-US/) FIX: Database Problems with Nulls and Data Type Precision
260092?(http://support.microsoft.com/kb/260092/EN-US/) FIX: If You Create a Table With Query Analyzer from Visual InterDev then the SQL Enterprise Manager Inserts the Incorrect Decimal (9, 0) Values
260095?(http://support.microsoft.com/kb/260095/EN-US/) FIX: Table Created in Visual Studio Is Not Owned by the DBO Who Created It
260128?(http://support.microsoft.com/kb/260128/EN-US/) FIX: SP4 JPN: Several Files are in English Instead of Japanese
250334?(http://support.microsoft.com/kb/250334/EN-US/) PRB: MSDN Library Unable to Display Help from Within Visual Studio Programs
260030?(http://support.microsoft.com/kb/260030/EN-US/) FIX: Visual Studio Service Pack 3 Does Not Update Hhcrtl.ocx and Itss.dll
260032?(http://support.microsoft.com/kb/260032/EN-US/) FIX: Incorrect Versions of VFP6.exe and VB6.exe in Visual Studio 6
260051?(http://support.microsoft.com/kb/260051/EN-US/) FIX: Compatibility Problems with the Redistribution Files in the Oleaut32.dll File
260085?(http://support.microsoft.com/kb/260085/EN-US/) DOC: The Japanese Translated Version of Visual Studio Service Pack 3 Readme Contains Errors
260086?(http://support.microsoft.com/kb/260086/EN-US/) FIX: DataTools: Resource ID #1634 ‘Where’ Is Mistakenly Translated into Japanese
260094?(http://support.microsoft.com/kb/260094/EN-US/) FIX: The Schema Designer Does Not Support the Precision of DECIMAL and NUMERIC Data-Types that are More than 29 Places
260104?(http://support.microsoft.com/kb/260104/EN-US/) The Willamette Processor Name Has Changed
260140?(http://support.microsoft.com/kb/260140/EN-US/) FIX: The Msdis110.dll File Is Not Updated by the Installation of Windows NT 4 Service Pack 4
262768?(http://support.microsoft.com/kb/262768/EN-US/) FIX: SQL Enterprise Manager Causes Access Violations When You Resize the Grid in the Design View
262909?(http://support.microsoft.com/kb/262909/EN-US/) FIX: FIX: Query Design Table Is Cut Off in Korean Windows 2000