Forum: C++ Oct 14th, 2007 |
| Replies: 0 Views: 546 I am wondering if it is possible at all to do the following things with modal dialog:
I want some kind of task scheduler to automatically open dialog and execute the code, which is envoked usually... |
Forum: Viruses, Spyware and other Nasties May 29th, 2007 |
| Replies: 12 Views: 7,287 i looked at the dll files in Process Explorer and among other things i saw few index.dat files which gave me an idea. i went into the safe mode and deleted all index.dat files related to iexplore and... |
Forum: Viruses, Spyware and other Nasties May 28th, 2007 |
| Replies: 12 Views: 7,287 exactly, it's strange. it's not a virus or spyware, at least i can't detect any and it's still at 98% even after the page is loaded. i guess i would use firefox from now on, so much for microsoft ...... |
Forum: Viruses, Spyware and other Nasties May 28th, 2007 |
| Replies: 12 Views: 7,287 after having a closer look at TCPView i have noticed that IE does use TCP protocol when establishing connection to the site, but after connection is established it drops TCP and uses only UDP
here... |
Forum: Viruses, Spyware and other Nasties May 28th, 2007 |
| Replies: 12 Views: 7,287 it is using UDP not TCP
firefox is using TCP though. is it good or bad?
here is snapshot of TCPView
alg.exe:1996 TCP 127.0.0.1:1026 0.0.0.0:0 LISTENING ... |
Forum: Viruses, Spyware and other Nasties May 28th, 2007 |
| Replies: 12 Views: 7,287 I have run LSPFix but IE's still at 98% cpu time. I have noticed that it yeilds to cpu intense apps like BitComet, but given the chance it takes all the cpu time and runs at 98%. I have completed... |
Forum: Viruses, Spyware and other Nasties May 27th, 2007 |
| Replies: 12 Views: 7,287 i have search the forums and although this problem is nothing new, i have not found any solution to it. If anybody knows the solution please reply.
the problem started with ie6 and i have... |
Forum: ASP Oct 16th, 2005 |
| Replies: 1 Views: 3,042 I want to capure events sent by the standard download message box
(dialog box?). That is, I want to know if download was initiated ("Save")
or cancelled ("Cancel"). Is there any way to capture... |
Forum: ASP Oct 7th, 2005 |
| Replies: 5 Views: 4,184 It seems like my hosting server does not support
inet activex control for whatever reason.
Is there any alternative to the inet control
to retrieve the contents of url I'm looking for? |
Forum: ASP Sep 27th, 2005 |
| Replies: 1 Views: 5,177 Ever since I added InetCtls.Inet control to
my ASP pages I started experience the following problem:
After a little while the pages containing this control
can't open and hang.
When I go to... |
Forum: C Aug 21st, 2005 |
| Replies: 3 Views: 4,973 I found out that if you use:
CreateFile(szDestName.GetBuffer(255), 0, FILE_SHARE_WRITE | FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
instead of:
CreateFile(szDestName.GetBuffer(255),... |
Forum: C Aug 20th, 2005 |
| Replies: 3 Views: 4,973 Here the code where I'm trying to set last-accessed attribute of the file to some value.
hFile = CreateFile(szDestName.GetBuffer(255), GENERIC_WRITE | GENERIC_READ, FILE_SHARE_WRITE |... |
Forum: C Aug 19th, 2005 |
| Replies: 1 Views: 2,102 to protect the shareware program
how do i detect that system time/date has been changed or reset
i want to stop my shareware program if i detect that the clock been
reset. how do i do that? |
Forum: JavaScript / DHTML / AJAX Jun 2nd, 2005 |
| Replies: 6 Views: 9,274 this seems to be a very simple problem, but i just can't get it done.
how do i set a variable which is to display url response?
let's say my request is "http://domain.com/datavalue.htm".
the... |
Forum: ASP Jun 2nd, 2005 |
| Replies: 2 Views: 10,863 this seems to be a very simple problem, but i just can't get it done.
how do i set a variable which is to display url response?
let's say my request is "http://domain.com/datavalue.htm".
the... |
Forum: C Jan 15th, 2005 |
| Replies: 2 Views: 3,613 i want to delete part of a binary file, let's say 12 byte record somewhere in the middle of the file.
i can think of only one thing:
- put the file pointer on the spot
- shuffle all the following... |