Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

System locks up until InternetOpenURL call completes

73 views
Skip to first unread message

Dan

unread,
Feb 15, 2006, 12:50:13 PM2/15/06
to
I have an app that a lot of people use. It pulls down HTML from the
Internet using the following InternetOpenURL call in VB:

lngOpen = InternetOpen(scUserAgent, INTERNET_OPEN_TYPE_PRECONFIG,
vbNullString, vbNullString, 0)

If lngOpen <> 0 Then
lngOpenURL = InternetOpenUrl(lngOpen, strURL, vbNullString, 0, _
INTERNET_FLAG_RELOAD Or INTERNET_FLAG_NO_COOKIES Or _
INTERNET_FLAG_NO_CACHE_WRITE, 0)
End If

The above works fine on my test machines as well as on about 99% of my users
but occasionally I have one report that when it is pulling information from
the Internet their system becomes unresponsive until the call is completed.
It is normal for the program itself to become unresponsive while waiting for
the reply but these users report that THEIR ENTIRE COMPUTER SYSTEMS become
unresponsive. They can't open or use any other program while my program is
waiting for the response. I've never been able to reproduct this or
determine why this might be happening. Does anyone have any ideas what
could be causing the systems to lock up?

I have had some people suggest that I switch to asynchronous calls but I
really don't want to go that route. What I really need to know is why on
some computers the entire system is locked up and not just the program. If
there is some fix I can give my users so that their computers don't hang
during a synchrous InternetOpenUrl call is made (some Registry setting I
expect) it would be a real big help. Thanks!


TedF

unread,
Feb 15, 2006, 7:37:12 PM2/15/06
to
Did you ask the users to clean Internet Temporary Files, Cookies,
and Temp folder, then see what happens ?

"Dan" <D...@NoSpam.com> wrote in message
news:pMidnTD2Z95...@comcast.com...

Dan

unread,
Feb 15, 2006, 10:34:31 PM2/15/06
to
"TedF" <NoR...@xxxmsn.com> wrote in message
news:uCIlZEpM...@TK2MSFTNGP11.phx.gbl...

> Did you ask the users to clean Internet Temporary Files, Cookies,
> and Temp folder, then see what happens ?

No, that had not occurred to me. Why would the need to clear the cache,
cookies and temp folder cause a system to lock up during InternetOpenURL
calls?


TedF

unread,
Feb 16, 2006, 12:14:41 AM2/16/06
to
Yes, if there is plenty of them.
I had situations were it took more than 5 minutes
clearing the Internet Temporary Files.

"Dan" <D...@NoSpam.com> wrote in message

news:_rqdnRDn_7R...@comcast.com...

Scherbina Vladimir

unread,
Feb 16, 2006, 3:35:28 AM2/16/06
to
Hello, TedF.

I don't think that might influence on OS hunging when wininet function is
invoked. That might influence on GetTempFileName bevavour -
http://groups.google.com/group/microsoft.public.win32.programmer.kernel/browse_thread/thread/e7bb986bf2ea6a79/b344c4376a8a25e1?lnk=st&q=any+issue+with+GetTempFileName&rnum=1#b344c4376a8a25e1
but on InternetOpenURL

--
Vladimir

"TedF" <NoR...@xxxmsn.com> wrote in message

news:OGV0cfrM...@TK2MSFTNGP14.phx.gbl...

Scherbina Vladimir

unread,
Feb 16, 2006, 4:04:27 AM2/16/06
to
> but on InternetOpenURL
but *NOT* on InternetOpenURL

--
Vladimir

"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message
news:utzncOtM...@TK2MSFTNGP09.phx.gbl...

TedF

unread,
Feb 16, 2006, 9:17:30 AM2/16/06
to
A full temp folder will even give error opening a VB program without
connecting to the Internet.


"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:uz66qetM...@TK2MSFTNGP15.phx.gbl...

Dan

unread,
Feb 16, 2006, 12:05:33 PM2/16/06
to
"TedF" <NoR...@xxxmsn.com> wrote in message
news:uhW8wOwM...@TK2MSFTNGP11.phx.gbl...

>A full temp folder will even give error opening a VB program without
> connecting to the Internet.

Yes, but again, why *specifically* would it cause the system to hang during
an InternetOpenURL call? The application isn't showing any errors in its
log file so no errors are being raised in the program. The system is just
behaving oddly (locking up) until the response is received. It's normal for
the program to become unresponsive. It's not normal for the entire OS to
become unresponsive.

I am loath to tell the user to clean Internet Temporary Files, Cookies, etc.
No offense Ted but in my experience that is exactly the answer that a
know-nothing technical support bozo on the phone suggests for any
Internet-related problem even when it clearly has nothing to do with cache
or cookies. I don't want my users to roll their eyes and decide I don't
know what I'm doing because I give them suggestions like that. Unless there
is someone who sees a logical connection I'm not putting that up on my
trouble-shooting page.


Scherbina Vladimir

unread,
Feb 16, 2006, 12:21:27 PM2/16/06
to
Hello, Dan.

Yes, even if call of InternetOpenURL will fail (no resources, exception,
etc) there should not be any hunging of OS. That should influence only on
process that invokes InternetOpenURL function.

Again, I'm tending to the idea that something hooks this function. I had a
really bad expirience with antivirus that installed LSP and hooked
HttpSendRequest. The call never returned and all system was freezing for
some time.

So, my questions:

How much clients suffer from this problem?
What software is installed on their systems?
Are they corporate or home users?

If this bug does not repeat on your development PC then you have a problem.
Usually I resolve such problems using SoftIce and debugging the function
that causes the problem.

--
Vladimir


Dan

unread,
Feb 16, 2006, 1:39:25 PM2/16/06
to
"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message
news:eTKuZ0xM...@TK2MSFTNGP15.phx.gbl...

> Hello, Dan.
>
> Yes, even if call of InternetOpenURL will fail (no resources, exception,
> etc) there should not be any hunging of OS. That should influence only on
> process that invokes InternetOpenURL function.
>
> Again, I'm tending to the idea that something hooks this function. I had a
> really bad expirience with antivirus that installed LSP and hooked
> HttpSendRequest. The call never returned and all system was freezing for
> some time.
>
> So, my questions:
>
> How much clients suffer from this problem?

Very very few. I would say less than 1% but it is hard to be certain.

> What software is installed on their systems?

Unknown. I've never asked for an inventory from one of the users having the
problem.

> Are they corporate or home users?

My product is a consumer product though some of my users do install it on
their work PCs. The last person to report the problem was using XP Pro
which increases the likelihood that they are at work.

> If this bug does not repeat on your development PC then you have a
> problem.

Indeed! It's a rare problem but it drives me nutts when it is reported
since I can't fix what I can't reproduce. I was hoping that maybe someone
else who had the same problem would read my post and share the answer they
found. That this has not happened illustrates the rarity of the problem.

Scherbina Vladimir

unread,
Feb 16, 2006, 2:01:53 PM2/16/06
to
I advice you to deploy "support" tool with your product. When your clients
met situation describe above let they run this tool. The main task of the
tool is to make snapshot of processes, registry entries where AV and other
stuff resides and send this report to your research center where you may
analyze it's content.

That's the way how usually such bugs are solved. Hope my advise will help
you.

--
Vladimir

"Dan" <D...@NoSpam.com> wrote in message

news:ZIGdnT-9kP5AW2ne...@comcast.com...

Dan

unread,
Feb 16, 2006, 2:43:39 PM2/16/06
to
"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message
news:OxGxhry...@TK2MSFTNGP12.phx.gbl...

>I advice you to deploy "support" tool with your product. When your clients
>met situation describe above let they run this tool. The main task of the
>tool is to make snapshot of processes, registry entries where AV and other
>stuff resides and send this report to your research center where you may
>analyze it's content.
>
> That's the way how usually such bugs are solved. Hope my advise will help
> you.

Thanks for the suggestion. It's a good idea.


TedF

unread,
Feb 16, 2006, 11:54:15 PM2/16/06
to
That is what happens when you try to help an ignorant
sh!t head.
90% of computer problems are fixed by clearing the temp files,
and is the first step to do before going any further.
You are ignorant, I don't expect you to understand.

"Dan" <D...@NoSpam.com> wrote in message

news:i-ednUTzMZF...@comcast.com...

Scherbina Vladimir

unread,
Feb 17, 2006, 4:21:18 AM2/17/06
to
Hello, Ted.

1. At first I want you to read the following link:
http://www.microsoft.com/communities/conduct/default.mspx#EID

2. I'm not sure that 90 % of computer problems are fixed by clearing temp
files. Can you shed light on that issue ? How InternetOpenUrl is connected
with temp files ? Can you prove that ?

My disassembler shows that InternetOpenUrlW inside manipulates with memory
using LocalAlloc, lstrlenW, WideCharToMultiByte functions to convert
unicode strings to ansi and then simply calls InternetOpenUrlA.

I don't see any manupulations with temp files in InternetOpenUrlA - it calls
directly internal functions that are not exported by wininet.dll.

--
Vladimir

"TedF" <NoR...@xxxmsn.com> wrote in message

news:er%237r43M...@TK2MSFTNGP09.phx.gbl...

Paul Baker

unread,
Feb 17, 2006, 9:07:26 AM2/17/06
to
Vladimir,

