How to produce your own compilations of FM-Towns games (V /06/17)

Size: px
Start display at page:

Download "How to produce your own compilations of FM-Towns games (V /06/17)"

Transcription

1 How to produce your own compilations of FM-Towns games (V /06/17) Introduction You have one CD-ROM for each game, the whole collection takes too much room? Here is the solution. This article explains how to compile your own CD-ROM, full of games, taking the examples of the FM-Towns versions of The Secret of Monkey Island, Monkey Island 2 : LeChuck s Revenge and Zak McKracken and the Alien Mindbenders. You will learn how to copy files, how to produce your own menu, how to keep a TownsOS CD-ROM booting even if it has been modified or created with a ISO file editor, and finally you will know how to burn all this stuff to a blank CD-ROM, with the audio tracks! Warning! This is in no case a method for piracy! You can do what you want with FM-Towns games only if you OWN them. I myself bought some (only adventure games from LucasFilm / LucasArts) on e-bay. I found interesting to decipher how the whole thing works (didn t catch it all yet), and plan in the future to know a little more. So : don t contact me about illegal matters. You are warned. V2.0 by Parazythum /06/17 Page 1 / 25

2 Table of contents How to produce your own compilations of FM-Towns games (V /06/16) 1 Introduction 1 Warning! 1 Table of contents 2 Structure of a TownsOS booting CD-ROM 3 It s a bird It s a plane No it s an ISO CD-ROM! 3 Boot Sequence 4 The FM-Files 7 What is needed in this article? 10 First Method to produce a booting ISO image file 11 The booting CD-ROM itself 11 Extracting the needed game files 13 Editing the needed files 14 Creating the final ISO image 14 Second Method to Produce your booting ISO image 16 Creating the IPL dump 16 Let s create the ISO file! 17 The boot sector (IPL) 20 Adding the audio tracks 21 Extracting the original audio tracks 21 Make a.cue file 23 Burn your CD-ROM! 24 The end 25 Nobody s perfect 25 Big thanks to : 25 Useful web links : 25 V2.0 by Parazythum /06/17 Page 2 / 25

3 Structure of a TownsOS booting CD-ROM It s a bird It s a plane No it s an ISO CD-ROM! The CD-ROM is in the good ol ISO 9660 format Here is an example : Zak McKracken and the Alien Mindbenders. You can see here that the CD-ROM structure complies with the basic type of ISO 9660 : no Joliet format, no UDF, ISO Level 1 This image is really interesting. You can see that the labels have been edited, giving out different informations. Sometimes, even the Copyright File is filled. No matter what you modify here, the CD-ROM will boot. Just don t leave a blank field for the Volume Label! V2.0 by Parazythum /06/17 Page 3 / 25

4 Boot Sequence This is what you see first when you power on the FM-Towns console. And now the splash screen of TownsOS Version 1.1 Level 30. This is the system we ll be studying. Just a word about the ROMs. The guys who wrote the program to dump the ROMs named them : FMT_DIC.ROM : DIC like dictionary? FMT_DOS.ROM : some DOS files here, seen later FMT_F20.ROM : contains the 20x20 fonts FMT_FNT.ROM : contains the regular fonts FMT_SYS.ROM : I think this the heart of the system BIOS (graphic, sound routines, ) File entries in the FMT_DOS ROM Looks like MSDOS.SYS for me V2.0 by Parazythum /06/17 Page 4 / 25

5 Here are the files you can encounter on your FM-Towns CD-ROM game, in order to be able to boot and get a beautiful menu. There are different versions of MS-DOS for FM-Towns : regular versions and the versions known as DOS/V, enabling to display Kanji characters. We can see here that it strangely reminds another system the MS-DOS structure! There are the system files (IO.SYS, TBIOS.SYS ) and even the AUTOEXEC.BAT / CONFIG.SYS duo. The file extensions are COM, EXE, BAT, BIN exactly as a booting MS-DOS 6 or Windows 98 boot file structure. There are.exp files, though. They always run by the means of an executable : run386.exe. It is a special way to launch programs in protected 32 bits mode, like CWSDPMI under MS-DOS for PC. In fact, only the following files are really required in order to boot : IO.SYS TBIOS.SYS TBIOS.BIN CONFIG.SYS AUTOEXEC.BAT RUN386.EXE The IPL sector of the CD-ROM is read. It contains, at address 20, the sector number where stands the first system file to be executed : IO.SYS. IO.SYS needs to be first in the file structure. V2.0 by Parazythum /06/17 Page 5 / 25

6 Going to sector 0x15 (21 in decimal), we can find the content of IO.SYS. Then CONFIG.SYS is executed line by line (see the example on the right). It launches TBIOS. A reference to COMMAND.COM is present, but this file is not available on the CD-ROM! Strange? Indeed. SHELL=C:\COMMAND.COM C:\ /P DEVICE=TBIOS.SYS /TBIOS.BIN BUFFERS=8 FILES=20 Now it s bit tricky. It seems that some files in the ROM are decompressed or copied in RAM, using a virtual drive C: There are system files, utilities and drivers (MSDOS.SYS, COMMAND.COM and MSCDEX.EXE for example). A driver for the CD-ROM drive is made permanent, mounting the Q: drive. It happens only if we boot from the CD-ROM drive. Next to be processed line by line : AUTOEXEC.BAT CONTROL.EXE is launched. If it fails, the CD-ROM drive R: is mounted (hard drive booting), then CONTROL.EXE is executed again. It runs the menu TMENU.EXP. This extract from CONTROL.EXE shows that TMENU.EXP is launched (it is the menu with the icons). T_OAK2.exe is maybe a CD-ROM driver. set comspec=c:\command.com :START CONTROL if errorlevel 1 GOTO OAK2ERR GOTO END :OAK2ERR DICUTY + * OAK2USR.DIC GOTO START :END Q:\DRIVE_R.IMG R:\RUN386.exe - Maxibuf 32 :\TMENU T_OAK2.exe The TMENU.EXP file is an executable that seems (HexEdited) to contain several parts : code and data (for example a mouse driver). It accesses several TMENU.XXX other files. V2.0 by Parazythum /06/17 Page 6 / 25

