Search results

  1. R

    1 megabyte = how many bytes?

    Probably doesn't belong in Highly Technical, but here goes: The size of a Megabyte (and a kilobyte, for that matter) really depends on who you ask. If you ask a HD manufacturer, it's 1000 bytes/kb and 1000 kb/mb. Ask an OS or a disk utility, and the answer is 1024bytes/kb and 1024 kb/mb...
  2. R

    Should there be such a file as "rundll32.EXE"???

    I've got it in C:\windows under Win98SE. My guess would be that the .exe is what powers the dll as dlls can't be executed by themselves. Again, it's just a guess.
  3. R

    PHP help

    Normal users don't normally have /usr/sbin in their path. Try moving your script (or a copy of it) to /usr/bin, or some other place that normal users can access.
  4. R

    Multiple Inboxes with Outlook Express or normal Outlook?

    You need to setup something called a "rule" and tell Outlook to move all messages from each account to a different folder that you create. The "rules wizard" makes this process fairly easy.
  5. R

    What software do you use to put digital pics on a cdr so you can play them on your dvd player (VCD format)

    Nero does everything I've needed, but then again I've only ever done slideshows.
  6. R

    How to load a whole program into RAM?

    Ummm... what would this accomplish? Windows won't dip into swap space until you run out of regular RAM anyway. Example: 1)You have 1GB of RAM. Windows has 1GB of RAM to work with. 2)You have 1GB of RAM. Windows has 500MB of RAM + 500MB of swap space stored in RAM. In both scenarios...
  7. R

    Help - Unable to ping from outside terminal

    XP has a built-in firewall. It may be the source of your troubles. Does the ping actually say that it was blocked, or just that it timed out? If it just timed out, verify your ip in ipconfig.
  8. R

    SSH help

    If you just want to download it and then re-upload it, you can look at sftp.
  9. R

    C++ : Searching a file for a line starting with the search term

    The thing that makes the number unique is that it is at the begining of the line and starts with a space, correct? So, just iterate throgh the file, loading each new line into an apstring ::shudder:: Then, to see if it's what you're looking for do: char stringWithNumber[16]; //assuming all...
  10. R

    Newbie to RAID system and need some help to get it to work

    When Windows XP setup asks if you need to install any third party SCSI or RAID drivers, you may need to say "yes". What type of card is he using?
  11. R

    Differences between v.92 and v.90

    The actual name is Modem On Hold, but that's the general idea. V.92 also adds "quick-connect," which can shorten the time it takes your modem to establish a connection with the remote one.
  12. R

    A+ materials

    I don't know of any books as I never used any, but I do have one piece of advice: the correct answer is never there. Therefore, go with the "Comp/TIA" answer, which is usually the most archaic and obscure one there. Also, know your stages of laser printing, the DOS boot sequence (yes, I said...
  13. R

    How does samba work w/windows machines...

    Is it setup to require users to login with a l/p or is it open to everyone? If it's password-required, make sure the encrypt passwords option is ON. It took me two weeks to figure that out with my network.
  14. R

    How the...

    AdAware won't nuke it? here
  15. R

    BF1942 Problem...

    video drivers? It sounds like it's crashing at the point where I'd guess it initializes stuff like that.
  16. R

    java/lang/object - WTF??

    Wjview is the Windows Java VIEWer. Try reinstalling your Java VM and see if it fixes it. Someone apparently had the same problem on the sun java forums, but nobody ever replied. In case someone does, that message is here.
  17. R

    C++ console input problems

    Odd. Mine seems to run at the same speed regardless of whether a key is pressed or not. Here's the code I used in VC++ 6.0 Pro: Try running this code and seeing how fast it goes. If it works at normal speed, I'm guessing it's something else in your code that causes the problem. If you...
  18. R

    C++ console input problems

    Try looking into _kbdhit(). I think it's one of those MS specific functions, but maybe I'm mistaken. Anyway, it returns non-zero if a character is waiting or zero otherwise. You can then call getch() to actually read the character if one is there.
  19. R

    Hey, what all I need to network my two PC's to my cable conn.

    What OS? If it's Win98SE or higher, you should be fine. For cables, you're going to need 3 regular (also called patch or straight-through). You're also going to need to drop a second NIC in the computer you want to be the "master." This computer will have the cable modem plugged into one NIC...
  20. R

    Printer "COPY" Utility...???

    Yes, it should still work. My HP Scanner works just fine with my Epson printer using the HP software. As long as Windows recognizes your new printer, the HP software should too.
  21. R

    A Chance to Show Your Stuff!! - Help an informed newbie with his questoins.

    With a clean install you NEVER restore the entire HD from ghost. Ghost will overwrite EVERYTHING on the drive, including the fresh install of the OS you just performed. If you want to make a ghost to use to restore your OS, do it immediately following the setup.exe step--before even installing...
  22. R

    Hosting a CS server with a router

    The same way you did it with just port 27015. Just add 27000, 27001, etc. Also, to select both TCP and UDP, there's probably a little drop-down or a check box labeled "protocol" or something similar.
  23. R

    Map Networking, Please help. Thanx!

    What OS? If it's NT-based, check your file permissions. Otherwise, you may have the root directory set incorrectly. I'm not familiar with Serv-U, but look for it's configuration file/utility. Also, are users connecting anonymously or with a login/password? If it's a l/p, check to see if...
  24. R

    webhosting at home

    BE CAREFUL! If you have normal, residential cable, your ISP may not allow you to host your own servers. My ISP (Time Warner) will actually terminate accounts if they find that you are hosting your own stuff. Anyway, just read you contract--it's in there somewhere.
  25. R

    A Chance to Show Your Stuff!! - Help an informed newbie with his questoins.

    If you're backing up your OS, it's not a clean install. Clean install literally means reformatting the drive and installing Windows from CD. Or, if you want to save time and have an extra HD, you can do a clean-install once, when you first create the system for example, ghost that to a spare...
  26. R

    Hosting a CS server with a router

    If you know the port number of your CS server, you can just type that into Port Forwarding exactly as you inquired about earlier. DMZ host is just a shortcut to forward ALL ports to one computer.
  27. R

    Hosting a CS server with a router

    You've got to tell your router which computer to forward incoming packets to. If you want it to forward ALL incoming ports to a single computer, you can do it with something called the DMZ host. Otherwise, depending on your router you can probably asign specific ports to go to specific...
  28. R

    Win32 Question: CreateWindow Function

    Look into GetWindowLong/SetWindowLong. If I remember correctly, you can use these to get/set attributes of a window at runtime. Unfortunately, I don't remember all the details. Something about GWL_STYLE, though.
  29. R

    Map Networking, Please help. Thanx!

    The problem, I'm guessing, is that you're trying to use NetBEUI, which isn't routable. It's much easier to just set up a little ftp server on one end or ther other.
  30. R

    Ipod Help ! - 10 GB Old vs New

    If I remember correctly, XPlay, the third-party iPod software, will actually work with a Mac iPod. http://www.mediafour.com/products/xplay/ Anybody know if this is still true?
  31. R

    Odd network problem, some private IP can get outside and some cannot (medium sized Cisco network) *SOLVED thanks alrox*

    How about a tracert from the computer you are on right now (the one that can get out) to your house? Also, what is 192.168.2.4 and 192.168.2.2, the addresses that shows up in most of your routing tables?
  32. R

    App Recommendation? Make VCD Slideshow...

    Nero actually does. If you choose VCD from the wizard (its under Other CD Formats), you can drag and drop images straight onto the CD. You can then choose how long you want each of them to be shown for or tell it to put each image in its own track, in which case you just press the "next track"...
  33. R

    Visual Basic

    Languages depend entirely on what you are trying to do. But to answer your question, VB is most definately NOT dead. It's a great language for putting together quick user interfaces and most small apps as it takes care of most of the stuff for you. What kind of database are you looking at...
  34. R

    I Need help with subnetting question

    The idea here is that your entire network must fall within 172.16.0.0/12, but you need to fit in 500 subnets with 2000 hosts each within this block. The easiest way I've found to teach this stuff is to start from the number of hosts. First, you have to round up to a power of 2. Therefore...
  35. R

    That pesky insert key

    Is it at all possible to disable the "insert" key? You know the one I'm talking about--the one you always accidently hit when try to backspace and end up replacing text instead of just inserting new. Searching both google and these forums turned up nothing useful.
  36. R

    Hub or crossover cable

    If you're using dial-up, the Cable/DSL router won't provide any benefit unless you get an external modem that connects via ethernet and doesn't need any drivers. I personally know of no such beast intended for home use.
  37. R

    Hub or crossover cable

    edit: never mind. He beat me to it.
  38. R

    Would it be easier to cut an apple in a 4 dimensional universe.

    The mathematical concept behind "dimensions" is that it is the number of data points you need to describe one particular place. In 3 dimensions, you need x, y, and z. In four, you need to add in a w. Our minds think of the universe as being 3D because we only have direct control over 3 axes...
  39. R

    Do you need a virus? **solved** Thanks guys!

    If the problem is confined to IE (I assume you're using IE based on the ActiveX), try redownloading/"upgrading" from MS. IE periodically dies on me, so I keep a copy of the installer on a CD and that normally fixes the problems.
  40. R

    Comp won't boot into windows!!!

    Will it boot from a floppy/CD?
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |