Forum: Web Browsers Dec 13th, 2004 |
| Replies: 5 Views: 3,138 Thanks for taking all the trouble. Below is the log file from hijackthis:
Logfile of HijackThis v1.98.2
Scan saved at 12:53:39 PM, on 12/13/2004
Platform: Windows XP SP2 (WinNT 5.01.2600)
MSIE:... |
Forum: Web Browsers Dec 13th, 2004 |
| Replies: 5 Views: 3,138 Hi, thanks a lot for you suggestion.
Actually, I'm just wondering why I can, by clearing history, remove all the other websites for autocomplete; but, I canNOT do the same for this website -... |
Forum: Web Browsers Dec 13th, 2004 |
| Replies: 5 Views: 3,138 Hi, thanks in advance for any advice and guide.
I visited the site http://www.weberdev.com/get_example-3880.html after a google search. Then the site weberdev.com seems to stick to my IE history,... |
Forum: C Dec 7th, 2004 |
| Replies: 8 Views: 19,935 I think the question is how one make use of the information at hand, regardless of the source. In this case, who care whether it is a book or an online tutorial? |
Forum: Legacy and Other Languages Dec 6th, 2004 |
| Replies: 4 Views: 6,142 Hi, don't quite understand what you mean by it is not working with Windows XP. It should work in a DOS environent which you can simulate in Windows XP. Of course, in any case, QBasic won't give you a... |
Forum: Legacy and Other Languages Dec 5th, 2004 |
| Replies: 4 Views: 5,437 Just curious: I thought we can actually edit a text file in Quick BASIC? |
Forum: Legacy and Other Languages Dec 5th, 2004 |
| Replies: 4 Views: 6,142 You can try
http://www.qbcafe.net/english/index.html?dl_pages/compiler/index.html~qbc_main |
Forum: C++ Dec 4th, 2004 |
| Replies: 5 Views: 6,404 Hi, just wondering what complier you're using. I compiled your code with Borland C++ 5.5.1 and obtained the following error messages.
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland... |
Forum: C++ Nov 28th, 2004 |
| Replies: 6 Views: 4,416 No, I mean insert the following code into yours after the data are entered:
MAX = MIN = data[0];
for (counter = 1; counter < 8; counter++)
{
if (data[counter]>MAX) MAX = data[counter];
... |
Forum: Legacy and Other Languages Nov 28th, 2004 |
| Replies: 8 Views: 30,240 Here you can find one (actually a number of different versions):
http://www.qbcafe.net/english/index.html?dl_pages/compiler/index.html~qbc_main |
Forum: Legacy and Other Languages Nov 28th, 2004 |
| Replies: 15 Views: 37,279 For BASIC fans, you might want to take a look at
http://www.qbcafe.net/english/index.html?dl_pages/compiler/index.html~qbc_main |
Forum: C++ Nov 28th, 2004 |
| Replies: 6 Views: 4,416 I think you can do the following:
Define MAX as the maximum of the scores. First set it as equal to the first element of the array of scores. Then compare successively MAX with the elements of the... |