7 The FM-Files In these examples, we re using my Monkey Island 1+2 compilation files. Let s see what the files are here for. We have already seen some of them, for example system files and drivers. TBIOS.BIN TBIOS.SYS DRIVE_R.IMG DICUTY.COM OAK2USR.DIC RUN386.EXE DOG.COM TMENU.IF2 TMENU.INF TMENU.ICN Provide the TownsOS functions like graphic and sound routines Not exactly sure. Seems to be transferred in the Sprite RAM. It is supposed to cache RUN386.EXE. Not exactly sure either. Seems that has to do with input and keyboard mapping. The 32 bits mode program launcher. A tiny utility, don t know what it is. I really don t know what it s here for! I ve been told it could contain file associations. Aaaahhhh Here is an interesting file! It contains the different entries available on the menu. There is the icon name and file name associated and interesting numbers. Oooohhhh Edit it with a hexadecimal viewer, it is obviously full of drawings. The extension : ICN. ICN, pictures Icons! Yep, this is it. It s a bit large, though. V2.0 by Parazythum /06/17 Page 7 / 25

8 The only files we have to modify, for our purpose, are the menu-related ones. TMENU.INF Edit TMENU.INF with Hexedit. Each entry is obviously represented by 128 bytes. We have, in red, the file name to launch (in green too, but with the \ that indicates root ) In blue is the icon text. So we can guess that Monkey1 + M1K.BAT is there to launch the game Monkey Island 1 in Kanji (Japanese text). In yellow 5800 in hexadecimal? What could it mean? We ll see that later. q: cd \mk \run386 monkeyk There we have the content of the M1K.BAT It runs on the Q: drive the MONKEYK.EXP file. Q is the CD-ROM drive letter when booting for a CD-ROM drive. TMENU.ICN I show this example because the borders are delimited. I have drawn blue dots showing the pixel scale. It is an icon extracted from my compilation. We can see that it is a 32x32 pixels black and white icon. We can guess that the icons are defined with one bit per pixel. Black=0, White=1 (the entire interface is black and white). We could try to extract some data from the TMENU.ICN file, with (32x32 pixels) / 8 = 128 bytes V2.0 by Parazythum /06/17 Page 8 / 25

9 The file is really big! There are many zeros, so it s easy to find a candidate for iconization. Look here : 128 bytes, we are on the right track The result in binary notation, I have cut the rows to have 32 lines. There seems to be something showing The zeros and ones have been replaced by tiny squares. This is exactly what we were looking for : see this icon extracted from the menu. Remember the data in the yellow square? It was 5800 in this case, and 5900 for the next one, M1E.BAT. Look at the starting address of the data extracted before (on the left pane) : 5900, exactly like what was defined in TMENU.INF for the M1E.BAT item! So : the TMENU.INF contains entries for the files to launch, with an address pointing inside the TMENU.ICN file for the icon data. We can see now that we have all the informations to build our own icons menu, available when a CD- ROM boots. You just have to be more hexadecimal-compliant! I did not find it myself, but don t forget that the system icons are defined BEFORE the 4000 address, this is where you can alter them. You can add your own icons after 4000! V2.0 by Parazythum /06/17 Page 9 / 25

10 What is needed in this article? There are several tools to obtain, in order to burn a FM-Towns games compilation : A virtual CDROM drive, able to mount virtual CD-ROMs using images in ISO, BIN, CDD (etc) format. I like Alcohol 52% or 120%. You can use the trial version, simple CD-ROM images mounting it is not limited. An ISO image editor, capable of reallocating an existing file inside the image. I have tried several utilities, and my choice goes for Magic ISO, which is very complete. It can also read diskette images in varied formats. The trial version is limited to 300 MB image files, which will be enough for our purpose. In this article, version 4.9 build 0151 is used. A CD-ROM burning program. Nero Burning ROM is a good choice for what we have to do. The trial version is only limited in time. A cue-file maker from ISO images and audio tracks / audio files. The tiny tool Sega Cue Maker is very appropriate for this task. It is freeware. A hexadecimal editor. I like HexEdit, simple to use, efficient. It is also freeware. A diskette editor named EditDisk (the program is labelled DiskExplorer though), that is able to read the formats used by your emulator, or a real FM-Towns with a working diskette drive (it is a flaw in many consoles, the diskette drive is the first part to die). And of course, it is also free. A little program that reads the FM-Towns CD-ROM IPL track, and can write it back to an ISO image. It is called simply IPLR and IPL. A MS-DOS boot diskette for FM-Towns (virtual or real, depends if you have a real console or not) Skills : none unexplained here, just a little practice :) It is better, though, to know a little about binary and hexadecimal numbers, bytes, burning, etc. V2.0 by Parazythum /06/17 Page 10 / 25

11 First Method to produce a booting ISO image file The booting CD-ROM itself This will be the base of our future CD-ROM compilation. Take a booting CD- ROM from a game, in this case I will use Zac McKracken. Launch Alcohol (52% or 120%). Select on the left menu Image Making Wizard. Select the CD-ROM drive in which you inserted your Zak CD- ROM, and leave the options as seen on the right. Click Next. Select where your image will be saved, and select the ISO Image format. Enter the file name, click Next. Click on Start, wait a little, the job is done! You can close Alcohol. V2.0 by Parazythum /06/17 Page 11 / 25

12 Now, launch Magic ISO. Select File, Open, select your ISO image. You should have a similar view as shown on the right. Select the CD-ROM image root, then choose File, Properties. IMPORTANT : be sure to tick the only option available in the Optimize tab. We ll see later what it means for our task. V2.0 by Parazythum /06/17 Page 12 / 25

13 Select all the files not listed on the right. Delete them. Select File, Save. Now you have a booting CD-ROM image! You can test it with your FM-Towns emulator. Extracting the needed game files Insert your game CD-ROM in your drive. With Magic ISO, click File, Open a CD/DVD driver, select your CD-ROM drive. Select the needed session (always Session 1 I think). Select all the files needed by the game you want to save. DO NOT SELECT the system files as seen above! Do a right-click on the file list, Extract them. Select the destination folder, click OK. Your files have been saved! Restart all the above actions for as many games you want. You could use your file explorer for this task, but I really don t know if the result is exactly the same You don t know what files to select? For my part, I select ALL the files, except the system files. In general, for a game, you have the.bat file that launches it. You can view it in Magic ISO : select the file, right-click, View. How to locate the right.bat file? Extract and open TMENU.INF with HexEdit. q: cd \me \run386 monkey In this example, we can see that it is the ME folder you have to save, with of course the MI1E.BAT file associated. V2.0 by Parazythum /06/17 Page 13 / 25

