Sharesmagazine
 Home   Log In   Register   Our Services   My Account   Contact   Help 
 Stockwatch   Level 2   Portfolio   Charts   Share Price   Awards   Market Scan   Videos   Broker Notes   Director Deals   Traders' Room 
 Funds   Trades   Terminal   Alerts   Heatmaps   News   Indices   Forward Diary   Forex Prices   Shares Magazine   Investors' Room 
 CFDs   Shares   SIPPs   ISAs   Forex   ETFs   Comparison Tables   Spread Betting 
You are NOT currently logged in
 
Register now or login to post to this thread.

PC & MAC CLINIC - On line problem solving. (CPU)     

Crocodile - 16 Dec 2002 03:59

skinny - 03 Mar 2010 07:53 - 8893 of 11003

Stick it in a condom - they normally 'contain' the data.

Haystack - 03 Mar 2010 08:01 - 8894 of 11003

Put all of your data into an email and send it attached to a bomb threat or some sort of malicious email threatening a prominent figure to the police or a government department. They will almost certainly keep it for close to forever. The trouble is that you might have trouble referring to it and extracting the data at a later date.

zzaxx99 - 03 Mar 2010 09:57 - 8895 of 11003

On one of my PCs, Firefox got a number of problems: (a) has stopped keeping me logged-in to websites where I've saved login details, (b) takes an absolute age to open the monitor page here.

I've tried deleting all cookies, and this hasn't solved the problem.

Any ideas?

ThePublisher - 03 Mar 2010 11:59 - 8896 of 11003

"a government department. They will almost certainly keep it for close to forever"

Or leave it on a train !!

TP

ChuffChuffChaser - 03 Mar 2010 14:18 - 8897 of 11003

I am wanting to change my Dell laptop with 2mb memory for something with 4mb.
An Acer 5732Z looks about right for my needs. Does anyone have any thoughts about the Acer?

One issue I have with the Dell is that I cannot run MS Access from MS Office Pro 97, (yes it's old but why update when the old one does what's needed?). This seems to be due to there not being enough memory to run it.

Also, will an ancient version of Office run under Win7?

Many thanks

iiwarm - 03 Mar 2010 15:52 - 8898 of 11003

CCC
am running office 97 pro on Win 7 - no probs.
Where there is a prob with an old application, certainly Micro, possibly others 7 sometimes offers to search for a tweak

Optimist - 03 Mar 2010 16:07 - 8899 of 11003

CCC

The only Acer that I have experience of is the Aprire notebook which is cheap and cheerful and I'm very pleased with it.

I am surprised that any hardware problem is stopping Access running, and it will certainly not be because of not enough memory - 2GB was unheard of in 1997.

I have installed Officce 2000 on a Win 7 system with no problems but if '97 does have problems, you could always use XP mode which should resolve ithem. To do this, you need to have Win 7 Business or Ultimate (in any case it's not worth getting anything else) and have a proccessor that supports virtualisation.

Also, if you are going for 4GB RAM, you must use a 64bit OS to take advantage of it. This could have problems with old software.

Instead of buying a new laptop, why not download Microsoft Virtual PC and install a clean virtual XP system. Access may work on that.

jonuk76 - 03 Mar 2010 16:09 - 8900 of 11003

Windows 7 Professional has XP Mode that should run most old software without problems. Its basically a full copy of XP that runs under Windows 7.

ChuffChuffChaser - 03 Mar 2010 19:38 - 8901 of 11003

Thanks for the replies folks. The video takes some of the 2gb RAM on the Dell. On my desktop I used to have 2gb but there is a separate video card, and Access had no problems there.

Another aspect is that I'll use a new laptop to replace my desktop which I've had a few years now

The Acer comes with Win 7 Home Premium, which according to the blurb is 64bit.

I'll have a look in to the Virtual PC route.

Thanks again

CCC

Optimist - 03 Mar 2010 20:17 - 8902 of 11003

Don't think about a laptop without Win 7 Business or Ultimate.

You need that for both XP Mode and Bitlocker.

ChuffChuffChaser - 03 Mar 2010 20:30 - 8903 of 11003

Thanks Optimist - any idea what the likely extra cost for the upgrade to Ultimate might be on a new laptop?

CCC

Optimist - 03 Mar 2010 21:13 - 8904 of 11003

The OEM version retails at around 150. I recently bought a machine from Dell and the upgrade from Home Premium to Ultimate was 85.

You used to be able to buy the Ultimate leys on Ebay for under 20 but of course there is the risk that they may stop working.

jeffmack - 05 Mar 2010 20:23 - 8905 of 11003

Can you install programs on a removable disc and then use them on pc, or does each program need to write something to the pc memory.

Optimist - 05 Mar 2010 21:09 - 8906 of 11003

Jeff

Most Windows programs require installing to the PC hard disk and although you could install to a removable drive, they will still require some bits on the C Drive so you won't be able to use the drive on another machine.

Some programs are designed to be portable and will run entirely from a USB drive. One of the best free sources is PortableApps.com, but there are others.

jeffmack - 05 Mar 2010 21:17 - 8907 of 11003

As I thought Opto.
Cheers

Haystack - 15 Mar 2010 07:51 - 8908 of 11003

I do disapprove of being forced to choose a browser by the European courts. I used to use Firefox and others occasionally. I have now reverted to just Internet Explorer in protest. When will Macs be forced to do the same thing instead of getting Safari preloaded.

hilary - 20 Mar 2010 11:13 - 8909 of 11003

On the off-chance, are there any PHP whizzes here?

I'm really struggling with a script and wonder if somebody can pinpoint where I'm going wrong. I suspect it's in the filepath (it dies when the debug isn't commented out), but I'm also not sure about those headers as it only wants to download the first 512 bytes when I bypass the debug.

< ?php
// Don't timeout when downloading large files
@ignore_user_abort();
@set_time_limit(0);

$filename = "myfile.exe";

send_download($filename );

// -- function

function send_download($filename){
$file_path = 'http://www.example.com/my/path/' . $filename;
$file_size=@filesize($file_path);

// -- let's try to debug
// if(!file_exists($file_path)) { die("File wasnt set or it didnt exist"); }

header("Content-Type: application/x-msdownload");
// header("Content-type: application/force-download");
header("Content-disposition: attachment; filename=$filename");
header("Content-Length: $file_size");

header("Pragma: no-cache");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Accept-Ranges: bytes");

readfile($file_path);
exit;
}

?>

jeffmack - 20 Mar 2010 17:29 - 8910 of 11003

I need to print a number of docs on header paper and was wondering what uses the least ink.

To print directly onto the headed paper
or
To photocopy onto the headed paper

or is it the same?

Haystack - 20 Mar 2010 17:49 - 8911 of 11003

If you are talking about using your printer as a copier/printer it won't print the docs as text and be that crisp. It will print it as a picture image. You might be better printing one copy onto a letterhead and then photocopying at a shop, but that method might depend on whether you have a coloured heading.

jeffmack - 20 Mar 2010 19:02 - 8912 of 11003

Yes the heading is coloured and I just had 1000 letterheads printed.
Register now or login to post to this thread.