I agree with you that Ted has used inappropriate language and is also
incorrect.

There is no reason why InternetOpenUrl should necessarily be connected to
temporary files in the C:\Documents and Settings\<user>\Local Settings\Temp,
although I am not ruling out the possibility and of course it may use the
cache in the Temporary Internet Folder, depending on the parameters.

I am a developer with a decade of experience in Windows programming and work
for a company which takes dozens of support calls a week. I have found that
deleting temporary files almost never resolves a problem. In fact, I
recently discussed this with the VP in charge of support. He felt that
sometimes deleting temporary files was offered as a solution when someone
was "stuck" and didn't know what they were doing as a last-ditch effort. He
wanted to confirm that with me.

There are only two types of problems I have seen proven to be attributed to
temporary files, and this is neither.
1. Temporary files are taking up a significant amount of disk space and
available disk space is so low that there is not enough available disk space
to create or grow a necessary file. In particular, there may not be enough
available disk space to grow the swap file sufficiently and an application
runs out of memory. This is accompanied by a "...virtual memory is low..."
message and a lot of swaps resulting in sudden loss of performance and hard
drive grinding.
2. A piece of software uses a non-unique name for a temporary file and fails
if the file already exists, which can happen if the software is run multiple
times, especially on abnormal terminaton.

I put "delete your temporary files" on the same level as "you have a corrupt
DLL", both the mantra of either an ignoramus or someone who is so smart as
to be able to prove that an exceptionally rare condition can truly be
attributed to the problem at hand. I have my opinions about which Ted is ;)

Paul

"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:erhfvM6M...@TK2MSFTNGP09.phx.gbl...

Scherbina Vladimir

unread,
Feb 17, 2006, 9:17:48 AM2/17/06
to
Correct :)

--
Vladimir

"Paul Baker" <pa...@online.rochester.rr.com> wrote in message
news:OG2dUu8M...@TK2MSFTNGP09.phx.gbl...

Paul Baker

unread,
Feb 17, 2006, 9:21:45 AM2/17/06
to
Vladimir,

I seem to have missed your earlier comments about InternetOpenUrl.

Are you saying that threads other than the one calling InternetOpenUrl are
not responding? What are the other threads doing?

Did deleting temporary files really solve the problem? If so, it might be
that it was a transient condition, eg. unusual network conditions. Is it
reproducible now?

Paul

"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:e8X%23ky8M...@TK2MSFTNGP15.phx.gbl...
> Correct :)
>
> --
> Vladimir
> > ignoramus ... or someone who is so smart as to be able to prove ..... I

Scherbina Vladimir

unread,
Feb 17, 2006, 9:37:34 AM2/17/06
to
Hello, Paul.

"Paul Baker" <pa...@online.rochester.rr.com> wrote in message

news:uWBnU28M...@TK2MSFTNGP14.phx.gbl...


> Vladimir,
>
> I seem to have missed your earlier comments about InternetOpenUrl.

You can easially take a look at my comments at web interface of a forum:
http://groups.google.com/group/microsoft.public.inetsdk.programming.wininet/browse_thread/thread/295e06d560c64d04/654786645da27c9e#654786645da27c9e

> Are you saying that threads other than the one calling InternetOpenUrl
are
> not responding? What are the other threads doing?

Nope, it's not my problem, read the whole thread attentivly - OP has a
notification from some of his customers that system is hunging when
InternetOpenUrl is invoked.

> Did deleting temporary files really solve the problem? If so, it might be
> that it was a transient condition, eg. unusual network conditions. Is it
> reproducible now?

That's probably questions to OP.

>
> Paul

--
Vladimir


Dan

unread,
Feb 17, 2006, 10:01:42 AM2/17/06
to
"TedF" <NoR...@xxxmsn.com> wrote in message
news:er%237r43M...@TK2MSFTNGP09.phx.gbl...

> That is what happens when you try to help an ignorant
> sh!t head.
> 90% of computer problems are fixed by clearing the temp files,
> and is the first step to do before going any further.
> You are ignorant, I don't expect you to understand.

Ted, you must work at AOL technical support if you believe that 90% of all
computer problems are fixed by clearing temp files. I'm not the ignorant
one here.


Dan

unread,
Feb 17, 2006, 10:04:53 AM2/17/06
to
"Paul Baker" <pa...@online.rochester.rr.com> wrote in message
news:uWBnU28M...@TK2MSFTNGP14.phx.gbl...

>
> Did deleting temporary files really solve the problem? If so, it might be
> that it was a transient condition, eg. unusual network conditions. Is it
> reproducible now?