14 Editing the needed files How to Produce your Own Compilations of FM-Towns Games Extract these system files in a directory : TMENU.INF, TMENU.ICN Edit TMENU.ICN with HexEdit. Find a position to save your custom icon data. Write it down. It is good to have designed your icons before, and computed the hexadecimal values. Don t forget that, in binary, the white dots are represented by zeros, and the black dots by ones. A good tip : you can PASTE data with HexEdit! Now edit TMENU.INF with HexEdit. Change the existing entries with the right.bat names, and the titles. Don t forget to associate the icon by editing the word value (2 bytes) you wrote down before. Rewrite exactly where the old file names stood. The other entries must be filled with the hexadecimal value 20. If, for any reason, you want to edit the AUTOEXEC.BAT or whatever system file you like, remember this : DO NOT MODIFY THE FILE SIZE. No less, no more. Creating the final ISO image Make a copy of your boot CD-ROM image. Launch Magic ISO. Open the ISO image file. Select the CD-ROM image root, choose File, Properties. IMPORTANT : be sure to tick the only option available in the Optimize tab. It means that in case of file updates, the same position will be allocated on the CD-ROM. It ensures that the system files will remain at the same location, and so keep the boot properties intact. It seems for example that IO.SYS should be first on the CD-ROM. IMPORTANT bis repetita : make sure ALL the files you update have the same size in bytes. V2.0 by Parazythum /06/17 Page 14 / 25

15 Now select the location of your game files and modified system files in the lower pane. Add them to the ISO image file. You can see here that I selected the Monkey Island 1 and 2 files (English and Kanji versions), and also the Indiana Jones : Fate of Atlantis Demo. Don t forget to change the label properties, at least the compilation name. Then save your CD-ROM image. You can close Magic ISO. Is it done? Not quiet so! (on the right are shown the label properties of the original Monkey Island 2) V2.0 by Parazythum /06/17 Page 15 / 25

16 Second Method to Produce your booting ISO image A second method? I discovered it thanks to Charles Doty, who hinted the way to go. I adapted it, though. Creating the IPL dump We have to copy the file IPLR.COM on a working FM-Towns system, virtual or not. If you have a real FM-Towns, no problem : just copy the file on your MS-DOS boot diskette. If you are emulating (like me) this machine, it is a bit more tricky. Open DiskExplorer. Open your boot image file. Select the format You can see now the content of your diskette. Drag and drop from the.zip file (or from an explorer if you have decompressed the archive) the file IPLR.COM. Close DiskExplorer. Now boot your FM-Towns from your MS-DOS diskette (or your emulator from your diskette image). You have also to insert your original game CD-ROM in the drive - one which boots from the CD-ROM, remember! Make sure to verify the diskette tab to remove the writeprotection, or make sure your diskette in not virtually write-protected in your emulator. Type in : IPLR It s done! You should have a file called IPL.BIN, 2048 KB size. This operation dumps the first sector of the CD- ROM. You can type in DIR to check the file. Shut down your FM-Towns. V2.0 by Parazythum /06/17 Page 16 / 25

17 Transfer the file IPL.BIN on your computer. If it is a diskette image, launch again DiskExplorer like seen above, open the same file, drag and drop IPL.BIN from the diskette to somewhere on your hard drive. If you want to have a look at this file, feel free to use HexEdit. Keep carefully this file, it will be the same for all the booting CD-ROMs you could produce Let s create the ISO file! Speaking of the files order, let s look into the boot diskette tracks. Launch HexEdit, open the diskette image. If you have a real diskette, you can make an image with DiskEdit (menu Extended, Create image from disk). Locate the FAT sector, and locate the IO.SYS entry. See the files order. We will reproduce it. We have to extract the game files. Insert your game CD-ROM in your drive. With MagicISO, click File, Open a CD/DVD driver, select your CD-ROM drive. Select the needed session (always Session 1). Select all the files needed by the game you want to save. DO NOT SELECT the system files as seen above! Do a right-click on the file list, Extract them. Select the destination folder, click OK. Your files have been saved! Restart all the above actions for as many games you want. You could use your file explorer for this task, but I really don t know if the results are exactly the same V2.0 by Parazythum /06/17 Page 17 / 25

18 You don t know what files to select? For my part, I select ALL the files, except the system files. In general, for a game, you have the.bat file that launches it. You can view it in Magic ISO : select the file, right-click, View. How to locate the right.bat file? Extract and open TMENU.INF with HexEdit. q: cd \me \run386 monkey In this example, we can see that it is the ME folder you have to save, with of course the MI1E.BAT file associated. Now, to produce the ISO file from which we will burn the compilation. It is a bit tricky, you have to carefully follow the instructions step by step. Launch Magic ISO. Select File, New, Data CD/DVD image. Select in the menu Files, Properties. In the Label tab, write whatever you want. You can follow what is found in a real game CD-ROM. Do not select Also use the ISO 9660 text for Joliet. On the ISO tab, select the options exactly as seen from the right image. Important : do not select Joliet, and make sure the ISO file will be in ISO Level 1 format. Now, on the Optimize tab, select the only option available. I don t know if it makes any difference, but it worked this way : it makes sure, if you add the same file again to the compilation, that its location on the CD-ROM will be the same. It is particularly the case for IO.SYS, which must come first if you remember what was told at the beginning of this article. V2.0 by Parazythum /06/17 Page 18 / 25

19 WARNING : don t skip any step! Do exactly what is told here. The order is important. Drag and drop the files ONE BY ONE, in the following order, from a booting CD-ROM game to your compilation : IO.SYS CONFIG.SYS AUTOEXEC.BAT CONTROL.EXE DICUTY.COM RUN386.EXE TBIOS.BIN TBIOS.SYS (end of the necessary system files) You can now add all the other files you extracted / edited before : TMENU.* AUTOEXEC.BAT if you modified it (don t worry, the file was already allocated, remember the option set above careful with the file size!) The files and directories needed by the different games. You can see here that I selected the Monkey Island 1 and 2 files (English and Kanji versions), and also the Indiana Jones : Fate of Atlantis Demo. Save your image file. V2.0 by Parazythum /06/17 Page 19 / 25

20 The boot sector (IPL) How to Produce your Own Compilations of FM-Towns Games It is a bit improper to talk about a boot sector. We have produced an ISO CD-ROM, not a booting media. Now is the time to make it bootable, in the FM- Towns way. Copy the IPL.COM utility, and IPL.BIN produced lately, on the same location where you saved the game compilation ISO image. Launch a DOS box. Go to the directory where your files are. Type in : IPL IPL.BIN NAME.BIN (where NAME is the ISO file name) The ISO file date has changed. Your ISO image has now a correct IPL track! The IPL utility finds the IO.SYS location and writes it to the 0x20 position of the IPL track (first track of the CD-ROM). We can see in this example that the address is 44 (decimal). If you have Alcohol and a FM-Towns emulator (UNZ), you can already try your new CD-ROM. V2.0 by Parazythum /06/17 Page 20 / 25

