At work we de-magnetise our screwdrivers by banging them several times onto hard surface. Might not be good for your monitor though!
A TV repair technician should be able to fix the problem with a de-magnetiser (which sends out random magnetic waves).
Search found 93 matches
- Sun Jul 24, 2005 5:20 pm
- Forum: Off Topic
- Topic: Magnetic monitor
- Replies: 4
- Views: 1928
- Sun Jul 24, 2005 5:02 pm
- Forum: Tricks 'n' Tips
- Topic: TV-Noise
- Replies: 26
- Views: 9966
- Sat Jul 23, 2005 1:51 pm
- Forum: Off Topic
- Topic: Good Freeware Stuff
- Replies: 669
- Views: 684485
Great thread!
Turbo Navigator: A file manager for Windows 95, 98,98SE, ME, NT 4.0, 2000, XP
http://www.woundedmoon.org/win32/turbonavigator.html
Turbo Navigator: A file manager for Windows 95, 98,98SE, ME, NT 4.0, 2000, XP
http://www.woundedmoon.org/win32/turbonavigator.html
- Sat Jul 23, 2005 11:26 am
- Forum: Off Topic
- Topic: Men vs. Women
- Replies: 8
- Views: 2528
- Sun Dec 26, 2004 9:44 am
- Forum: Off Topic
- Topic: B-li-tz Max is out!
- Replies: 82
- Views: 26291
- Fri Dec 24, 2004 11:13 pm
- Forum: Off Topic
- Topic: B-li-tz Max is out!
- Replies: 82
- Views: 26291
- Fri Dec 24, 2004 7:35 pm
- Forum: Off Topic
- Topic: B-li-tz Max is out!
- Replies: 82
- Views: 26291
- Sun Aug 15, 2004 8:02 am
- Forum: Coding Questions
- Topic: Transparent image
- Replies: 2
- Views: 1390
- Sun Aug 15, 2004 7:36 am
- Forum: Coding Questions
- Topic: Stretched image - How do I get around this problem?
- Replies: 4
- Views: 1781
- Sat Aug 14, 2004 4:55 pm
- Forum: Coding Questions
- Topic: Stretched image - How do I get around this problem?
- Replies: 4
- Views: 1781
Stretched image - How do I get around this problem?
I want to draw a stretched image into a window or image gadget.
I'm using DrawImages extra NeWidth/NeHeight parameters but I'm getting an anti-alias type of effect appearing in the image:
http://homepage.ntlworld.com/config/img/stretched.png
The circle needs to show without the anti-alias ...
I'm using DrawImages extra NeWidth/NeHeight parameters but I'm getting an anti-alias type of effect appearing in the image:
http://homepage.ntlworld.com/config/img/stretched.png
The circle needs to show without the anti-alias ...
- Sun Aug 01, 2004 3:24 pm
- Forum: Off Topic
- Topic: Imperial or Metric system ?
- Replies: 10
- Views: 3518
- Tue Jul 20, 2004 7:47 pm
- Forum: Off Topic
- Topic: Get rid of Windows Bloat (XP Home/Pro Win2K)
- Replies: 13
- Views: 8734
Have you guys tried http://www.litepc.com/xplite.html ?
Strip out all sorts of unwanted features from XP.
Strip out all sorts of unwanted features from XP.
- Sun Jul 18, 2004 8:23 am
- Forum: Off Topic
- Topic: Advice wanted: Recording audio direct to CD
- Replies: 2
- Views: 1560
- Fri Jul 16, 2004 5:46 am
- Forum: Off Topic
- Topic: Advice wanted: Recording audio direct to CD
- Replies: 2
- Views: 1560
Advice wanted: Recording audio direct to CD
Hi folks,
Can any of you recommend a good (free/cheap) application which allows the recording of live audio direct to CD?
I have a work collegue who wishes to do some live mixing and save the results onto 79 minute CD-R discs.
At the moment he uses CoolEdit to record the mix, save as MP3, then ...
Can any of you recommend a good (free/cheap) application which allows the recording of live audio direct to CD?
I have a work collegue who wishes to do some live mixing and save the results onto 79 minute CD-R discs.
At the moment he uses CoolEdit to record the mix, save as MP3, then ...
- Sun Jul 11, 2004 11:11 am
- Forum: Feature Requests and Wishlists
- Topic: [Implemented] Optional Parameters in Procedures
- Replies: 14
- Views: 3673
This is how Blitz does it:
Here, the color parameter is set to 0 by default unless the programmer decides to pass an alternative value:
Code: Select all
Procedure Test(name$,x,y,color=0)
Code: Select all
Test "poo",10,20 ; color parameter is 0
Code: Select all
Test "poo",10,20,1234 ; the color parameter is 1234