I've passed along the suggestion to one of the users that is having the
problem though I don't expect it to make a difference. Ted was unable to
give any logical reason why deleting temporary files would fix the problem
other than the ridiculous assertion that it fixes 90% of all computer
problems. If the user gets back to me and says it actually made a
difference I'll report it here.


TedF

unread,
Feb 17, 2006, 11:08:19 AM2/17/06
to
You can call any support, they all ask to clear the
temp files first before going any further, if you don't
know that by now, then you are very ignorant.
You have zero experience in computers, you are not fit to be
a programmers, give support, or even be any where around
computers.

You have lots to learn, so don't make a fool out of
yourself and the ones trying to help you.

"Dan" <D...@NoSpam.com> wrote in message

news:4sSdnVYyF9P...@comcast.com...

TedF

unread,
Feb 17, 2006, 11:11:51 AM2/17/06
to
You are just another dum sh!t.


"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:erhfvM6M...@TK2MSFTNGP09.phx.gbl...

Scherbina Vladimir

unread,
Feb 17, 2006, 11:22:56 AM2/17/06
to
Again, I'm asking you to read the following rules:
http://www.microsoft.com/communities/conduct/default.mspx#EID

.
--
Vladimir

"TedF" <NoR...@xxxmsn.com> wrote in message

news:%230KvTz9...@TK2MSFTNGP15.phx.gbl...

TedF

unread,
Feb 17, 2006, 11:33:36 AM2/17/06
to
buzz off !diot.


"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:OoEmR49M...@TK2MSFTNGP14.phx.gbl...

Paul Baker

unread,
Feb 17, 2006, 11:35:04 AM2/17/06
to
Dan,

Do me a favor - let's ignore Ted as he obviously has nothing helpful to add
to this.

Paul

"Dan" <D...@NoSpam.com> wrote in message

news:AsidnYgZq8a...@comcast.com...

Paul Baker

unread,
Feb 17, 2006, 11:36:01 AM2/17/06
to
Ted,

Yes, many support departments will say that a lot of the time. They too are
ignorant. You can rant on if you wish, but that's the last I'm going to say
on the matter

Paul

"TedF" <NoR...@xxxmsn.com> wrote in message

news:ufwwUx9M...@TK2MSFTNGP10.phx.gbl...

Paul Baker

unread,
Feb 17, 2006, 11:42:33 AM2/17/06
to
Vladimir,

Yes, it sounds like rare issue with InternetOpenUrl. If someone can
reproduce it, they can submit it to Microsoft, via support or an MVP.

I have been nominated as an MVP this year. If I am successful, I will join
the Source Licensing Program and look at the WinInet source code and see
what I can glean about its use of temporary files. Again, it definitely can
use Temporary Internet Files, it may not may not use temporary files in the
Temp folder.

My only experience of this kind of thing myself is that I had one customer
claim that their *application* reproducibly stops responding when making an
HTTP request, even a thread that was not involved in the request.

I wrote software that logged call stack information for each thread in the
process, and found that he main thread which contains all the UI was
apparently responding normally to messages and the thread that was making
the request was calling HttpSendRequestEx -> ordinal 101 ->
InternetTimeFromSystemTime -> WaitForSingleObject. If only I knew what
object it was waiting for, that might explain why the thread making the
request is not responding, at least. Waiting for an HTTP response perhaps?
But why is it called from InternetTimeFromSystemTime? And what is unblocking
it if the HINTERNET handle is closed?

Paul

"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:e3i8d98M...@tk2msftngp13.phx.gbl...

Scherbina Vladimir

unread,
Feb 17, 2006, 11:56:57 AM2/17/06
to
Paul,

"Paul Baker" <pa...@online.rochester.rr.com> wrote in message

news:uit4$E%23MGH...@tk2msftngp13.phx.gbl...


> Vladimir,
>
> Yes, it sounds like rare issue with InternetOpenUrl. If someone can
> reproduce it, they can submit it to Microsoft, via support or an MVP.

I think support will be enough here, but this example is really interesting
:) - http://blog.kalmbachnet.de/?postid=72

>
> I have been nominated as an MVP this year. If I am successful, I will join
> the Source Licensing Program and look at the WinInet source code and see
> what I can glean about its use of temporary files. Again, it definitely
> can use Temporary Internet Files, it may not may not use temporary files
> in the Temp folder.

Take my congratulations !

> My only experience of this kind of thing myself is that I had one customer
> claim that their *application* reproducibly stops responding when making
> an HTTP request, even a thread that was not involved in the request.

> I wrote software that logged call stack information for each thread in the
> process, and found that he main thread which contains all the UI was
> apparently responding normally to messages and the thread that was making
> the request was calling HttpSendRequestEx -> ordinal 101 ->
> InternetTimeFromSystemTime -> WaitForSingleObject. If only I knew what
> object it was waiting for, that might explain why the thread making the
> request is not responding, at least. Waiting for an HTTP response perhaps?
> But why is it called from InternetTimeFromSystemTime? And what is
> unblocking it if the HINTERNET handle is closed?