21 Adding the audio tracks I took the example of Monkey Island 1 and 2 to show we can do more! Monkey Island 1 uses audio tracks for the background music during the game. Monkey Island 2 uses MIDI tracks instead. If you burned the ISO image immediately, you can play Monkey Island 1 without music. But it misses something, you can t even look at the nice introduction So let s see how to extract the audio tracks of the original Monkey Island 1 CD-ROM, and re-inject them to our own compilation. Extracting the original audio tracks Insert your original Monkey Island 1 CD-ROM. Launch Nero Burning ROM. In the menu, choose Extras, Save tracks You will be asked to choose the CD-ROM from which the audio tracks will be extracted. First, select all the tracks form the Track list, except for the first one (it is data, not audio!) Next, if your CD-Rom drive permits it, choose to extract the tracks in the Digital manner (Output way), which is always better. After this, choose the folder where your files will be saved. Click the Options button. You don t have to do Jitter correction, so don t tick it (you own a real FM-Towns CD, don t you?) Remove Silence : this function removes the leading and ending silences. DON T CHOOSE IT : you want to keep the audio tracks as genuine as possible, out of sync audio for some games instead (speech). Now choose the Output file format - IMPORTANT : always prefer non-destructive audio formats for the resulting files. I always choose WAV. V2.0 by Parazythum /06/17 Page 21 / 25

22 By clicking Settings next to Output file format, you are able to modify the quality of the audio files. Since we talk about audio tracks from a CD-ROM, the choice is limited to one : 44100, 16 bits, Stereo. Exactly the audio tracks format from an audio CD-ROM. Now for the File name creation method : click on the User defined down arrow. Choose User defined, and enter in the field below : Track %N.%E. This will ensure that the files will be named Track 01.wav, Track 02.wav, etc. It is important to have 2 digits for the tracks numbers : many FM-Towns games have more than 9 audio tracks! Now click on the Go button. Watch the progression. You now have a nice collection of WAV files! Did you notice? The file order starts at 02. The DATA part of the CD-ROM was Track 01, remember V2.0 by Parazythum /06/17 Page 22 / 25

23 Make a.cue file The.CUE file is a way to describe a CD-ROM structure, especially with multi tracks ones. Launch Sega Cue Maker. Select the folder where your ISO image and the WAV files stand. Click Generate, then Save Cue. Enter a file name and you re done! IMPORTANT : you did not have before to use a ISO file (extension : ISO IPL uses it though). In the previous examples, I myself used the BIN format. It doesn t matter, here is how to fool Sega Cue Maker : Before launching the tool, rename your CD-ROM image extension to ISO. Do as told above, save your.cue file, then exit and rename your CD-ROM image again, back to the old extension. Then open the.cue file with a text editor and change the file extension of your image file from ISO to whatever was before. IMPORTANT bis : make sure you ONLY have the ISO file and the WAV files in your folder before launching Sega Cue Maker, it would be a mess instead! You wouldn t like to have TWO data tracks (for example), would you? V2.0 by Parazythum /06/17 Page 23 / 25

24 Burn your CD-ROM! You can try your new CD-ROM virtually with Alcohol, before really burning it (choose the.cue file, not the binary : you wouldn t have the audio tracks). Now is the final step! Run Nero, do File, Open. Choose the.cue file you made. A dialog box appears. Be sure to have the Write method set to Disc at Once. Finetune the other parameters for your CD- ROM burner. You can go now to the Info tab to verify the tracks list : there must be a data track (first), and then the audio tracks. You can now click Burn. Wait patiently while your CD-ROM is written. Now you ve done it! You can try your new CD-ROM with your FM-Towns console or emulator (I use UNZ, I don t own a real console) V2.0 by Parazythum /06/17 Page 24 / 25

25 The end Nobody s perfect If you found this article interesting (write me if you did!), or want to correct my English (which is not perfect, not my native language), or want to clarify technical matters (it will increase the version number of this document), feel free to drop a mail at this address : Parazythum@gmail.com Truly yours, Parazythum, The Big Bad Bug! Big thanks to : Ben from FMV Charles DOTY, creator of Frog Feast and many more things for different systems like NEO- GEO, Sega CD, Jaguar, FM-towns, etc, who was kind enough to answer many questions. the authors of UNZ for the FM-Towns emulator the LucasFilm and LucasArts authors for their wonderful adventure games! Useful web links : Alcohol 52% or 120% : Magic ISO : Nero Burning ROM : Sega Cue Maker : HexEdit : impossible to find out where I found it. Try a little Google search! EditDisk or DiskExplorer : MS-DOS boot diskette (JCEC site) : IPLR.COM & IPL.COM : UNZ, the nice FM-Towns emulator : ScummVM the LucasFilms and LucasArts games emulator, enables you to play from the data files, even from FM-Towns versions of your favourite adventure games : It s getting better all the time! (reminds me a Beatles song) Japanese Computer Emulation Centre (JCEC), nice page with tools for FM-Towns : Charles DOTY s thingies : and (Frog Feast + a blog) FMV, you are already here! BabelFish, with which you can translate from Japanese to English language (and many more) : - I don t speak Japanese!!! Sometimes it s really funny, the translation is weird (eg : CD-ROM lighting software instead of burning software ). V2.0 by Parazythum /06/17 Page 25 / 25

IC Memory Card : How to make it work with your FM-Towns computer or console (V /12/20)

IC Memory Card : How to make it work with your FM-Towns computer or console (V /12/20) IC Memory Card : How to make it work with your FM-Towns computer or console (V1.0 2005/12/20) Introduction I have downloaded many free games on the internet for FM-Towns computers, but some of them don

More information

_APP A_541_10/31/06. Appendix A. Backing Up Your Project Files

_APP A_541_10/31/06. Appendix A. Backing Up Your Project Files 1-59863-307-4_APP A_541_10/31/06 Appendix A Backing Up Your Project Files At the end of every recording session, I back up my project files. It doesn t matter whether I m running late or whether I m so

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

3 USING NERO BURNING ROM

