Search results

  1. G

    High School Valedictorian?s Diploma Withheld Because Of Graduation Speech

    I guess he wasn't too bright after all...maybe he needs to stay another year
  2. G

    Anyone notice all the broken links?

    it's not a pop-up blocker issue is it? a new pages opens for me but it says "page can't be found"
  3. G

    Anyone notice all the broken links?

    You know, just wanting to help out Anandtech by clicking on advertising links and..."Page cannot be found." 2 links on main page: - Thermaltake Big Typhoon (top right) - Navman handheld GPS (bottom right) Does that click still count if the link is broken? Is there an email where we can...
  4. G

    Are these any good DVD media ?

    It depends on the price and what you are using them for. For data it is probably fine but video is another story. Check out this media search to see what media works best in set top dvd players. You would be surprised how careful you have to be. supermediastore and allmediaoutlet are...
  5. G

    Web design resources to build first site?

    Thanks for the sites everyone, they look like they will really help out! Any book recommendations? Gage
  6. G

    Web design resources to build first site?

    Hi everyone, I have been asked to design a website for my school. I do have some HTML experience but I want to do a nice professional job on this one. What are your favorate resources? I am really looking for some good books on web design - also any good web resources. What are your...
  7. G

    Is there an app that's only for transferring files between users?

    Something to think of...try using something such as PCAnywhere or GoToMyPC. They have file transfer capabilities that are quite fast.
  8. G

    Something faster than mysql?

    Yes I am using an access front end to connect to MySQL. Basically we are currently running an Access front end and have an access file with just the tables as a back end. It works fine when just one person is using the db. When you get two users in it is very slow due to locking etc. BTW we...
  9. G

    Something faster than mysql?

    will post shortly
  10. G

    Something faster than mysql?

    1. Not sure exactly what you want. The tables are being linked into access through ODBC. 2. I was testing with one select query would take roughly 15 to seconds to complete and would seem to lock access. 3. Just one just for testing purposes on MySQL. 4. 1 GB DDR Dual AMD 2000+ MP's 10K Quantam...
  11. G

    Something faster than mysql?

    We have written a database for our school in Access. But as you know Access is very slow with multiple users accessing the same database. We were looking for a server interface like mysql to speed up the process with multiple users. However, since we implimented mysql it seems to be even...
  12. G

    Speed up your Acrobat Reader!!

    beautiful! I nominate this for the stop wasting valuable time award...:gift:
  13. G

    Need help with C++ homework

    sorry, there is no easy way out in the real world sonny...
  14. G

    IT department of UCF

    Well, I just wanted a general opinion of the program as a whole. What do people say about it after they have gone through? I basically want to major in database developement and administration while minoring in networking. The strait CS is not that interesting to me. But I didn't see the IST...
  15. G

    Windows XP Install Issue

    welcom back to the light :)
  16. G

    are laptop fans user replaceable?

    Some are very easy and some are very hard to replace. It is a case by case basis. On my old compaq Everything was easy to get to. however, a friend asked me to replace a fan on his hp laptop and I had to practically take the motherboard out to get to the malfunctioning fan. I told him I...
  17. G

    c programming question

    thanks for your help though. I really appreciate it :)
  18. G

    Windows XP Install Issue

    no, you will have two installs, each on it's own partition. They won't harm each other. You will just always have to choose which one to boot into. If you delete the one in "D" you can use that to store data - a good practice when you need to reinstall. I keep all my data on a D partion and...
  19. G

    Shortcut to turn monitor off?

    you want to turn your screensaver on at the same time you monitor goes of??? try here for a program that looks like it does what you want as far as turning off your monitor.
  20. G

    Is it possible to edit Adobe pdf files in Word?

    you can convert from word to pdf but once in pdf they are in stone, unless you have adobe acrobat (not reader)
  21. G

    c programming question

    that works! :) so the theory behind that is...you are clearing stdin of all else just before you read from there?
  22. G

    Windows XP Install Issue

    use fdisk to format that other partion. Or boot with your xp cd and it will ask which directory to install to. Choose the one you want to format and it will do a quick format. After it has done that, reboot before it installs the os again.
  23. G

    c programming question

    I see what you mean now. Anything entered after 'y' will remain in stdin and will become the input read in from scanf next time. Why then won't it work just using fflush(stdin)? If i don't use that junk=getchar() it just exit's the program. edit - if I enter 'yyyyyyy' the loop will perform...
  24. G

    Windows XP Install Issue

    did you install it in a separate partition?
  25. G

    logitech keyboard driving me crazy!

    specs: Abit KT7 w/ VIA KT133 chipset (latest 4in1 drivers installed) Win2Ksp4 ATI Rage XL Logitech cordless access keyboard (w/ usb receiver) compaq scroll mouse Here's my problem: With or without the i-touch software installed the keyboard will stop working after about 10 minutes. The...
  26. G

    c programming question

    I guess I don't understand what you are asking because there is no way that the loop will repeat itself unless stay == 'y'. If i enter yes, no, or anything else it will exit the loop. after the statement: scanf ("%d.%d", &dollar, &cent); I added a variable called junk and made it...
  27. G

    c programming question

    but stdin is effectively flushed by using getchar() twice isn't it? typing yes instead of y will cause it to exit the loop because it stays in loop: while (stay == 'y') At what point were you talking about flushing it?
  28. G

    c programming question

    just so everyone can know the answer, I found out that like squirtle said, the scanf statement put garbage into stdin. Therefore, it would never pause to receive my input because getchar() was getting the garbage already in there. to fix it I put this before the scanf statement...
  29. G

    c programming question

    could you explain the last if statement in your code? If inputbuffer != \n then stay = 'n'
  30. G

    c programming question

    Do you mean add fflush(stdin); after this scanf? scanf ("%d.%d", &dollar, &cent);
  31. G

    c programming question

    here is the program I am trying this with. The point of it is writing out a check amount < $99.99 The program works fine it's just getting the while loop right
  32. G

    c programming question

    Thanks for all the replies. wow, i didn't think it would be that complicated in C. squirtle are you just creating an array called inputbuffer and using it in the function fgets()? If so i'm not really sure how that is working. Why would you test for \n? Does fgets() receive that when you...
  33. G

    c programming question

    for my c-programming class i have been doing all of my labs in a while loop saying: while (stay == 1) . . (program) . "press 1 to continue or 0 to exit" scanf ("%d", &amp;stay); this allows users to repeat the program as many times they wish. However, I would like to do a more user friendly...
  34. G

    IT department of UCF

    Anyone been through or know of someone who has been to University of Central Florida - Information Technology or Computer Science programs? I'm interested in going there but just wanted to get some first (or second) hand opinion. Thanks, Gage
  35. G

    grep question...

    silly me. Like I said, the answer is simple. grep -w (option for word only) I need to read the man files a little slower :) thanks guys.
  36. G

    Nero 6 for Under $10?

    also be careful because some copies of Nero are linked to specific burners - like the one that came with my lite-on drive. It won't install in a pc without that drive installed.
  37. G

    grep question...

    this should be simple...but i just can't figure it out. Using grep from Unix/Linux: how can you search for a pattern not used in another word. For example to search for the word "no" it would be: grep "no" filename But I'm coming up with other words "nothing, not, nowhere." Is this question...
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/    |