Only debugging will shed light on such problems...

> Paul

--
Vladimir


J French

unread,
Feb 17, 2006, 12:10:27 PM2/17/06
to
On Fri, 17 Feb 2006 08:08:19 -0800, "TedF" <NoR...@xxxmsn.com> wrote:

>You can call any support, they all ask to clear the
>temp files first before going any further, if you don't
>know that by now, then you are very ignorant.
>You have zero experience in computers, you are not fit to be
>a programmers, give support, or even be any where around
>computers.

>You have lots to learn, so don't make a fool out of
>yourself and the ones trying to help you.

Ok, I've been around a fair time

This is the first time I've heard a programmer suggest that solution.

Paul Baker

unread,
Feb 17, 2006, 12:32:36 PM2/17/06
to
Vladimir,

"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:uld%23UL%23MGH...@TK2MSFTNGP10.phx.gbl...


> I think support will be enough here, but this example is really
> interesting :) - http://blog.kalmbachnet.de/?postid=72

Yes, interesting. I don't use Visual Studio myself, but I get the gist.

>> I have been nominated as an MVP this year [...]
> Take my congratulations !

Thank you :) It is just a nomination.

> Only debugging will shed light on such problems...

Agreed. Though I may try to use WebEx (a remote control thingy) to verify
that my understanding of what is happening to this customer is accurate,
because something doesn't quite add up.

Paul