3 USING NERO BURNING ROM 3 USING NERO BURNING ROM Nero Burning ROM gives you the maximum amount of flexibility and options for burning data to create different types of CDs and DVDs, such as bootable CDs or Super Video CDs. Until

More information

Keep Track of Your Passwords Easily

Keep Track of Your Passwords Easily Keep Track of Your Passwords Easily K 100 / 1 The Useful Free Program that Means You ll Never Forget a Password Again These days, everything you do seems to involve a username, a password or a reference

More information

Burning CDs in Windows XP

Burning CDs in Windows XP B 770 / 1 Make CD Burning a Breeze with Windows XP's Built-in Tools If your PC is equipped with a rewritable CD drive you ve almost certainly got some specialised software for copying files to CDs. If

More information

User s Manual. Rev July 29,

User s Manual. Rev July 29, User s Manual Rev. 3.3.0.75 July 29, 2009 www.comsol.com.au Contents 1. Introduction...2 1.1 System Requirements... 2 1.2 Multilingual Support... 2 1.3 Disk Partitioning... 2 1.4 Note... 3 2. Icon Descriptions...4

More information

Department of Computer Science. Software Usage Guide. CSC132 Programming Principles 2. By Andreas Grondoudis

Department of Computer Science. Software Usage Guide. CSC132 Programming Principles 2. By Andreas Grondoudis Department of Computer Science Software Usage Guide To provide a basic know-how regarding the software to be used for CSC132 Programming Principles 2 By Andreas Grondoudis WHAT SOFTWARE AM I GOING TO NEED/USE?...2

More information

Camtasia Studio 7 User Guide

Camtasia Studio 7 User Guide Camtasia Studio 7 User Guide TechSmith & Camtasia Studio: TechSmith Corporation released popular desktop recording tools like Snagit, Jing, and Camtasia. TechSmith also launched Screencast.com, a screencast

More information

PowerPoint Basics: Create a Photo Slide Show

PowerPoint Basics: Create a Photo Slide Show PowerPoint Basics: Create a Photo Slide Show P 570 / 1 Here s an Enjoyable Way to Learn How to Use Microsoft PowerPoint Microsoft PowerPoint is a program included with all versions of Microsoft Office.

More information

CBS For Windows CDROM Backup System Quick Start Guide Installation Preparation:

CBS For Windows CDROM Backup System Quick Start Guide Installation Preparation: CBS For Windows CDROM Backup System Quick Start Guide Installation If you have your CBS CD Writer Backup system on CD, simply insert the CD. It will automatically start and install the software. If you

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

Managing Files. In this chapter

Managing Files. In this chapter In this chapter Displaying Your Computer s Contents Navigating Folders Creating a New Folder Displaying and Selecting Files Deleting and Undeleting Files and Folders Renaming a File or Folder Moving Folders

More information

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Before starting these instructions, you should already have your Voice assistant installed and working. These instructions can be used

More information

Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018

Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018 Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018 Before starting these instructions, you should already have your Voice assistant installed and working. These instructions can be used

More information

About the Fujitsu Ten FM-Towns Car Marty (V /10/22)

About the Fujitsu Ten FM-Towns Car Marty (V /10/22) About the Fujitsu Ten FM-Towns Car Marty (V1.0 2006/10/22) Introduction More and more people know about the FM-Towns Marty from Fujitsu. It was the first 32-bit console, and had multimedia capabilities,

More information

Disk Operating System

Disk Operating System Disk Operating System DOS stands for Disk Operating System. DOS controls the computer s hardware and provides an environment for programs to run. This system program must always be present when working

More information

CIS 231 Windows 10 Install Lab # 3

CIS 231 Windows 10 Install Lab # 3 CIS 231 Windows 10 Install Lab # 3 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in

More information

Copy Music from CDs for Videos & Slideshows

Copy Music from CDs for Videos & Slideshows Copy Music from CDs for Videos & Slideshows C 528 / 1 Easily Create Music to Use in Your Personal Video Projects Digital cameras make it easy to take pictures and movie clips, and programs like Windows

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

dbdos PRO 2 Quick Start Guide dbase, LLC 2013 All rights reserved.

dbdos PRO 2 Quick Start Guide dbase, LLC 2013 All rights reserved. dbdos PRO 2 Quick Start Guide 1 dbase, LLC 2013 All rights reserved. dbase, LLC may have patents and/or pending patent applications covering subject matter in this document. The furnishing of this document

More information

CIS 231 Windows 7 Install Lab #2

CIS 231 Windows 7 Install Lab #2 CIS 231 Windows 7 Install Lab #2 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in the

More information

Chapter 2 The SAS Environment

Chapter 2 The SAS Environment Chapter 2 The SAS Environment Abstract In this chapter, we begin to become familiar with the basic SAS working environment. We introduce the basic 3-screen layout, how to navigate the SAS Explorer window,

More information

v5: How to restore a backup image

v5: How to restore a backup image This article describes how to restore a backup image Restoring a backup image is very simple using Macrium Reflect. If the image contains only data, it is a matter of restoring it back to its original

More information

TF5800PVR recording to DVD using ProjectX and Nero

TF5800PVR recording to DVD using ProjectX and Nero TF5800PVR recording to DVD using ProjectX and Nero Summary How to burn Topfield recordings,.rec files, to DVD using ProjectX, PVAStrumento and Nero on a Windows PC. Author Issue: Date: Malcolm Reeves (mreeves@fullcircuit.com)

More information

Common iphone problems, tips and tricks

Common iphone problems, tips and tricks Common iphone problems, tips and tricks F. M. Spowart Upd April 2018 Page 2 of 9 Randomly losing contacts; iphone does this for some strange reason. The reason why numbers disappear unlike other phones,

More information

Quick Guide. Choose It Maker 2. Overview/Introduction. ChooseIt!Maker2 is a motivating program at first because of the visual and musical

Quick Guide. Choose It Maker 2. Overview/Introduction. ChooseIt!Maker2 is a motivating program at first because of the visual and musical Choose It Maker 2 Quick Guide Created 09/06 Updated SM Overview/Introduction This is a simple to use piece of software that can be tailored for use by children as an alternative to a pencil and paper worksheet,

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

Navigating and Managing Files and Folders in Windows XP

Navigating and Managing Files and Folders in Windows XP Part 1 Navigating and Managing Files and Folders in Windows XP In the first part of this book, you ll become familiar with the Windows XP Home Edition interface and learn how to view and manage files,

More information

UT163/UT165/UT190 USB Flash Disk Utility

