home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 September / Chip_1999-09_cd.bin / sharewar / MP3 / Rc-MP3.box / RcMP3nts.txt < prev    next >
Encoding:
Text File  |  1999-01-05  |  3.0 KB  |  49 lines

  1. [ Other notes on Rc-MP3 v1.51 ]    RightClick-MP3 by MrShannon is still FREEWARE
  2.   eMail: MrShannon@execpc.com      Jan. 05, 1999     http://execpc.com/MrShannon
  3.  
  4.  
  5. There is a file in the Rc-MP3 directory named "getchar.com".  That's a very handy
  6.  little 8byte program written by someone that calls himself T.E.D.  He's very
  7.  proficient at some programming and I cannot thank him enough for the help he
  8.  gave me on this project durring it's early development.  What getchar does is
  9.  wait for the user to press a key on the keyboard.  It then returns the ASCII
  10.  value of the key that was pressed.  I use it to determine if you hit "x" or
  11.  "X" to exit and the "Press any key to close this window" parts.
  12.  
  13. Why doesn't NT have color like Windoze95/98?  Basically because I couldn't figure
  14.  it out.  I tried about 5 different things to get ANSI to work, but every
  15.  attempt failed.  Hey I am kind of a beginner here, shut up.
  16.  
  17. Why does Windoze95/98 have the file "RcMP3ans.sys" and NT doesn't?  That is the
  18.  Windoze95b ansi.sys with a different name.  If you delete that file, you won't
  19.  have colors anymore, but if you try and put it in WinNT, it'll give you garbage
  20.  characters.  Even if you try using the ansi.sys from WinNT.  Trust me, I tried.
  21.  If you know how to load the ansi.sys on a WinNT machine without rebooting,
  22.  please send me an eMail - MrShannon@execpc.com
  23.  
  24. What did I write RightClick-MP3 in?  C?  C++?  Pearl?  Java?  nope.  I use plain
  25.  old DOS Batch language.  Not even QBasic.  Straight .bat commands.  Wanna take
  26.  a look at the code?  Go to c:\progra~1\Rc-MP3\ and look at Rc-MP3.bat but don't
  27.  edit it unless you know what you're doing!  Or at least make a backup of it
  28.  first.  A _lot_ of the program is built into the Windows Registry too.  I do
  29.  that with the Rc-MP3.inf file.  Feel free to look at that too, but it's scarry.
  30.  
  31. How did I figure this stuff out?  first of all, I spent years learning about DOS
  32.  Batch files.  Little here, little there.  The Color and ANSI stuff went along
  33.  with that.  As far as getting it to work with Windoze and the right mouse
  34.  button, I figured that out by editing the DosHere.inf file that Microsoft put
  35.  out long ago.  That file simply made it so you can right clock on a folder and
  36.  then choose "MS-DOS Prompt" which would drop you at a DOS Prompt at that
  37.  directory.  That made me wonder if you could do something like that on a file
  38.  type.  So I changed a few things and loe and behold, it worked.  So I had to do
  39.  something useful with it.  Eventually I go it to work with Win95, then I ported
  40.  it to work on WinNT.  Then I found a program called "WinDAC" that used an .inf
  41.  file for installing.  It made a group in the start button so of course I had to
  42.  do that too.  Really, if you want to learn, there is no better teacher than the
  43.  actual code itself.
  44.  
  45. If you really want to know how to write a shell extension, or just make sense of
  46.  the .inf file, try reading my tutorial.  You can find it at my current homepage
  47.  http://www.execpc.com/MrShannon/
  48.  
  49. -MrShannon@execpc.com