Bob O`Bob

unread,
Feb 17, 2006, 2:23:47 PM2/17/06
to
J French wrote:
>
> Ok, I've been around a fair time
>
> This is the first time I've heard a programmer suggest that solution.
>

It seems the newsgroup has developed another troll to starve.
Please do your part in the future.

Bob
--

TedF

unread,
Feb 17, 2006, 2:35:24 PM2/17/06
to
> Ok, I've been around a fair time

Apparently you have not.

"J French" <ere...@nowhere.uk> wrote in message
news:43f602f4...@news.btopenworld.com...

Dan

unread,
Feb 17, 2006, 6:19:43 PM2/17/06
to
"Paul Baker" <pa...@online.rochester.rr.com> wrote in message
news:OqQj0A%23MGH...@TK2MSFTNGP11.phx.gbl...

> Dan,
>
> Do me a favor - let's ignore Ted as he obviously has nothing helpful to
> add to this.

Agreed.


Dan

unread,
Feb 17, 2006, 6:23:50 PM2/17/06
to
"TedF" <NoR...@xxxmsn.com> wrote in message
news:ufwwUx9M...@TK2MSFTNGP10.phx.gbl...

> You can call any support, they all ask to clear the
> temp files first before going any further, if you don't
> know that by now, then you are very ignorant.

Yes, I've had support techs suggest just that many times. And guess what,
they were wrong.

> You have zero experience in computers, you are not fit to be
> a programmers, give support, or even be any where around
> computers.

Actually, I've been coding professionally for 11 years, sell my own software
product and earn well six figures. I must know something. I certainly know
that you sound like an arrogant 13 year old script kiddie who can't spell
"dumb" nor resist using exclamation points as the letter "I".

> You have lots to learn, so don't make a fool out of
> yourself and the ones trying to help you.

Yes, responding to the likes of you is indeed foolish. I'll add you to my
kill file and stop responding.


TedF

unread,
Feb 17, 2006, 10:05:26 PM2/17/06
to
> Actually, I've been coding professionally for 11 years,

Doesn't mean you know anything about computers.

> Yes, I've had support techs suggest just that many times. And guess what,
> they were wrong.

You got lots to learn yet.

"Dan" <D...@NoSpam.com> wrote in message

news:D8idnROvU4D...@comcast.com...

J French

unread,
Feb 18, 2006, 4:57:10 AM2/18/06
to
On Fri, 17 Feb 2006 11:35:24 -0800, "TedF" <NoR...@xxxmsn.com> wrote:

>> Ok, I've been around a fair time

>Apparently you have not.

How amusing - an omniscient troll

Or is it just a juvenile jerk ?


J French

unread,
Feb 18, 2006, 4:59:44 AM2/18/06
to

C'mon Bob, we need a little entertainment :-}

TedF

unread,
Feb 18, 2006, 12:05:20 PM2/18/06
to

There are two types of programmers.
1) Knows Windows or operating system very well, then became a programmer.
2) Became a programmer with very little Windows knowledge.

The first would be a pro, the second will limp and needs
to be directed all the way through.
You and Dan fall in the second category, you still got lots to learn yet.
And I know many like you ad Dan.

"J French" <ere...@nowhere.uk> wrote in message

news:43f6edca...@news.btopenworld.com...

J French

unread,
Feb 18, 2006, 1:24:02 PM2/18/06
to
On Sat, 18 Feb 2006 09:05:20 -0800, "TedF" <NoR...@xxxmsn.com> wrote:


>There are two types of programmers.
>1) Knows Windows or operating system very well, then became a programmer.
>2) Became a programmer with very little Windows knowledge.

>The first would be a pro, the second will limp and needs
>to be directed all the way through.
>You and Dan fall in the second category, you still got lots to learn yet.
>And I know many like you ad Dan.

Give me a minute to laugh.

I was a programmer on machines that existed before you were born

- some guys here make me look young (well kind of)

You want to be careful where you are stepping, sunshine
- old gits know old tricks

It would give me great pleasure trampling on your head, AKA kicking
the sh*t out of you

Unfortunately the unwritten rule here is that we 'train up' the likely
lads - and discard cretins,

Are you a cretin ?

TedF

unread,
Feb 18, 2006, 2:15:33 PM2/18/06
to
I am going to tell you how ignorant you are, you piece of
sh!t.
Every minute you call AOL it costs them about a dollar,
do you think they are that stupid to spend the time emptying
your temp files, which could take anywhere from 2 to 7 minutes.
Do you know how much that can add up at the end of the day ?
No they are not, every move AOL support give has been carefully
studied and engineered by very advanced OS specialists.
A dummy like you and DAN don't agree with AOL, that is
because you are both ignorant and acting like a bunch a$$holes.

"J French" <ere...@nowhere.uk> wrote in message

news:43f75ed9...@news.btopenworld.com...

Scherbina Vladimir

unread,
Feb 18, 2006, 2:29:29 PM2/18/06
to
Ted, that fact that they're giving such advices does not mean that they're
correct.

Don't believe support(especially women :) ), I worked in a large software
company and do know what support think about users :)

--
Vladimir

"TedF" <NoR...@xxxmsn.com> wrote in message

news:Odyft%23LNGH...@TK2MSFTNGP14.phx.gbl...

Dan

unread,
Feb 18, 2006, 3:57:22 PM2/18/06
to
> Are you a cretin ?

Clearly he is both a troll and a cretin. He has also managed to hijack the
thread so how about we stop feeding him. The real pros will start ignoring
this thread if it continues on the path that Ted has steered it.


TedF

unread,
Feb 19, 2006, 12:17:42 AM2/19/06
to
You bunch farts.


"Dan" <D...@NoSpam.com> wrote in message

news:x5CdnTT8mY6uF2re...@comcast.com...

TedF

unread,
Feb 19, 2006, 12:21:14 AM2/19/06
to
> Ted, that fact that they're giving such advices does not mean that they're
> correct.

Then you are very ignorant also.
I have fixed many computers, connection problem,
download problem, secure access problems, page popup
by clearing temp files.
I have fixed many sluggish running windows by clearing the
temp files.
I have many computers error messages by clearing the temp files.


"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:udTVKEMN...@TK2MSFTNGP10.phx.gbl...

Scherbina Vladimir

unread,
Feb 19, 2006, 2:39:54 AM2/19/06
to
"if the world is against you, then something wrong with you..." (c) Freid

--
Vladimir

"TedF" <NoR...@xxxmsn.com> wrote in message

news:umyVBRRN...@TK2MSFTNGP11.phx.gbl...

J French

unread,
Feb 19, 2006, 4:50:26 AM2/19/06
to
On Sat, 18 Feb 2006 11:15:33 -0800, "TedF" <NoR...@xxxmsn.com> wrote:

>I am going to tell you how ignorant you are, you piece of
>sh!t.
>Every minute you call AOL it costs them about a dollar,
>do you think they are that stupid to spend the time emptying
>your temp files, which could take anywhere from 2 to 7 minutes.
>Do you know how much that can add up at the end of the day ?
>No they are not, every move AOL support give has been carefully
>studied and engineered by very advanced OS specialists.
>A dummy like you and DAN don't agree with AOL, that is
>because you are both ignorant and acting like a bunch a$$holes.

Well, well
- in my view only a jerk would use AOL

Back in 1996 I decided to check it out, I installed it, took one look
at it and removed it.

I closed my Compuserve account when they were bought by AOL


J French

unread,
Feb 19, 2006, 4:55:56 AM2/19/06
to
On Sat, 18 Feb 2006 21:29:29 +0200, "Scherbina Vladimir"
<vladimir....@XgmailY.comZ> wrote:

>Ted, that fact that they're giving such advices does not mean that they're
>correct.
>
>Don't believe support(especially women :) ), I worked in a large software
>company and do know what support think about users :)
>
>--
>Vladimir

Good point Vlad

I worked in a City SW House where we had a fair sized support
department.

One day I was down there when I heard them talking to a client about a
problem, although the product was not one of mine, it was clear what
was going on
- yet the bozo could not see it

After that we planted a programmer in the support department (on a
rota) to keep an eye on things.


J French

unread,
Feb 19, 2006, 4:57:49 AM2/19/06
to

Let's have a bit of fun with him

- it's quite interesting seeing how thick he is

TedF

unread,
Feb 19, 2006, 10:43:18 AM2/19/06
to
> Let's have a bit of fun with him
> - it's quite interesting seeing how thick he is

You are a sick man.


"J French" <ere...@nowhere.uk> wrote in message

news:43f840ec...@news.btopenworld.com...

TedF

unread,
Feb 19, 2006, 10:45:35 AM2/19/06
to
>- in my view only a jerk would use AOL

You mean Dan is a jerk ?
I would say only dummies.
Dummies doesn't mean jerks.
A dummy could be a jerk, just like you and Dan.

"J French" <ere...@nowhere.uk> wrote in message

news:43f83ead...@news.btopenworld.com...

J French

unread,
Feb 19, 2006, 11:58:16 AM2/19/06
to
On Sun, 19 Feb 2006 07:45:35 -0800, "TedF" <NoR...@xxxmsn.com> wrote:

>>- in my view only a jerk would use AOL

>You mean Dan is a jerk ?
>I would say only dummies.
>Dummies doesn't mean jerks.
>A dummy could be a jerk, just like you and Dan.

Are you a native English speaker ?
- if not, then apologies for the following :-

<following>

You are an incompetent troll
- you cannot 'inflate' an argument
- you can't even create a circular argument
- you appear ... rather thick

</following>

What I am going to do is feed you, and then abruptly drop you

Note to others:
I have a vindictive streak as well as a messianic one.
- I am not sure which is currently motivating me, but it is some time
since I've had a kick fest with a moron

Stefan Berglund

unread,
Feb 19, 2006, 2:29:14 PM2/19/06
to
On Sun, 19 Feb 2006 07:43:18 -0800, "TedF" <NoR...@xxxmsn.com> wrote:
in <OJs6nsWN...@TK2MSFTNGP14.phx.gbl>

>> Let's have a bit of fun with him
>> - it's quite interesting seeing how thick he is
>
>You are a sick man.

Pot. Kettle. Black.

Dan

unread,
Feb 19, 2006, 3:52:32 PM2/19/06
to
"J French" <ere...@nowhere.uk> wrote in message
news:43f840ec...@news.btopenworld.com...

How about baiting the troll in someone else's thread then?


MikeD

unread,
Feb 19, 2006, 6:45:47 PM2/19/06
to

"Dan" <D...@NoSpam.com> wrote in message
news:dICdnRbxM6sNR2Xe...@comcast.com...

>
> How about baiting the troll in someone else's thread then?


It's not YOUR thread. The newsgroups are public. Basically, it's the entire
world's thread. But I do agree that the best way to deal with trolls (in
general) is to ignore them. If they can't get a reaction from people,
they'll just leave.

--
Mike
Microsoft MVP Visual Basic


Dan

unread,
Feb 19, 2006, 11:42:38 PM2/19/06
to
"MikeD" <nob...@nowhere.edu> wrote in message
news:e4N%23U6aNG...@TK2MSFTNGP14.phx.gbl...

Mike, I wasn't trying to assert that I own USENET in general or this
newsgroup in particular. Sorry if my post came across as harsh. I started
this thread trying to find a solution to a real problem some of my users are
having. Perhaps it would have been better to simply state "let's please
keep the thread on topic".

J French

unread,
Feb 20, 2006, 7:57:59 AM2/20/06
to

Dan, this thread has had it for any serious discussion
- start a new one

Incidentally, if the problem only occurs on 1% of your users systems,
then it is probably some AV / Firewall / Network problem

- especially if the whole machine becomes unresponsive

Bob O`Bob