UT163/UT165/UT190 USB Flash Disk Utility UT163/UT165/UT190 USB Flash Disk Utility User s Manual Rev. 3.2.4.0 JUNE. 12, 2008 http://www.afatech.com All rights strictly reserved. Any portion of this paper shall not be reproduced, copied, or translated

More information

EaseUS Disk Copy User Guide

EaseUS Disk Copy User Guide EaseUS Disk Copy User Guide Table of contents Welcome... - 1 - Glossary... - 1 - Getting Started... - 1 - Hardware Requirements... - 1 - System Requirements... - 1 - File System Supported... - 2 - Devices

More information

ProjectXpert Getting Started with your trial

ProjectXpert Getting Started with your trial ProjectXpert Getting Started with your trial Do you find your building projects difficult to manage? Want to streamline your jobs? Looked for the ideal project management solution but never found one?

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

Tutorial - How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment

Tutorial - How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment Tutorial - How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment Version 1.9 This tutorial will walk you through how to create a bootable USB drive to enter into a

More information

Data Crow Version 2.0

Data Crow Version 2.0 Data Crow Version 2.0 http://www.datacrow.net Document version: 4.1 Created by: Robert Jan van der Waals Edited by: Paddy Barrett Last Update: 26 January, 2006 1. Content 1. CONTENT... 2 1.1. ABOUT DATA

More information

Windows 2000 Professional

Windows 2000 Professional The American University in Cairo Academic Computing Services Windows 2000 Professional prepared by Soumaia Ahmed Al Ayyat 4 August 2003 Table of Contents Starting Up the Computer Windows Environment Start

More information

COMMON WINDOWS 10 QUESTIONS & ANSWERS

COMMON WINDOWS 10 QUESTIONS & ANSWERS COMMON WINDOWS 10 QUESTIONS & ANSWERS Windows 10 is a blend of the best features of Windows 7 and 8.1 but many people are frustrated when they can t find a feature or fix they were used to in one of the

More information

Locate it inside of your Class/DreamWeaver folders and open it up.

Locate it inside of your Class/DreamWeaver folders and open it up. Simple Rollovers A simple rollover graphic is one that changes somehow when the mouse rolls over it. The language used to write rollovers is JavaScript. Luckily for us, when we use DreamWeaver we don t

More information

Setting Up a Linux Operating System

Setting Up a Linux Operating System Name: Setting Up a Linux Operating System We will be using the Linux operating system for most of our practical work in this class. Knoppix is a live CD distribution of Linux, based on the Debian distribution.

More information

Playlist Builder 1.5 Manual

Playlist Builder 1.5 Manual Playlist Builder 1.5 Manual Playlist Builder is a database and schedule system for your audio files. It supports the following audio formats: WAV SND/MP2 MP3 OTS Before you run the program, make sure you

More information

Introduction to Programming

Introduction to Programming CHAPTER 1 Introduction to Programming Begin at the beginning, and go on till you come to the end: then stop. This method of telling a story is as good today as it was when the King of Hearts prescribed

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Models: A3040 Document Date: 2/10/06 Document Part Number: FPC58-1482-01 F U J I T S U C O M P U T E R S Y S T E M S 1 LifeBook A Series Notebook

More information

Document No.: CD Duplicate Master. CD Duplicate Master. Jam Video Software Solution Inc. Page 1

Document No.: CD Duplicate Master. CD Duplicate Master. Jam Video Software Solution Inc.  Page 1 Document No.: CD Duplicate Master CD Duplicate Master Jam Video Software Solution Inc. http://www.jamvideosoftware.com Page 1 Pages Order Introduction...Pages 3 How to buy...pages 4 How to use...pages

More information

Part 1: Understanding Windows XP Basics

Part 1: Understanding Windows XP Basics 542362 Ch01.qxd 9/18/03 9:54 PM Page 1 Part 1: Understanding Windows XP Basics 1: Starting Up and Logging In 2: Logging Off and Shutting Down 3: Activating Windows 4: Enabling Fast Switching between Users

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

Chapter 9 Getting Started with Impress

Chapter 9 Getting Started with Impress Getting Started Guide Chapter 9 Getting Started with Impress OpenOffice.org's Presentations OpenOffice.org Copyright This document is Copyright 2005 2007 by its contributors as listed in the section titled

More information

You ve probably used your favorite Web browser for a long time. Your

You ve probably used your favorite Web browser for a long time. Your Chapter 1 Exploring the Benefits of Browser Customization In This Chapter Simplifying a browser application Targeting a special purpose or user Installing the Browser Construction Kit You ve probably used

More information

Interactive Tourist Map

Interactive Tourist Map Adobe Edge Animate Tutorial Mouse Events Interactive Tourist Map Lesson 1 Set up your project This lesson aims to teach you how to: Import images Set up the stage Place and size images Draw shapes Make

More information

Windows XP. A Quick Tour of Windows XP Features

Windows XP. A Quick Tour of Windows XP Features Windows XP A Quick Tour of Windows XP Features Windows XP Windows XP is an operating system, which comes in several versions: Home, Media, Professional. The Windows XP computer uses a graphics-based operating

More information

Computer Basics: Step-by-Step Guide (Session 2)

Computer Basics: Step-by-Step Guide (Session 2) Table of Contents Computer Basics: Step-by-Step Guide (Session 2) ABOUT PROGRAMS AND OPERATING SYSTEMS... 2 THE WINDOWS 7 DESKTOP... 3 TWO WAYS TO OPEN A PROGRAM... 4 DESKTOP ICON... 4 START MENU... 5

More information

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips Getting Started With Heritage Makers A Guide to the Heritage Studio 3.0 Drag and Drop Publishing System presented by Heritage Makers A new clients guide to: Activating a new Studio 3.0 Account Creating

More information

Graduate e-portfolio Setup Directions

