<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>fix computer errors &#187; Program</title>
	<atom:link href="http://blog.nohideip.com/tag/program/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.nohideip.com</link>
	<description>how to fix file errors , download dll or ocx for free</description>
	<lastBuildDate>Tue, 13 Jul 2010 16:37:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Whenever A .exe Program Is Run, I Get A Windows Image Error.?</title>
		<link>http://blog.nohideip.com/exe-errors/whenever-a-exe-program-is-run-i-get-a-windows-image-error</link>
		<comments>http://blog.nohideip.com/exe-errors/whenever-a-exe-program-is-run-i-get-a-windows-image-error#comments</comments>
		<pubDate>Wed, 24 Feb 2010 04:39:59 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[exe errors]]></category>
		<category><![CDATA[.exe]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Whenever]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/exe-errors/whenever-a-exe-program-is-run-i-get-a-windows-image-error</guid>
		<description><![CDATA[Whenever any .exe is run (Especially on start up, lots of them) I get an error saying
(The .exe run) &#8211; Bad Image
The application or DLL C:\WINDOWS\system32\wsg32.dll is not a valid Windows image. Please check this against your installation diskette.
wsg32.exe is virus, which I think was removed from my system recently I think the virus has [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever any .exe is run (Especially on start up, lots of them) I get an error saying<br />
(The .exe run) &#8211; Bad Image<br />
The application or DLL C:\WINDOWS\system32\wsg32.dll is not a valid Windows image. Please check this against your installation diskette.<br />
wsg32.exe is virus, which I think was removed from my system recently I think the virus has changed settings so that when a .exe is run it notifys itself but now that the virus is gone wsg32.dll is no longer there. How do I fix this? Although I could be looking in totally the wrong direction, any help is appreciated <img src='http://blog.nohideip.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/exe-errors/whenever-a-exe-program-is-run-i-get-a-windows-image-error/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Can Anyone Help Me With The Hello World Server And Client Program?</title>
		<link>http://blog.nohideip.com/sys-files/can-anyone-help-me-with-the-hello-world-server-and-client-program</link>
		<comments>http://blog.nohideip.com/sys-files/can-anyone-help-me-with-the-hello-world-server-and-client-program#comments</comments>
		<pubDate>Tue, 09 Feb 2010 12:05:01 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[sys files]]></category>
		<category><![CDATA[Anyone]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[Hello]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Server.]]></category>
		<category><![CDATA[With]]></category>
		<category><![CDATA[World]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/sys-files/can-anyone-help-me-with-the-hello-world-server-and-client-program</guid>
		<description><![CDATA[I&#8217;m suppose to do this program and make it work in windows os and linux but i can&#8217;t seem to make it run. i always get an error. can you tell me wats wrong? should i include some more commands? i&#8217;m new in this socket programming thing and i really need help.
here&#8217;s the program:
#include
#include 			/* [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m suppose to do this program and make it work in windows os and linux but i can&#8217;t seem to make it run. i always get an error. can you tell me wats wrong? should i include some more commands? i&#8217;m new in this socket programming thing and i really need help.<br />
here&#8217;s the program:<br />
#include<br />
#include 			/* exit()	*/<br />
#include 			/* memset (), memcpy()*/<br />
#include 	/* uname()*/<br />
#include<br />
#include 		/* socket(), bind(), listen(),accept()*/<br />
#include<br />
#include<br />
#include<br />
#include 			/* fork(), write(), close()*/<br />
int_GetHostName(char  *buffer, int length);<br />
const char MESSAGE[] = &#8220;Hello, World!\n&#8221;;<br />
const int BACK_LOG=5;<br />
int main(int argc, char *argv[]){<br />
	int serverSocket=0, on=0, port=0,status=0,childPid=0;<br />
	struct hostent *hostPtr=NULL;<br />
	char hostname[80]=&#8221;";<br />
	struct sockaddr_in serverName={0};<br />
	if (2!=argc){<br />
		fprintf(stderr,&#8221;Usage: %s \n&#8221;,argv[0]);<br />
	}<br />
	port=atoi(argv[1]);<br />
	serverSocket=socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);<br />
	if(-1==serverSocket){<br />
		perror(&#8220;socket()&#8221;);<br />
		exit;<br />
	}<br />
	/*	turn off bind address checking, and allow port numbers to be reused &#8211;<br />
		otherwise the TIME_WAIT phenomenon will prevent binding to these address.port<br />
		combinations for (2*MSL) seconds.<br />
	*/<br />
	on=1;<br />
	status=setsockopt(serverSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&amp;on,sizeof(on));<br />
	if(-1==status){<br />
		perror(&#8220;setsockopt(&#8230;,SO_REUSEADDR,…<br />
	}<br />
	/*	when connection is closed, thereis a need to linger to ensure all data is transmitted,<br />
		so turn this on also<br />
	*/<br />
	{<br />
		struct linger linger={0};<br />
		linger.1_onoff=1;<br />
		linger.1_linger=30;<br />
		status=setsockopt(serverSocket,SOL_S… char*)&amp;linger,sizeof(linger));<br />
		if(-1==status){<br />
			perror(&#8220;setsockopt(&#8230;,SO_LINGER,..…<br />
		}<br />
	}<br />
	// FIND OUT WHO I AM<br />
	status=_GetHostName(hostname,sizeof(h…<br />
	if(-1==status){<br />
		perror(&#8220;_GetHostName()&#8221;);<br />
		exit(1);<br />
	}<br />
	hostPtr=gethostbyname(hostname);<br />
	if(NULL==hostPtr){<br />
		perror(&#8220;gethostbyname()&#8221;);<br />
		exit(1);<br />
	}<br />
	(void)memset(&amp;serverName,0,sizeof(ser…<br />
	(void)memcpy(&amp;serverName.sin_addr,hos…<br />
	/*	to allow server be contactable on any of its IP addresses, uncomnment the following line of code<br />
		serverName.sin_addr=hton1(INADDR_ANY…<br />
	*/<br />
	serverName.sin_family=AF_INET;<br />
	serverName.sin_port=htons(port); //network order<br />
	status=bind(serverSocket,(structsocka…<br />
	if(-1==status){<br />
		perror(&#8220;bind()&#8221;);<br />
		exit(1);<br />
	}<br />
	status=listen(serverSocket,BACK_LOG);<br />
	if(-1==status){<br />
		perror(&#8220;listen()&#8221;);<br />
		exit(1);<br />
	}<br />
	for(;;){<br />
		struct sockaddr_in clientName={0};<br />
		int slaveSocket, clientLength=sizeof(clientName);<br />
		(void)memset(&amp;clientName,0,sizeof(cl…<br />
		slaveSocket=accept(serverSocket,(str… sockaddr*)&amp;clientName,&amp;clientLength);<br />
		if(-1==slaveSocket){<br />
			perror(&#8220;accept()&#8221;);<br />
			exit(1);<br />
		}<br />
		childPid=fork();<br />
		switch(childPid){<br />
		case -1: /* ERROR */<br />
					perror(&#8220;fork()&#8221;);<br />
					exit(1);<br />
		case 0: /* child process */<br />
					close(serverSocket);<br />
					if(-1==getpeername(slaveSocket,(s… sockaddr*)&amp;clientName,&amp;clientLength)){<br />
						perror(&#8220;getpeername()&#8221;);<br />
					}else{<br />
						printf(&#8220;Connectionrequest from %s \n&#8221;; , inet_ntoa(clientName.sin_addr));<br />
					}<br />
					/*	Server application spoecific code goes here,<br />
						e.g.perform some action, respond to client etc.<br />
					*/<br />
					write(slaveSocket,MESSAGE,strlen(…<br />
					close(slaveSocket);<br />
					exit(0);<br />
		default: /*parentprocess*/<br />
			close(slaveSocket);<br />
		}<br />
	}<br />
	return 0;<br />
	}<br />
	/* Local replacement of gethostname() to aid portability */<br />
	int _GetHostName(char *buffer, int length){<br />
		struct utsname sysname={0};<br />
		int status=0;<br />
		status=uname(&amp;sysname);<br />
		if(-1!=status){<br />
			strncpy(buffer,sysname.nodename,len…<br />
		}<br />
		return(status);<br />
	}<br />
please help..</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/sys-files/can-anyone-help-me-with-the-hello-world-server-and-client-program/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Program Error: Browselcx.exe Has Generated Errors And Will Be Closed By Windows..an Error Log Is Being Created</title>
		<link>http://blog.nohideip.com/exe-errors/program-error-browselcx-exe-has-generated-errors-and-will-be-closed-by-windows-an-error-log-is-being-created</link>
		<comments>http://blog.nohideip.com/exe-errors/program-error-browselcx-exe-has-generated-errors-and-will-be-closed-by-windows-an-error-log-is-being-created#comments</comments>
		<pubDate>Fri, 05 Feb 2010 22:40:07 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[exe errors]]></category>
		<category><![CDATA[Being]]></category>
		<category><![CDATA[Browselcx.exe]]></category>
		<category><![CDATA[Closed.]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[Generated]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Will]]></category>
		<category><![CDATA[Windows..an]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/exe-errors/program-error-browselcx-exe-has-generated-errors-and-will-be-closed-by-windows-an-error-log-is-being-created</guid>
		<description><![CDATA[everytime i boot my laptop this error message always shows up before the desktop icons appear.Can anyonehelp me?
]]></description>
			<content:encoded><![CDATA[<p>everytime i boot my laptop this error message always shows up before the desktop icons appear.Can anyonehelp me?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/exe-errors/program-error-browselcx-exe-has-generated-errors-and-will-be-closed-by-windows-an-error-log-is-being-created/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I Am Working On A C++ Program For Unix That Will Use Files As Semaphores, Please Help.?</title>
		<link>http://blog.nohideip.com/sys-files/i-am-working-on-a-c-program-for-unix-that-will-use-files-as-semaphores-please-help</link>
		<comments>http://blog.nohideip.com/sys-files/i-am-working-on-a-c-program-for-unix-that-will-use-files-as-semaphores-please-help#comments</comments>
		<pubDate>Mon, 25 Jan 2010 12:04:14 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[sys files]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Please]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Semaphores]]></category>
		<category><![CDATA[That]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Will]]></category>
		<category><![CDATA[Working]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/sys-files/i-am-working-on-a-c-program-for-unix-that-will-use-files-as-semaphores-please-help</guid>
		<description><![CDATA[OK, so I&#8217;m supposed to use the creat() function in C++ with UNIX to create 5 files and only 5 files.  I then want to test to see if those files are in use by using creat() on them again.  My professor states that when creat() makes a new file, it is open [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so I&#8217;m supposed to use the creat() function in C++ with UNIX to create 5 files and only 5 files.  I then want to test to see if those files are in use by using creat() on them again.  My professor states that when creat() makes a new file, it is open for writing, however, when it truncates an existing file, it fails if there is no write permission.  This allows a file to be used as a semaphore.<br />
Here is my code:<br />
#include<br />
#include<br />
#include<br />
#include<br />
#include<br />
using namespace std;<br />
int main() {<br />
  int fd, fd2;<br />
  mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;<br />
  char *filename = &#8220;Fork1.txt&#8221;;<br />
  char *filename2 = &#8220;Fork1.txt&#8221;;<br />
  fd = creat(&#8220;Fork1.txt&#8221;, mode);<br />
  fd2 = creat(&#8220;Fork1.txt&#8221;, mode);<br />
  cout &lt;&lt; &quot;Test&quot; &lt;&lt; endl &lt;&lt; fd &lt;&lt; endl &lt;&lt; fd2 &lt;&lt; endl;<br />
  return 0;<br />
}<br />
The second creat() should return -1 as an error because the file already exists, but it is returning a successful value&#8230;please help!  Thx.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/sys-files/i-am-working-on-a-c-program-for-unix-that-will-use-files-as-semaphores-please-help/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What Program Do I Need To Open &#8220;window.dll&#8221;?</title>
		<link>http://blog.nohideip.com/dll-errors/what-program-do-i-need-to-open-window-dll</link>
		<comments>http://blog.nohideip.com/dll-errors/what-program-do-i-need-to-open-window-dll#comments</comments>
		<pubDate>Sat, 23 Jan 2010 17:38:19 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[dll errors]]></category>
		<category><![CDATA["window.dll"]]></category>
		<category><![CDATA[Need]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[What]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/dll-errors/what-program-do-i-need-to-open-window-dll</guid>
		<description><![CDATA[Which program do I need to open &#8220;window.dll&#8221;??
I have tried many extracting programs. Please send me the name of the program-location
]]></description>
			<content:encoded><![CDATA[<p>Which program do I need to open &#8220;window.dll&#8221;??<br />
I have tried many extracting programs. Please send me the name of the program-location</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/dll-errors/what-program-do-i-need-to-open-window-dll/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I Keep Getting A Program Error That Refers To Explorer.exe It Stops Me From Doing Anything On The Comp.?</title>
		<link>http://blog.nohideip.com/exe-errors/i-keep-getting-a-program-error-that-refers-to-explorer-exe-it-stops-me-from-doing-anything-on-the-comp</link>
		<comments>http://blog.nohideip.com/exe-errors/i-keep-getting-a-program-error-that-refers-to-explorer-exe-it-stops-me-from-doing-anything-on-the-comp#comments</comments>
		<pubDate>Thu, 21 Jan 2010 04:36:33 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[exe errors]]></category>
		<category><![CDATA[Doing]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Explorer.exe]]></category>
		<category><![CDATA[From]]></category>
		<category><![CDATA[Getting]]></category>
		<category><![CDATA[Keep]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Refers]]></category>
		<category><![CDATA[Stops]]></category>
		<category><![CDATA[That]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/exe-errors/i-keep-getting-a-program-error-that-refers-to-explorer-exe-it-stops-me-from-doing-anything-on-the-comp</guid>
		<description><![CDATA[This is wat it says:
&#8220;explorer.exe has generated errors and will be closed by windows. You will need to restart the program.
An error log is being created.&#8221;
How do I stop getting this because it is crashing my comp.?
P.S. it is sort of a pop up
Please Help  
]]></description>
			<content:encoded><![CDATA[<p>This is wat it says:<br />
&#8220;explorer.exe has generated errors and will be closed by windows. You will need to restart the program.<br />
An error log is being created.&#8221;<br />
How do I stop getting this because it is crashing my comp.?<br />
P.S. it is sort of a pop up<br />
Please Help <img src='http://blog.nohideip.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/exe-errors/i-keep-getting-a-program-error-that-refers-to-explorer-exe-it-stops-me-from-doing-anything-on-the-comp/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I Put A Obsolete Program On My Computer &amp; Cant Remove It &#8230;?!?</title>
		<link>http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it-2</link>
		<comments>http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it-2#comments</comments>
		<pubDate>Fri, 15 Jan 2010 00:03:25 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[sys files]]></category>
		<category><![CDATA[Can't]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Obsolete]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Remove]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it-2</guid>
		<description><![CDATA[I put what it says is an obsolete application &#38; device driver on my computer.
Every time i start my computer it gives me an error message.
when i click the baloon, this is what it says.
Driver &#38; file name : cdralw2k.sys
It&#8217;s a product made by Roxio, Inc
It is a cd creating software that i used when [...]]]></description>
			<content:encoded><![CDATA[<p>I put what it says is an obsolete application &amp; device driver on my computer.<br />
Every time i start my computer it gives me an error message.<br />
when i click the baloon, this is what it says.<br />
Driver &amp; file name : cdralw2k.sys<br />
It&#8217;s a product made by Roxio, Inc<br />
It is a cd creating software that i used when i had windows ME now i am using windows XP..i guess i can&#8217;t do that <img src='http://blog.nohideip.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
When i go to the Roxio website to upgrade i have to buy the upgrade and i dont want to.  I just want to get it off my comuter!  I have another cd creator.<br />
How can i delete this of my computer?  Ive already done add/remove programs but it&#8217;s not there.<br />
Can i delete the driver maybe?<br />
Can i search for the cdralw2k.sys and find it that way.  I can&#8217;t find it to delete it off my computer !?!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it-2/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Why Does Everytime I Try To Open Yahoo Messenger Frome The Install Program It Says Dll  Module Error?</title>
		<link>http://blog.nohideip.com/dll-errors/why-does-everytime-i-try-to-open-yahoo-messenger-frome-the-install-program-it-says-dll-module-error</link>
		<comments>http://blog.nohideip.com/dll-errors/why-does-everytime-i-try-to-open-yahoo-messenger-frome-the-install-program-it-says-dll-module-error#comments</comments>
		<pubDate>Thu, 14 Jan 2010 05:40:06 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[dll errors]]></category>
		<category><![CDATA[Does]]></category>
		<category><![CDATA[Everytime]]></category>
		<category><![CDATA[Frome]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[Module]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Says]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/dll-errors/why-does-everytime-i-try-to-open-yahoo-messenger-frome-the-install-program-it-says-dll-module-error</guid>
		<description><![CDATA[If anyone can help please do.  I would really like to start chatting with people but I can not get it to work. It will download and right after it says something like cannot reconize DLL MOdule any help?
]]></description>
			<content:encoded><![CDATA[<p>If anyone can help please do.  I would really like to start chatting with people but I can not get it to work. It will download and right after it says something like cannot reconize DLL MOdule any help?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/dll-errors/why-does-everytime-i-try-to-open-yahoo-messenger-frome-the-install-program-it-says-dll-module-error/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft Visual Basic C++ Debug Library Error Iexplore.exe Abnormal Program Termination?cant Find Sol. Anywhe</title>
		<link>http://blog.nohideip.com/exe-errors/microsoft-visual-basic-c-debug-library-error-iexplore-exe-abnormal-program-terminationcant-find-sol-anywhe</link>
		<comments>http://blog.nohideip.com/exe-errors/microsoft-visual-basic-c-debug-library-error-iexplore-exe-abnormal-program-terminationcant-find-sol-anywhe#comments</comments>
		<pubDate>Wed, 13 Jan 2010 16:40:10 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[exe errors]]></category>
		<category><![CDATA[Abnormal]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Iexplore.exe]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Terminationcant]]></category>
		<category><![CDATA[Visual]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/exe-errors/microsoft-visual-basic-c-debug-library-error-iexplore-exe-abnormal-program-terminationcant-find-sol-anywhe</guid>
		<description><![CDATA[I work in IT and one of the ladies computers im working on keeps getting a microsoft visual basic c++ debug library error for c:\prgram files\internet explorer\iexplore.exe abnormal program termination  and gives the option to hit abort, retry, or ignore i clicked all of the buttons and tried a reboot nothing happens it dosent [...]]]></description>
			<content:encoded><![CDATA[<p>I work in IT and one of the ladies computers im working on keeps getting a microsoft visual basic c++ debug library error for c:\prgram files\internet explorer\iexplore.exe abnormal program termination  and gives the option to hit abort, retry, or ignore i clicked all of the buttons and tried a reboot nothing happens it dosent close out internet explorere either so I figured there wasnt any problem there so I disabled the debugger in ie and it still pops up, it even pops up when she&#8217;s not even on the internet also checked for spyware none found, cant find a solution for it anywere does anyone have any ideas??? I&#8217;ve looked everywere</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/exe-errors/microsoft-visual-basic-c-debug-library-error-iexplore-exe-abnormal-program-terminationcant-find-sol-anywhe/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I Put A Obsolete Program On My Computer &amp; Cant Remove It &#8230;?!?</title>
		<link>http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it</link>
		<comments>http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it#comments</comments>
		<pubDate>Wed, 13 Jan 2010 12:04:26 +0000</pubDate>
		<dc:creator>florian</dc:creator>
				<category><![CDATA[sys files]]></category>
		<category><![CDATA[Can't]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Obsolete]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Remove]]></category>

		<guid isPermaLink="false">http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it</guid>
		<description><![CDATA[I put what it says is an obsolete application &#38; device driver on my computer.
Every time i start my computer it gives me an error message.
when i click the baloon, this is what it says.
Driver &#38; file name : cdralw2k.sys
It&#8217;s a product made by Roxio, Inc
It is a cd creating software that i used when [...]]]></description>
			<content:encoded><![CDATA[<p>I put what it says is an obsolete application &amp; device driver on my computer.<br />
Every time i start my computer it gives me an error message.<br />
when i click the baloon, this is what it says.<br />
Driver &amp; file name : cdralw2k.sys<br />
It&#8217;s a product made by Roxio, Inc<br />
It is a cd creating software that i used when i had windows ME now i am using windows XP..i guess i can&#8217;t do that <img src='http://blog.nohideip.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
When i go to the Roxio website to upgrade i have to buy the upgrade and i dont want to.  I just want to get it off my comuter!  I have another cd creator.<br />
How can i delete this of my computer?  Ive already done add/remove programs but it&#8217;s not there.<br />
Can i delete the driver maybe?<br />
Can i search for the cdralw2k.sys and find it that way.  I can&#8217;t find it to delete it off my computer !?!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nohideip.com/sys-files/i-put-a-obsolete-program-on-my-computer-cant-remove-it/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

