<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>PCbanter - General XP issues or comments</title>
		<link>http://www.pcbanter.net</link>
		<description>The general Windows XP discussion forum, for topics not covered elsewhere. (microsoft.public.windowsxp.general)</description>
		<language>en</language>
		<lastBuildDate>Thu, 17 May 2012 15:42:48 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.pcbanter.net/images/002/misc/rss.jpg</url>
			<title>PCbanter - General XP issues or comments</title>
			<link>http://www.pcbanter.net</link>
		</image>
		<item>
			<title><![CDATA[Windows Updates is offering MS Office 2007 updates -> but I have Office2000 installed (?)]]></title>
			<link>http://www.pcbanter.net/showthread.php?t=1085208&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 21:14:47 GMT</pubDate>
			<description><![CDATA[I've got an XP machine that I rarely run the MS updates on.

I'm running the automatic updates right now and it's offering me about a
dozen Office 2007 patches...]]></description>
			<content:encoded><![CDATA[<div>I've got an XP machine that I rarely run the MS updates on.<br />
<br />
I'm running the automatic updates right now and it's offering me about a<br />
dozen Office 2007 patches / fixes.  <br />
<br />
Thing is, I've got Office 2000 SR1 premium installed on this thing.<br />
<br />
The updates are generically described as: <br />
   <br />
    &quot;Security Update for Microsoft Office 2007 System&quot;<br />
    &quot;Security Update for Microsoft Office 2007 Suites&quot;<br />
    &quot;Security Update for Microsoft Office Powerpoint 2007&quot;<br />
<br />
Do I want to download these patches - even though I don't have Office<br />
2007?<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>XP Guy</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085208</guid>
		</item>
		<item>
			<title><![CDATA[Column in folder to show "in use" or "file open"]]></title>
			<link>http://www.pcbanter.net/showthread.php?t=1085207&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 20:24:26 GMT</pubDate>
			<description>Is their a folder column attribute that reflects whether a file is
open or in use, or perhaps gives the name of the user who has the file
open now?  Thanks.</description>
			<content:encoded><![CDATA[<div>Is their a folder column attribute that reflects whether a file is<br />
open or in use, or perhaps gives the name of the user who has the file<br />
open now?  Thanks.<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator><![CDATA[wal[_3_]]]></dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085207</guid>
		</item>
		<item>
			<title>TAPI3</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085204&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 19:07:09 GMT</pubDate>
			<description>Hello,
 i AM GETTING nullrefernceexception IN
 
 isc.CreateStream(TapiConstants.TAPIMEDIATYPE_AUDIO,TERMINAL_DIRECTION.TD_CAPTURE);
 
 Pleasae help for the...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
 i AM GETTING nullrefernceexception IN<br />
 <br />
 isc.CreateStream(TapiConstants.TAPIMEDIATYPE_AUDIO  ,TERMINAL_DIRECTION.TD_CAPTURE);<br />
 <br />
 Pleasae help for the same<br />
 <br />
 <br />
 //ANSWER BUTTON<br />
 private void answer_Click(object sender, System.EventArgs e)<br />
 {<br />
 ITAddress i;<br />
 i = ia[line];<br />
 bool status=false;<br />
 <br />
 IEnumCall ec = ia[line].EnumerateCalls();<br />
 uint arg = 0;<br />
 ITCallInfo ici;<br />
 <br />
 try<br />
 {<br />
 ec.Next(1, out ici, ref arg);<br />
 ITBasicCallControl m_CallControl = (TAPI3Lib.ITBasicCallControl)ici;<br />
 // ITBasicCallControl2 callControl2 = ici as ITBasicCallControl2;<br />
 ITStreamControl isc = ici as ITStreamControl;//= (TAPI3Lib.ITStreamControl)ici;<br />
 ITStream ist=ici as ITStream;<br />
 ITTerminal localTerm = ici as ITTerminal;//(TAPI3Lib.ITTerminal)ici;<br />
 if (!reject)<br />
 {<br />
 // request the terminal using right media type and direction<br />
 //localTerm =<br />
 callControl2.RequestTerminal(TapiConstants.CLSID_S  tring_FilePlaybackTerminal,<br />
 TapiConstants.TAPIMEDIATYPE_AUDIO, TERMINAL_DIRECTION.TD_CAPTURE);<br />
 <br />
 <br />
 //NULLREFERNCEEXCEPTION<br />
 isc.CreateStream(TapiConstants.TAPIMEDIATYPE_AUDIO  ,TERMINAL_DIRECTION.TD_CAPTURE);<br />
 <br />
 ist.SelectTerminal(localTerm);<br />
 ist.StartStream();<br />
 <br />
 <br />
 ITMediaSupport mediasupport = localTerm as ITMediaSupport;<br />
 // prepare to put the file name<br />
 <br />
 ITMediaPlayback mediaPlayback = localTerm as ITMediaPlayback;<br />
 <br />
 if (mediaPlayback != null)<br />
 {<br />
 try<br />
 {<br />
 // Set the filename to play<br />
 object[] fileList = { @&quot;E:tapi8.2w.wav&quot; };<br />
 <br />
 <br />
 mediaPlayback.PlayList = fileList;<br />
 <br />
 // Select the terminal<br />
 //callControl2.SelectTerminalOnCall(localTerm);<br />
 //  ist.SelectTerminal(localTerm);<br />
 ist.StartStream();<br />
 <br />
 // Answer the call<br />
 m_CallControl.Answer();<br />
 //callControl2.Answer();<br />
 <br />
 // Start playback.<br />
 ITMediaControl mediaControl = localTerm as ITMediaControl;<br />
 mediaControl.Start();<br />
 <br />
 // Assign the terminal now terminal<br />
 // m_PlayFileTerminal = localTerm;<br />
 status = true;<br />
 }<br />
 <br />
 catch (Exception ep)<br />
 {<br />
 MessageBox.Show(&quot;here is exception inplaying musicnn&quot; + ep);<br />
 //if (Log.IsErrorEnabled)<br />
 //{<br />
 //    Log.ErrorFormat(&quot;Call.ReadyPlayTerminal: *** EXCEPTION*** {0}&quot;,<br />
 e);<br />
 //}<br />
 }<br />
 }<br />
 //}*/<br />
 }<br />
 else<br />
 {<br />
 MessageBox.Show(&quot;All calls are rejected. Please remove 'Reject'<br />
 tickmark&quot;);<br />
 m_CallControl.Disconnect(DISCONNECT_CODE.DC_REJECT  ED);<br />
 //ici.ReleaseUserUserInfo();<br />
 tobj.Shutdown();<br />
 initializetapi3();<br />
 registertoken[line] = tobj.RegisterCallNotifications(ia[line], true, true,<br />
 TapiConstants.TAPIMEDIATYPE_DATAMODEM, 2);<br />
 MessageBox.Show(&quot;Registration token : &quot; + registertoken[line],<br />
 &quot;Registration Succeed for line &quot; + line);<br />
 }<br />
 <br />
 }<br />
 catch (Exception exp)<br />
 {<br />
 MessageBox.Show(&quot;There may not be any calls to answer! nn&quot; + exp,<br />
 &quot;TAPI3&quot;);<br />
 }<br />
 }<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>avadhut</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085204</guid>
		</item>
		<item>
			<title><![CDATA[[OT] Kevin Ander and WAZZUB]]></title>
			<link>http://www.pcbanter.net/showthread.php?t=1085197&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 11:06:34 GMT</pubDate>
			<description><![CDATA[It has been over a week now without Kevin Ander WAZZUB spam.

It wasn't easy but I finally got Fairpoint to ToS his ass for spamming.]]></description>
			<content:encoded><![CDATA[<div>It has been over a week now without Kevin Ander WAZZUB spam.<br />
<br />
It wasn't easy but I finally got Fairpoint to ToS his ass for spamming.<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>anon</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085197</guid>
		</item>
		<item>
			<title><![CDATA[Re: Restoring "MS Office Word 2003" in Start menu - How?]]></title>
			<link>http://www.pcbanter.net/showthread.php?t=1085195&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 01:03:02 GMT</pubDate>
			<description><![CDATA[On 05/10/2012 05:56 PM, RichardOnRails wrote:
> On May 10, 5:48 pm, RichardOnRails
> <RichardDummyMailbox58...@USComputerGurus.com>  wrote:
>> Yesterday,  I...]]></description>
			<content:encoded><![CDATA[<div>On 05/10/2012 05:56 PM, RichardOnRails wrote:<font color="blue"><i><br />
&gt; On May 10, 5:48 pm, RichardOnRails<br />
&gt; &gt;  wrote:<font color="green"><i><br />
&gt;&gt; Yesterday,  I started up WinXP-Pro/SP3 and thought I saw a freak<br />
&gt;&gt; duplicate Word entry at the bottom of the Startup menu,  so I deleted<br />
&gt;&gt; it.  When I booted up now,  there was an Excel entry but no Word<br />
&gt;&gt; entry.  Is there an easy way to find the path to the Word executable.<br />
&gt;&gt; I don't know where the Office 2003 install disk is ... I used it once<br />
&gt;&gt; 8 or 0 years ago.<br />
&gt;&gt;<br />
&gt;&gt; I'll poke around in &quot;System&quot; partition and will post back if I luck<br />
&gt;&gt; out and find the .exe.<br />
&gt;&gt;<br />
&gt;&gt; Thanks in Advance,<br />
&gt;&gt; Richard</i></font><br />
&gt;<br />
&gt; OK, I solved my problem.  Just in case others on this newsgroup my<br />
&gt; have an interest in solving a problem like this,  following are the<br />
&gt; steps I followed:<br />
&gt;<br />
&gt; Attempt #1 (wich failed):<br />
&gt; I ran across an Office 2003 tool that keeps a copy of the Office 2003<br />
&gt; installation CD.<br />
&gt; This tool may be used to repair the Office installation.<br />
&gt;<br />
&gt; I found the files<br />
&gt; -	LISTOOL.CHM<br />
&gt; -	LISTOOL.EXE<br />
&gt; in F:\Program Files\Microsoft Office 2003 Tool<br />
&gt;<br />
&gt; Use of LISTOOL.EXE required I load my Office 2003 Pro CD.<br />
&gt; I loaded it in my Y: (DVD) drive.<br />
&gt; Windows Explorer confirmed that the CD was readable and indicated that<br />
&gt; it contained:<br />
&gt; -	FILES and MSDE2000 directories<br />
&gt; -	Lots of CAB and some MSI files<br />
&gt;<br />
&gt; However, LISTOOL repeatedly required me to &quot;search&quot; for the CD and<br />
&gt; provide its locantion on my system (Y:\) which I did.<br />
&gt;<br />
&gt; Attempt #2 (which succeeded):<br />
&gt; So, I executed the Setup.exe on the CD, provided my serial number,<br />
&gt; etc.<br />
&gt; It provided me with the directory where it was prepared to install<br />
&gt; Office:<br />
&gt; -	F:\Program Files\Microsoft Office\OFFICE11<br />
&gt;<br />
&gt; I searced that directory for a file named, in part, WORD. That turned<br />
&gt; up:<br />
&gt; -	WINWORD.EXE<br />
&gt;<br />
&gt; At this point, my problem is essentially solved.  But I had to<br />
&gt; complete<br />
&gt; the added that information to my Start menu. So I:<br />
&gt;<br />
&gt; I control-clicked that name and dragged it to the Start button,<br />
&gt; and continuing with the mouse-button depressed,<br />
&gt; dragged the name to the desired position within the Start list,<br />
&gt; namely adjacent to the &quot;Microsoft Office Excel 2003&quot; entry.<br />
&gt;<br />
&gt; Of course the name I got was simply WINWORD.EXE,<br />
&gt; which was not at pleasing as its Excel counter part.<br />
&gt; So I right clicked to Word name, selected Rename.<br />
&gt;<br />
&gt; Problem Solved!<br />
&gt;<br />
&gt; Best Wishes,<br />
&gt; Richard<br />
&gt;</i></font><br />
<br />
<br />
<br />
Looks like you did a ton of extra work...<br />
<br />
All you originally deleted was the shortcut<br />
<br />
-- <br />
<a href="https://www.createspace.com/3707686" target="_blank">https://www.createspace.com/3707686</a><br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>philo</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085195</guid>
		</item>
		<item>
			<title><![CDATA[Windows won't go into standby mode or hibernate after a long period of inactivity.....maybe one fix]]></title>
			<link>http://www.pcbanter.net/showthread.php?t=1085189&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 14:49:07 GMT</pubDate>
			<description>Your computer is set to Portable/Laptop, off monitor aft 15 min, off
harddrive aft
20 min and sys standby aft 20 min. It use to go into standby and all you...</description>
			<content:encoded><![CDATA[<div>Your computer is set to Portable/Laptop, off monitor aft 15 min, off<br />
harddrive aft<br />
20 min and sys standby aft 20 min. It use to go into standby and all you had<br />
to do was hit the keyboard, move the mouse or bump the computer and it would<br />
wake up...........................then one day it all just stopped. The<br />
monitor still goes into standby but that's it..............not he computer.<br />
I know this is an old problem. WinXP SP3.<br />
<br />
I have been hacking around with this for about 3 years and this morning I<br />
think I stumbled on to something that might be a help to others. It worked<br />
for me and I am smiling again. After many years of use my computer would<br />
faithfully go into standby and wakeup with the movement of the mouse or<br />
activity on the keyboard, then one day it just quit. Well here is what I<br />
found:<br />
Using the following string executed in &quot;Run&quot; (%windir%\System32\rundll32.exe<br />
powrprof.dll,SetSuspendState) I got the following message, &quot;The device<br />
driver for the 'American Power Conversion USB UPS&quot; device is preventing the<br />
machine from entering standby. Please close all applications and try again.<br />
If the problem persist, you may need to update the driver&quot;.<br />
<br />
I uninstalled the APC Power Chute Personal Edition 3.0.2 and that did not<br />
fix the problem, I then went into Device Manager and<br />
deleted APC UPS under Batteries and this did not fix the problem as this<br />
reference has and requires no drivers.<br />
The next thing I did was to delete &quot;American Power Conversion USB UPS under<br />
&quot;Human Interface Devices&quot;.<br />
When I completed the deletion of the American Power Conversation USB UPS<br />
under &quot;Human Interface Devices&quot; and ran the string again the computer went<br />
into Standby and woke up by mouse or keyboard movement as it had prior to<br />
the disruption.<br />
I then reinstalled the APC Power Chute Personal Edition 3.0.2 software and<br />
the computer still performed as it was supposed to.<br />
Apparently the drivers for the &quot;American Power Conversation USB UPS under<br />
&quot;Human Interface Devices&quot; must have gotten corrupted up and when I deleted<br />
them they were forced to rewrite.<br />
This is the first fix for me in this long and aggravating as well as<br />
annoying problem. Hope it helps someone else.<br />
If you only want it to go into Standby make sure you uncheck Hibernate on<br />
the Hibernate tag in device manager.<br />
<br />
This is a jpg of what my health drivers list looks like for &quot;American Power<br />
Conversation USB UPS under &quot;Human Interface Devices&quot;<br />
<br />
<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>Docster</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085189</guid>
		</item>
		<item>
			<title>Chkdsk/Scandisk</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085185&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 07:55:28 GMT</pubDate>
			<description><![CDATA[I still use Windows98 most of the time.  I'm not fond of XP, but I have
XP on my laptop computer, and must keep it to use the WIFI.  One thing
that really irks...]]></description>
			<content:encoded><![CDATA[<div>I still use Windows98 most of the time.  I'm not fond of XP, but I have<br />
XP on my laptop computer, and must keep it to use the WIFI.  One thing<br />
that really irks me about XP is that it no longer has Scandisk.  Chkdsk<br />
is really a major pain to use, because it opens as a sort of &quot;dos<br />
prompt&quot;, and I cant see what it's doing.  At least Scandisk showed what<br />
was going on.  If this is Microsoft's way of improving things, they sure<br />
screwed up on this one.  I should mention that I both use, and still<br />
like MsDos.  But I dont want chkdsk running underneath my desktop where<br />
I cant see what it's doing.  Why did MS abandon Scandisk?  Chkdsk was an<br />
archaic leftover from very early versions of MsDosm which was replaced<br />
by Scandisk, then they dropped it in favor of this worthless and<br />
annoying Chkdsk.....  What is wrong with MS????<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>richard2@none.com</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085185</guid>
		</item>
		<item>
			<title>Stats microsoft.public.windowsxp.general (last 7 days)</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085184&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 07:12:42 GMT</pubDate>
			<description><![CDATA["Caveat: Quantity is not necessarily a measure of Quality"
 
 
 Newsgroup.................: microsoft.public.windowsxp.general
 Stats Were Taken..........:...]]></description>
			<content:encoded><![CDATA[<div> &quot;Caveat: Quantity is not necessarily a measure of Quality&quot;<br />
 <br />
 <br />
 Newsgroup.................: microsoft.public.windowsxp.general<br />
 Stats Were Taken..........: Mon, 14 May 2012 07:08:22 GMT<br />
 Stats Begin...............: Mon, 07 May 2012 07:13:20 GMT<br />
 Stats End.................: Sun, 13 May 2012 21:39:18 GMT<br />
 Days......................: 7<br />
 Total No. of Articles.....: 207<br />
 Total No. of Characters...: 546386<br />
 Total Volume..............: 533<br />
 Messages Per Day..........: 29.6<br />
 Characters Per Day........: 78055.1<br />
 Average Daily Volume......: 76 kB<br />
 Total Posters This Week...: 39<br />
 Messages with Sigs........: 40.58%<br />
 Original Content Rating...: 38.88%<br />
 <br />
 Top 10 Prolific Posters: Posts / Posts per Day / Percent Share<br />
 ==================================================  ============<br />
   1. daralharb.........................................  :  21  3.0 10.1%<br />
   2. Glee..............................................  :  19  2.7  9.2%<br />
   3. Ken Springer......................................:  19  2.7  9.2%<br />
   4. Billw50...........................................  :  14  2.0  6.8%<br />
   5. Paul..............................................  :  13  1.9  6.3%<br />
   6. Bill In Co........................................:  10  1.4  4.8%<br />
   7. Char Jackson......................................:  10  1.4  4.8%<br />
   8. Vanguardlh........................................  :  10  1.4  4.8%<br />
   9. David H. Lipman...................................:   8  1.1  3.9%<br />
  10. Ken Blake.........................................:   8  1.1  3.9%<br />
 <br />
 Top 10 Bandwidth-Using Posters: kBytes / kBytes per Day / Percent Share<br />
 ==================================================  =====================<br />
   1. daralharb.........................................  :  58  8.3 10.9%<br />
   2. Glee..............................................  :  54  7.7 10.1%<br />
   3. Paul..............................................  :  49  7.1  9.3%<br />
   4. Ken Springer......................................:  45  6.4  8.4%<br />
   5. Billw50...........................................  :  39  5.6  7.4%<br />
   6. Bill In Co........................................:  31  4.5  5.9%<br />
   7. Wesley............................................  :  28  4.1  5.3%<br />
   8. Vanguardlh........................................  :  23  3.4  4.4%<br />
   9. G6JPG.............................................  :  21  3.0  3.9%<br />
  10. Char Jackson......................................:  20  2.9  3.8%<br />
 <br />
 Top 10 Popular Threads: Posts / Posts per Day / Percent Share<br />
 ==================================================  ===========<br />
   1. Partitioning New Hard Drive.......................:  42  6.0 20.3%<br />
   2. Print List of File Names in a Folder..............:  39  5.6 18.8%<br />
   3. replacing directory with &quot;last good&quot; on Windows XP:  31  4.4 15.0%<br />
   4. Getting Around &quot;Access Is Denied&quot;?................:  24  3.4 11.6%<br />
   5. replacing directory with &quot;last good&quot; on Windows XP:  14  2.0  6.8%<br />
   6. Startup displays explorer window for folder SYSTEM:  13  1.9  6.3%<br />
   7. Follow-up on Teamviewer  -  it's great............:   8  1.1  3.9%<br />
   8. TXT wrongly opens in Notepad?.....................:   6  0.9  2.9%<br />
   9. sound.............................................  :   6  0.9  2.9%<br />
  10. Disk Drive Failed: Recourse?......................:   4  0.6  1.9%<br />
 <br />
 Top 10 Bandwidth-Consuming Threads: kBytes / kBytes per Day / Percent Share<br />
 ==================================================  =========================<br />
   1. Partitioning New Hard Drive.......................: 126 18.1 23.8%<br />
   2. replacing directory with &quot;last good&quot; on Windows XP:  97 13.9 18.2%<br />
   3. Print List of File Names in a Folder..............:  89 12.8 16.8%<br />
   4. replacing directory with &quot;last good&quot; on Windows XP:  53  7.7 10.0%<br />
   5. Getting Around &quot;Access Is Denied&quot;?................:  48  6.9  9.1%<br />
   6. Startup displays explorer window for folder SYSTEM:  28  4.1  5.3%<br />
   7. Follow-up on Teamviewer  -  it's great............:  17  2.5  3.3%<br />
   8. TXT wrongly opens in Notepad?.....................:  10  1.6  2.1%<br />
   9. sound.............................................  :   9  1.4  1.8%<br />
  10. Disk Drive Failed: Recourse?......................:   9  1.3  1.7%<br />
 <br />
 Top 10 Original Content Ratings: (Original Bytes) / (Orig. + Quoted Bytes)<br />
 ==================================================  ========================<br />
   1. Vanguardlh........................................  ........:  79.9%<br />
   2. Micky.............................................  ........:  61.6%<br />
   3. Paul..............................................  ........:  56.8%<br />
   4. G6JPG.............................................  ........:  47.1%<br />
   5. Ken Blake.............................................  ....:  41.2%<br />
   6. Ken Springer..........................................  ....:  39.7%<br />
   7. Gs................................................  ........:  38.9%<br />
   8. daralharb.........................................  ........:  33.2%<br />
   9. Glee..............................................  ........:  31.5%<br />
  10. Bill In Co................................................  :  23.0%<br />
 <br />
 Top 10 Crossposting Groups: Posts in Group<br />
 ==========================================<br />
 (Articles cross-posted to &gt; 5 groups are not considered in ANY stats.)<br />
 <br />
 ==================================================  =<br />
 End of stats for microsoft.public.windowsxp.general<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
-- <br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator><![CDATA[me[_6_]]]></dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085184</guid>
		</item>
		<item>
			<title>IE8 black top</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085178&amp;goto=newpost</link>
			<pubDate>Sat, 12 May 2012 00:26:27 GMT</pubDate>
			<description><![CDATA[I know this has been discussed before, but every once in a while when I open 
IE8 in WinXP Pro SP3, the whole top is black and can't be read.  I know of 
the...]]></description>
			<content:encoded><![CDATA[<div>I know this has been discussed before, but every once in a while when I open <br />
IE8 in WinXP Pro SP3, the whole top is black and can't be read.  I know of <br />
the scheme to run/services.msc/themes off/ themes on, and that takes care of <br />
the problem.  However, it doesn't stick.  Is there a method to make it stick <br />
and not come back?<br />
<br />
Thanks<br />
<br />
Henry<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>Henry</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085178</guid>
		</item>
		<item>
			<title>NTVDM has encountered a system error c0h</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085193&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 12:53:27 GMT</pubDate>
			<description>Hi,
On Windows XP, this error began occurring from the DOS prompt.
All programs such as EDIT, PKZIP, and other old-style programs
that used to run in DOS on XP...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
On Windows XP, this error began occurring from the DOS prompt.<br />
All programs such as EDIT, PKZIP, and other old-style programs<br />
that used to run in DOS on XP suddenly will not run.<br />
<br />
Has anyone else experienced this error, and if so,<br />
how did you fix the problem?<br />
<br />
Thanks.<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>Robin Vowels</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085193</guid>
		</item>
		<item>
			<title>Control-clicking hyperlink in Word fails when invoking URL in Firefox</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085192&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 04:47:21 GMT</pubDate>
			<description>I visited http://technet.microsoft.com/en-us/library/bb978526.aspx
in order to come up to speed on Windows Power Shell.

I scaped the page and pasted in into a...</description>
			<content:encoded><![CDATA[<div>I visited <a href="http://technet.microsoft.com/en-us/library/bb978526.aspx" target="_blank">http://technet.microsoft.com/en-us/l.../bb978526.aspx</a><br />
in order to come up to speed on Windows Power Shell.<br />
<br />
I scaped the page and pasted in into a new Word document<br />
in order to be able to read the text while<br />
intermittently using the Internet for other purposes, e.g.<br />
timely responding to email.<br />
<br />
I created a &quot;Source&quot; hyperlink pointing to the webpage.<br />
When I control-clicked this link, the Technet page was<br />
displayed correctly in Firefox for a second or two.  Then<br />
the address bar had the text &quot;FirefoxHTML\Shell\Open\Command&quot;<br />
appended, causing an error page to be displayed.  When I<br />
removed this foreign text, the original web page displayed<br />
correctly.<br />
<br />
All the links in the Word document suffered the same corruption,<br />
and this behavior occurred for MSWord documents<br />
created by scraping other web pages.<br />
<br />
This anomoly first occurred a day or two ago.  I installed<br />
a Microsoft security patch the other day I believe. I don't<br />
think there was any other change to my system.<br />
<br />
Has anyone else seen this behavior?<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>RichardOnRails</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085192</guid>
		</item>
		<item>
			<title>sound</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085172&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 00:41:49 GMT</pubDate>
			<description>K8N motherboard was replaced with a K8N Neo4,
now there is no sound. Any suggestions?
CDR</description>
			<content:encoded><![CDATA[<div>K8N motherboard was replaced with a K8N Neo4,<br />
now there is no sound. Any suggestions?<br />
CDR<br />
<br />
<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator><![CDATA[CDR[_2_]]]></dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085172</guid>
		</item>
		<item>
			<title>Print List of File Names in a Folder</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085171&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 18:24:24 GMT</pubDate>
			<description>In WinXP, is there a way to print a list of files contained in a
folder or on a CD - not the content of each file, but just a list of
the files contained in...</description>
			<content:encoded><![CDATA[<div>In WinXP, is there a way to print a list of files contained in a<br />
folder or on a CD - not the content of each file, but just a list of<br />
the files contained in the folder or cd?<br />
<br />
Thanks<br />
charliec<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>charliec@email.com</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085171</guid>
		</item>
		<item>
			<title>Error 25007 installing .NET Framework 2.0</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085169&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 14:23:37 GMT</pubDate>
			<description>I have used the tool to uninstall it but it still will not install. I 
have been having trouble with .NET updates for a long time. I removed 
them all and...</description>
			<content:encoded><![CDATA[<div>I have used the tool to uninstall it but it still will not install. I <br />
have been having trouble with .NET updates for a long time. I removed <br />
them all and downloaded them again but the updates fail. I need this to<br />
run a program to check for errors and can't install it.<br />
<br />
Microsoft .NET Framework 2.0 Setup<br />
Error 25007. Error occurred while initializing fusion. Setup could not <br />
load fusion with LoadLibraryShim(). Error Ox80131700<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator>Dennis</dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085169</guid>
		</item>
		<item>
			<title>TXT wrongly opens in Notepad?</title>
			<link>http://www.pcbanter.net/showthread.php?t=1085167&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 19:22:55 GMT</pubDate>
			<description><![CDATA[I used Scheduled Tasks to add a new task, entering the 'program' in the
form c:\xyz.txt.

I have TXT types associated with TextPad, and all such files...]]></description>
			<content:encoded><![CDATA[<div>I used Scheduled Tasks to add a new task, entering the 'program' in the<br />
form c:\xyz.txt.<br />
<br />
I have TXT types associated with TextPad, and all such files open<br />
correctly in that from an XP folder and all other situations.<br />
<br />
So I was surprised when my task opened it in Notepad.<br />
<br />
I worked around it by using<br />
&quot;C:\Program Files\TextPad 4\TextPad.exe&quot; c:\xyz.txt<br />
<br />
But I'm curious to know why that's needed please?<br />
<br />
-- <br />
Terry, East Grinstead, UK<br />
</div>

]]></content:encoded>
			<category domain="http://www.pcbanter.net/forumdisplay.php?f=18">General XP issues or comments</category>
			<dc:creator><![CDATA[Terry Pinnell[_2_]]]></dc:creator>
			<guid isPermaLink="true">http://www.pcbanter.net/showthread.php?t=1085167</guid>
		</item>
	</channel>
</rss>