Graduate e-portfolio Setup Directions Graduate e-portfolio Setup Directions This set of instructions is in several sections so that you may use the ones that you need. Section 1 Structure (It is a good idea to create folders in one place on

More information

COMPUTER 3 - FIRST TERM (1)

COMPUTER 3 - FIRST TERM (1) COMPUTER 3 - FIRST TERM (1) Objective Q1. Fill in the blanks with appropriate words. 10 1. Keep your computer in a well area. 2. Do not anything on the computer. 3. Do not press buttons hard. 4. Hold discs

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

More information

BE A MOVIE MAKER! Before we import our pictures, we want to change the default frame rate -- in other words, how fast our movie will run.

BE A MOVIE MAKER! Before we import our pictures, we want to change the default frame rate -- in other words, how fast our movie will run. BE A MOVIE MAKER! Tips: Keep shapes simple Keep action to 20 frames or fewer Put one object that doesn t move at the edge of the frame to use to keep the frames steady Make a lot of tiny changes between

More information

Introduction to Windows

Introduction to Windows Introduction to Windows Naturally, if you have downloaded this document, you will already be to some extent anyway familiar with Windows. If so you can skip the first couple of pages and move on to the

More information

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment Version 8.1 This tutorial will walk you through how to create a bootable USB drive to enter into a WINPE

More information

BACKING UP AN IMAGE OF YOUR HARD-DRIVE

BACKING UP AN IMAGE OF YOUR HARD-DRIVE BACKING UP AN IMAGE OF YOUR HARD-DRIVE Jim McKnight www.jimopi.net ImageBackup.lwp revised 1-20-2016 GENERAL IMAGE BACKUP TIPS For an overview of backing up, see my "A Stress Free PC" article at http://www.jimopi.net

More information

PART 7. Getting Started with Excel

PART 7. Getting Started with Excel PART 7 Getting ed with Excel When you start the application, Excel displays a blank workbook. A workbook is a file in which you store your data, similar to a three-ring binder. Within a workbook are worksheets,

More information

What is OneNote? The first time you start OneNote, it asks you to sign in. Sign in with your personal Microsoft account.

What is OneNote? The first time you start OneNote, it asks you to sign in. Sign in with your personal Microsoft account. OneNote What is OneNote? OneNote is a digital notebook. In OneNote, you can: Type notes or record audio at your laptop. Sketch or write ideas on your tablet. Add picture from your phone. Find notes instantly.

More information

Microsoft Word 2010 Guide

Microsoft Word 2010 Guide Microsoft Word 2010 Guide 1 Microsoft Word 2010 These notes are devised for Word 2010. You should be aware that it is similar to Word 2007 but is quite different from earlier versions of Word, e.g. Word

More information

Opening the Program. Movie Maker II 1

Opening the Program. Movie Maker II 1 1 Opening the Program To open the Movie Maker II application, use the Start Programs Movie Maker combination from the desktop. Alternatively, you can create a shortcut on the desktop. After executing this

More information

VMware Workstation 4 What s New Requirements Installation Guest OS Installation Documentation Troubleshooting Prev Contents Last Next Installing VMware Tools The following sections describe how to install

More information

Lab: Supplying Inputs to Programs

Lab: Supplying Inputs to Programs Steven Zeil May 25, 2013 Contents 1 Running the Program 2 2 Supplying Standard Input 4 3 Command Line Parameters 4 1 In this lab, we will look at some of the different ways that basic I/O information can

More information

2.0: The Storyboard Editor

2.0: The Storyboard Editor 2.0: The Storyboard Editor Overview Klik & Play is more than just a games creator. It can also produce wonderful presentations. You can use it to generate product tutorials, slide shows, photo albums.

More information

PHOTO DVD MAKER USER MANUAL

PHOTO DVD MAKER USER MANUAL Photo DVD Maker User Manual 1 PHOTO DVD MAKER USER MANUAL Version 7.04 http://www.photo-dvd-maker.com Photo DVD Maker User Manual 2 0.1 WELCOME TO PHOTO DVD MAKER...4 0.2 GETTING HELP...5 1. GETTING STARTED...6

More information

Contents. Getting Started...1. Managing Your Drives...9. Backing Up & Restoring Folders Synchronizing Folders...52

Contents. Getting Started...1. Managing Your Drives...9. Backing Up & Restoring Folders Synchronizing Folders...52 Contents Getting Started.....................................................1 Installing the Software...........................................1 Using the Maxtor System Tray Icon................................6

More information

NEC Versa 4200 Windows 98 Upgrade Information

NEC Versa 4200 Windows 98 Upgrade Information NEC Versa 4200 Windows 98 Upgrade Information Follow the instructions provided in this document to upgrade your NEC Versa 4200 system to Microsoft Windows 98. Please read these notes in their entirety.

More information

The L&S LSS Podcaster s Tutorial for Audacity

The L&S LSS Podcaster s Tutorial for Audacity The L&S LSS Podcaster s Tutorial for Audacity The L&S LSS Podcaster s Tutorial for Audacity... 1 Audacity Quick Reference... 2 About this tutorial... 3 Some Thoughts Before You Get Started... 3 Do Academic

More information

VISUAL QUICKPRO GUIDE

VISUAL QUICKPRO GUIDE VISUAL QUICKPRO GUIDE Red Hat Linux 6 Harold Davis Peachpit Press Visual QuickPro Guide Red Hat Linux 6 Harold Davis Peachpit Press 1249 Eighth Street Berkeley, CA 94710 510/524-2178 800/283-9444 510/524-2221

More information

INDEX. * All specifications are subject to change without prior notice. v2 November 2005

INDEX. * All specifications are subject to change without prior notice. v2 November 2005 INDEX 1. Introduction... 2 Key Features... 2 2. Description of M8U... 3 Front Panel... 3 3. System Requirements... 5 PC... 5 Mac... 5 4. Installation... 6 Hardware Installation... 6 Driver Installation

More information

Easy Windows Working with Disks, Folders, - and Files

Easy Windows Working with Disks, Folders, - and Files Easy Windows 98-3 - Working with Disks, Folders, - and Files Page 1 of 11 Easy Windows 98-3 - Working with Disks, Folders, - and Files Task 1: Opening Folders Folders contain files, programs, or other

More information

This video is part of the Microsoft Virtual Academy.

This video is part of the Microsoft Virtual Academy. This video is part of the Microsoft Virtual Academy. 1 In this session we re going to talk about building for the private cloud using the Microsoft deployment toolkit 2012, my name s Mike Niehaus, I m

More information

N Series BIOS BIOS SETUP UTILITY

N Series BIOS BIOS SETUP UTILITY BIOS SECTION N3530 LifeBook N Series Notebook BIOS N Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

Rescuing Lost Files from CDs and DVDs

Rescuing Lost Files from CDs and DVDs Rescuing Lost Files from CDs and DVDs R 200 / 1 Damaged CD? No Problem Let this Clever Software Recover Your Files! CDs and DVDs are among the most reliable types of computer disk to use for storing your

More information

Optional Lab. Identifying the Requirements. Configuring Windows 7 with virtualization. Installing Windows Server 2008 on a virtual machine

Optional Lab. Identifying the Requirements. Configuring Windows 7 with virtualization. Installing Windows Server 2008 on a virtual machine Optional Lab Appendix D As you go through Microsoft Windows Networking Essentials for the 98-366 exam, you may want to get your hands on Windows Server 2008 and dig a little deeper. That makes sense. While

More information

New to the Mac? Then start with this lesson to learn the basics.

New to the Mac? Then start with this lesson to learn the basics. Mac 101: Mac essentials If you're brand new to the world of computers and are just starting to get up and running, relax using a Mac is simple. This lesson introduces you to the basic principles of interacting

More information

User Manual. Nero Recode 2.

User Manual. Nero Recode 2. User Manual Nero Recode 2 www.nero.com Copyright and Trademark Information The Nero Recode 2 User Manual and the Nero Recode 2 Software are copyrighted and the property of Nero AG, Im Stoeckmaedle 18,

More information

Laboratory 1: Eclipse and Karel the Robot

Laboratory 1: Eclipse and Karel the Robot Math 121: Introduction to Computing Handout #2 Laboratory 1: Eclipse and Karel the Robot Your first laboratory task is to use the Eclipse IDE framework ( integrated development environment, and the d also

More information

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations.

More information

Using Tab Stops in Microsoft Word

Using Tab Stops in Microsoft Word Using Tab Stops in Microsoft Word U 720 / 1 How to Set Up and Use Tab Stops to Align and Position Text on a Page If you ve tried to use tab stops to align text in Microsoft Word, there s every chance you

More information

How to rip, transcode, and prepare a DVD for network streaming

How to rip, transcode, and prepare a DVD for network streaming How to rip, transcode, and prepare a DVD for network streaming Step 1: (Decrypting original DVD) Use DVD Decrypter http://www.dvddecrypter.org.uk/setupdvddecrypter_3.5.4.0.exe]http://www.dvddecrypter.org.uk/set

More information

Yup, left blank on purpose. You can use it to draw whatever you want :-)

