Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 10-04-2005, 01:50 AM   #1 (permalink)
Sky Piercer
 
CSflim's Avatar
 
Location: Ireland
Windows 98: "Run program in 256 Color Mode"

In Windows XP you can right click on an application shortcut and tick a "run program in 256 color mode" box. This is very useful if you run a lot of software which is a few years old.
I am currently setting up a few Win 98 machines, and would like a similar feature. Basically, I don't want to have to have the users of these machines (who wouldn't be very tech savy) to be constantly changing system settings just to run software. Is there a way I can set Windows 98 to automatically switch to 256 colors when a particular application is launched, and then change it back to 32-bit when the application is closed?
Thanks.
__________________
CSflim is offline  
Old 10-05-2005, 11:23 AM   #2 (permalink)
Sky Piercer
 
CSflim's Avatar
 
Location: Ireland
Ok well I managed to sort it out myself. For anybody curious, here is what I did.

I downloaded a nifty little tool called NirCmd which is a command line tool which lets you do lots of useful things to your windows settings. For each 256 color mode program I created a batch file which used NirCmd to switch the color depth down to 256, calls the applications exe, and then switches the color depth back up.

This NirCmd seems like a very cool, useful program. Might be worth checking out.
__________________
CSflim is offline  
Old 10-05-2005, 01:37 PM   #3 (permalink)
The Computer Kid :D
 
Location: 127.0.0.1
Could you post the source for the batchfile?
MikeSty is offline  
Old 10-05-2005, 03:01 PM   #4 (permalink)
Sky Piercer
 
CSflim's Avatar
 
Location: Ireland
@echo off
nircmd setdisplay 800 600 8
cd "C:\The Working Directory\"
"C:\Path To The Program.exe"
nircmd setdisplay 800 600 24
__________________
CSflim is offline  
Old 10-05-2005, 03:23 PM   #5 (permalink)
The Computer Kid :D
 
Location: 127.0.0.1
nice work man
MikeSty is offline  
Old 10-05-2005, 03:54 PM   #6 (permalink)
Very Insignificant Pawn
 
Location: Amsterdam, NL
Thank you CSflim for the followup.
Very small and flexable utility. Appearently free to use!
flat5 is offline  
 

Tags
256, color, mode, program, run, windows


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 11:17 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76