• Member Avatar for rubberman
    rubberman

    Replied To a Post in Round function question need your help

    In the first case, 12.345 is probably being decoded as a double. In the second case, the variable A is a float. Welcome to the world of floating point numbers …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Boot failure on HDD

    If you have a recovery partition, you may be able to fix it. In any case, you need to scan the disc for hardware failures (too many bad sectors). It …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in extract files error

    You aren't providing enough information. What kind of file? What did you do to "extract" the data? What is the source of this file and data?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Microsoft Works 9

    Ask Microsoft? They do have user forums where you could ask this.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to retrieve router's IP

    @XP78USER - the /all flag should not be necessary to find the gateway address. What it will do is generate a lot of confusing data for a new user. :-)
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Formatting problem

    What errors do you get? Does your system allow you to access the pendrive? These devices are generally factory formatted with a FAT file system which can be read by …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in XML SCHEMA

    No problem. New posters often make that mistake. The biggest problem with multiple posts is that one person will answer one, and another person will answer another. That dilutes the …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Mya:) in Need name and logo for my program

    Thanks guys, went with Loan Ranger (Thanks to SalmiSoft for The loan arranger which gave me the idea of loan ranger, and then gusano79 who i saw had the same …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in c++ code illustrating use of linked lists

    @javedkalabagh - please don't hijack other people's threads. Not good netiquette. Start your own thread to get help with learning C++.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in XML SCHEMA

    Again, please DO NOT double (or triple) post in these forums. Remove this instance please. I have already answered one of these.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in XML Schema

    Please do NOT double post! Remove this one, please.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in XML SCHEMA

    I assume there is a start node for <xs:schema>? Also, please properly indent the nodes. It helps to find such problems. In any case, this should be ok. What happens …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Windows 7 delete characters in editor very slow

    Check memory usage to see if your system may be hitting the virtual memory swap space.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Problem with Vectors

    Part of your problem is that you are using the same name for the global Numero_de_Materias as well as the argument name for a number of functions. DON'T DO THAT! …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Sorting strings using bucket sort

    Here is the wikipedia article on it. It may help you understand what to do: http://en.wikipedia.org/wiki/Bucket_sort
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Operations regarding ADT Trees using array

    Sorry, but we don't do your homework for you. Read the terms of service for this site for more information. YOU write the code, test it, post it here for …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in shipment prog

    We don't do your homework for you. Since this is in the C++ forum, I expect you need to create the code (classes, methods, etc) in C++. Do that to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in shell scrpting

    We don't do your homework for you. Write the code, then post it here along with errors and problems.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Low-level formatting?

    Remove the HDD. Boot from live media. Put HDD in an external carrier (either Sata or USB), plug it in, and then erase the drive (after backing up data if …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Help with a Database

    First, this is not good: if ( ( CtPtr = fopen( "hardware.dat", "rb+" ) ) == NULL ) { if ( ( CtPtr = fopen( "hardware.dat", "wb" ) ) == …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in USB Port Problem

    Well, if it was working, and now isn't, then either some software update has munged the system, or you have a hardware failure. I would guess the latter (hardware). Most …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to retrieve router's IP

    If you are running Windows systems, go to the command prompt (cmd.exe) and run the command "ipconfig". If Linux/Unix, go to a command prompt and run the command "ifconfig". These …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How can i change my PC IP in a DHCP

    Your router has a range of IP addresses for DHCP and for local static addresses. You can only change your IP to another static address. If you change it to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How can active secondary hard drive

    Go to the disk management tool, create a partition on the drive, and then format it (with NTFS).
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Low-level formatting?

    As Mike2K said, dd will happily wipe any disc, file system, or file as needed. That said, did you try to use fsck to fix the file system? FWIW, you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Need name and logo for my program

    Name: My First Loan Program Logo: A dollar sign with wings flying away
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in What would be the best programming language for making videogames

    What language depends upon a lot of things, such as the platform you want to target - computer, tablet, mobile phone, etc. as well as whether it's for Windows, Apple, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Problem with getting a winner.

    This helps. I'll get back to you after I've had a chance to look closer.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Use of unresolved identifier

    Seems pretty clear to me. You are calling functions that have not been defined as yet. A declaration is NOT a definition! You cannot call a function before it has …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why Amazon's Werner Vogel is wrong about cloud security

    In the case of either on-premises or in-cloud systems, following the "rules" is the only way to get real security (relatively speaking). Amazon is pretty good about security, but you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Can't access a certain website through computer only

    Some browsers today aren't allowing plain http access, but require https (secure, encrypted connections) to work. Try using https instead of http as the protocol type.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in For loop not breaking as expected...

    This effectively works, but is essentially a goto - not good programming practice. Usually you would use a termination flag in the for loop, set it when found, and you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Problem with getting a winner.

    Posting 500+ lines of code with no indication or description of the errors or problems you are getting just doesn't work.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in is this an error

    Assuming that balance is at least a floating point value, this is almost correct. Try this: `std::cout << "Your new balance is " << std::put_money((long double) balance) << std::endl;` Here …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Is it possible to start Computer without any RAM?

    What deceptikon said. In addition, modern processors have a lot of cache memory that could, in theory, be used as main core if desired. That said, most BIOS's will refuse …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Please Please help

    Yes. The biggest issue was not declaring FirstData variable as extern. As a result, a unique global variable would be created in each translation unit that included linklist.h, which caused …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Bitlocker

    Go to the control panel's add/remove programs page and look for the bitlocker entry. It should show the version there.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in is this an error

    Yes. It needs to be either of these two ways: `if (pin1 == pin && accnum1 == accnum)` or this `if ((pin1 == pin) && (accnum1 == accnum))`
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Computer Science Degree Vs. Software Engineering Degree

    Definitely keep up on the math! 9 years ago I took a job designing and devloping risk analysis software for the options trading industry at the CBOE in Chicago. Even …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in can not load assembly mysql data version=6.5.4.0, How do I get out?

    Besides the MySQL connector, you may need the MySQL client on the client machines. Also, make sure that you are installing the correct MySQL Connector and Client versions. They may …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in ripping music

    I use K3b - it is a front end for other command-line tools, but has a lot of options and handles the CL tools very well. I also use it …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in describing members and friend after class

    You need to show us the errors you are getting. What kreiger said is correct - that is an error. Also, on line 24 you are declaring a[] as an …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to JorgeM in computer shuts off after 15 min

    Assuming that all of your hardware is OK, are you sure there isnt a task scheduled to shut the system down after 15 min? maybe malware that is doing it? …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Installing nvidia drivers

    I was just reading in Phoronix an article about these new devices, and that they are definitely NOT Nouveau friendly! You will need to blacklist the Nouveau driver, and install …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in IP Helper svchost.exe high CPU usage

    Sometimes things just get stuck - not malware, just bugs. Kill the processes that are taking up the CPU and shut down the services that started them (if possible). Then, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Hello and thanks for all the fish!

    A little update - my wife and I just had our 41st anniversary, and last fall we were presented with our second great grandchild, Alice. This September, our granddaughter Alynn …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Upgrade? Not so much!

    Well, things got fixed. I was upset with the broken interfaces and needed to rant! These days, I am pretty much happy with how things are, so obviously things got …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in anyone help will do

    You only print the query about continuing or not (line 47), but you take no input to test in the ans variable (line 48).
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in algorithm

    We don't do your homework for you. Make an honest attempt, post your code here, and we will be happy to critique it.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in fork() and communication between processes

    This is a situation where posix threads may be more appropriate than fork/exec processes.

The End.