unread,
Feb 20, 2006, 8:01:20 PM2/20/06
to
TedF wrote:

> Reply-To: "TedF" <NoR...@xxxxmsn.com>
> From: "TedF" <NoR...@xxxmsn.com>
> References: <pMidnTD2Z95...@comcast.com> <uCIlZEpM...@TK2MSFTNGP11.phx.gbl> <_rqdnRDn_7R...@comcast.com> <OGV0cfrM...@TK2MSFTNGP14.phx.gbl> <utzncOtM...@TK2MSFTNGP09.phx.gbl> <uz66qetM...@TK2MSFTNGP15.phx.gbl>
<uhW8wOwM...@TK2MSFTNGP11.phx.gbl> <i-ednUTzMZF...@comcast.com> <er#7r43MG...@TK2MSFTNGP09.phx.gbl> <4sSdnVYyF9P...@comcast.com> <ufwwUx9M...@TK2MSFTNGP10.phx.gbl> <43f602f4...@news.btopenworld.com>
<u#azCl$MGHA...@tk2msftngp13.phx.gbl> <43f6edca...@news.btopenworld.com>
> Subject: Re: System locks up until InternetOpenURL call completes
> Date: Sat, 18 Feb 2006 09:05:20 -0800
> Lines: 27
> X-Priority: 3
> X-MSMail-Priority: Normal
> X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
> X-RFC2646: Format=Flowed; Original
> Message-ID: <euTrz1KN...@TK2MSFTNGP15.phx.gbl>
> Newsgroups: microsoft.public.inetsdk.programming.wininet,microsoft.public.vb.general.discussion
> NNTP-Posting-Host: pool-71-105-86-157.lsanca.dsl-w.verizon.net 71.105.86.157