Yup, left blank on purpose. You can use it to draw whatever you want :-) Yup, left blank on purpose. You can use it to draw whatever you want :-) Chapter 1 The task I have assigned myself is not an easy one; teach C.O.F.F.E.E. Not the beverage of course, but the scripting language

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

Parallels Desktop for Mac

Parallels Desktop for Mac Parallels Software International, Inc. Parallels Desktop for Mac Getting Started Guide (c) 2005-2006 2 Contents Introduction 4 Key Terms and Technologies...5 Supported Guest Operating Systems...7 Installing

More information

FireFox. CIS 231 Windows 10 Install Lab # 3. 1) Use either Chrome of Firefox to access the VMware vsphere web Client.

FireFox. CIS 231 Windows 10 Install Lab # 3. 1) Use either Chrome of Firefox to access the VMware vsphere web Client. CIS 231 Windows 10 Install Lab # 3 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

Before you start a project, take a few minutes to get organized. This

Before you start a project, take a few minutes to get organized. This 1 Organizing Technique Save Time By Maintaining projects Navigating the File Browser Organizing your images Adding virtual notes and voice messages Image Files and Managing Projects Before you start a

More information

Manual Nero BackItUp. Nero AG

Manual Nero BackItUp. Nero AG Manual Nero BackItUp Nero AG Copyright and Trademark Information The manual for Nero BackItUp and all its contents are protected by copyright and are the property of Nero AG. All rights reserved. This

More information

You might think of Windows XP as a set of cool accessories, such as

You might think of Windows XP as a set of cool accessories, such as Controlling Applications under Windows You might think of Windows XP as a set of cool accessories, such as games, a calculator, and an address book, but Windows is first and foremost an operating system.

More information

VirtualDrive 16 Network. User s Guide

VirtualDrive 16 Network. User s Guide VirtualDrive 16 Network User s Guide Copyright Notice No part of this publication may be copied, transmitted, stored in a retrieval system or translated into any language in any form or by any means without

More information

How To Upload Your Newsletter

How To Upload Your Newsletter How To Upload Your Newsletter Using The WS_FTP Client Copyright 2005, DPW Enterprises All Rights Reserved Welcome, Hi, my name is Donna Warren. I m a certified Webmaster and have been teaching web design

More information

C A S P E R USER GUIDE V ERSION 5.0

C A S P E R USER GUIDE V ERSION 5.0 TM C A S P E R TM USER GUIDE V ERSION 5.0 Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits unauthorized use, duplication, and

More information

Animations involving numbers

Animations involving numbers 136 Chapter 8 Animations involving numbers 8.1 Model and view The examples of Chapter 6 all compute the next picture in the animation from the previous picture. This turns out to be a rather restrictive

More information

Introduction to Puppy Linux: Installation on a USB Flash Disk

Introduction to Puppy Linux: Installation on a USB Flash Disk Introduction to Puppy Linux: Installation on a USB Flash Disk Alex Gotev 1 Contents What is Puppy Linux? How can I have it? How do I boot it? What programs does it include? Installation on a USB Flash

More information

Speed Up Windows by Disabling Startup Programs

Speed Up Windows by Disabling Startup Programs Speed Up Windows by Disabling Startup Programs Increase Your PC s Speed by Preventing Unnecessary Programs from Running Windows All S 630 / 1 When you look at the tray area beside the clock, do you see

More information

Disk Imaging with Knoppix

Disk Imaging with Knoppix Introduction This document explains how to use the CD-ROM bootable version of Linux, named Knoppix, to make and restore images of computer hard drives. Knoppix makes a very good system recovery tool for

More information

Midterm Exam, October 24th, 2000 Tuesday, October 24th, Human-Computer Interaction IT 113, 2 credits First trimester, both modules 2000/2001

Midterm Exam, October 24th, 2000 Tuesday, October 24th, Human-Computer Interaction IT 113, 2 credits First trimester, both modules 2000/2001 257 Midterm Exam, October 24th, 2000 258 257 Midterm Exam, October 24th, 2000 Tuesday, October 24th, 2000 Course Web page: http://www.cs.uni sb.de/users/jameson/hci Human-Computer Interaction IT 113, 2

More information

Magic Burning Studio

Magic Burning Studio Magic Burning Studio Help Document Magic Burning Studio Magic Video Software http://www.magic-video-software.com/ Page 1 Pages Order Understanding Magic Burning Studio...Pages 3-5 Purchase...Pages 6 Getting

More information