F

Here is where the computer is not just a "stupid machine"
Scroll Up
start.. image1
 
image2
 
image3
 
image4
 
image5
 
image6
 
image7
 
image8
 
image9
 
image10
 
end.
Scroll Down

// this tells jquery to run the function below once the DOM is ready $(document).ready(function() { // choose text for the show/hide link var showText="Show the hidden text"; var hideText="Hide the text"; // create the toggle link $("#hide_this").before("

"+showText+""); // hide the content $('#hide_this').hide(); // capture clicks on the newly created link $('a#toggle_link').click(function() { // change the link text if ($('a#toggle_link').text()==showText) { $('a#toggle_link').text(hideText); } else { $('a#toggle_link').text(showText); } // toggle the display $('#hide_this').toggle('slow'); // return false so any link destination is not followed return false; }); });

Can I have more than one monitor on my Windows 98 machine?

If you have ever been to the trading floor of a large brokerage company, you have seen some of the most advanced workstations around. Traders often use UNIX or NT workstations with two or even four monitors so they can display dozens of windows simultaneously. Multiple monitors have also been possible on the Macintosh for several years, and are often used by artists and editors to give the computer more screen real estate. You might want to have multiple monitors for the same reason that you might like to work at a big table sometimes. For example, when you are doing your taxes or working on a big science fair project, it is nice to have several books and four stacks of paper open simultaneously. It works the same way on the computer. For certain tasks, it is helpful to have lots of open windows that are all visible simultaneously. This is especially true for computer programmers working on large projects, artists and editors cutting and pasting from multiple sources, etc.
It turns out that Windows 98 comes with multiple monitor support that allows two (or more) monitors to be used simultaneously. To try this feature you need a second graphics card and (obviously…) a second monitor. It makes things more symmetric if the two monitors and cards are the same, but they don't have to be. You can either place the monitors side by side to create a wide desktop, or you can place one on top of the other. With three or more you can arrange them almost any way you like.

0 comments

Post a Comment

Followers