> There are two types of programmers.
> 1) Knows Windows or operating system very well, then became a programmer.
> 2) Became a programmer with very little Windows knowledge.
>
> The first would be a pro, the second will limp and needs
> to be directed all the way through.
> You and Dan fall in the second category, you still got lots to learn yet.
> And I know many like you ad Dan.

Hilarious.
I'm quoting mostly so you can't ever get all traces removed from google, etc.

Bob
(turned pro long before Micro-Soft ever heard of a GUI)
--

Bob O`Bob

unread,
Feb 20, 2006, 8:03:17 PM2/20/06
to


Objection: "man" assumes numerous facts not in evidence.

TedF

unread,
Feb 21, 2006, 11:07:54 AM2/21/06
to
>Perhaps it would have been better to simply state "let's please keep the
>thread on topic".

I thought Billy boy has the thickest head there is.


"Dan" <D...@NoSpam.com> wrote in message

news:54ydnd6WG-Mi1WTe...@comcast.com...

J French

unread,
Feb 21, 2006, 11:51:21 AM2/21/06
to
On Mon, 20 Feb 2006 17:01:20 -0800, Bob O`Bob
<filt...@yahoogroups.com> wrote:

>TedF wrote:
<snip>

>> There are two types of programmers.
>> 1) Knows Windows or operating system very well, then became a programmer.
>> 2) Became a programmer with very little Windows knowledge.

>> The first would be a pro, the second will limp and needs
>> to be directed all the way through.
>> You and Dan fall in the second category, you still got lots to learn yet.
>> And I know many like you ad Dan.


>Hilarious.
>I'm quoting mostly so you can't ever get all traces removed from google, etc.

Can one know an OS well without being a coder ?

Normally coders dig into the language, then the OS

- is TedF some sort of support person who has learnt JavaScript ?

C'mon Troll - nice bait ... come and get it .. the thread is yours


J French

unread,
Feb 21, 2006, 12:52:09 PM2/21/06
to
On Tue, 21 Feb 2006 08:07:54 -0800, "TedF" <NoR...@xxxmsn.com> wrote:

>>Perhaps it would have been better to simply state "let's please keep the
>>thread on topic".

>I thought Billy boy has the thickest head there is.

I once saw a printout of Billy Boy's code

Back around 1983

It was a CP/M implementation of MS BASIC with some tweaks for a well
known Jap company.


Scherbina Vladimir

unread,
Feb 21, 2006, 1:22:18 PM2/21/06
to
I even did not exist in 1983 :)

--
Vladimir

"J French" <ere...@nowhere.uk> wrote in message

news:43fb50f1...@news.btopenworld.com...

Paul Baker

unread,
Feb 21, 2006, 2:35:31 PM2/21/06
to
I was 9. That was a couple of years before I started doing any programming
of any kind, I think :)

"Scherbina Vladimir" <vladimir....@XgmailY.comZ> wrote in message

news:uVUPaMx...@TK2MSFTNGP10.phx.gbl...

Paul Baker

unread,
Feb 21, 2006, 2:38:06 PM2/21/06
to
I am a programmer who routinely digs into the details of the OS. Without a
good knowledge of the OS, you're never going to be able to write effective
software.

Sometimes, canned components provided by the development tools or third
parties do not work as you would like or miss out on advanced features of
Windows. So, I go directly to MSDN Online Library and find out what Windows
is capable of doing. If the canned component doesn't allow it, then it's the
canned component's fault!

Paul

"J French" <ere...@nowhere.uk> wrote in message

news:43fb4445...@news.btopenworld.com...

0 new messages