• Member Avatar for rubberman
    rubberman

    Replied To a Post in Changing colors in Dev-C++ 4.9.9.2

    This is likely a code editor issue. What editor are you using? The Windows VS editor, Eclipse, or something else?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Help With otello(game) in C++

    And your problem is?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in how to compare file with virus signature in C++

    What do you consider a virus signature?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in how to write a program of functions accepting values and returning values?

    Also, we don't do your homework.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in net

    You can setup routes on your computer, either windows or Linux, so the computer can access other systems. Essentially, you are turning your computer into a router.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Install the software

    There are several package management tools for Debian - based systems, most of which are based upon aptitude. There's the synaptic GUI tool and the command line tool apt-get. As …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in any help

    Linux usb modems are a species of serial modem. You need to use the network management tool to configure it properly, as a PPP device.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in networking

    There are many good articles on the net, including Wikipedia, that will explain these concepts to you.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Do i have to split the Mhz on Ram?

    All of the ram will run at the full speed.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in .tar.gz from root but not root

    You can use sudo to do this, as in "sudo userid tar -zxvf filename.tgz".
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in uses of hardware in library

    I don't understand the question. What exactly do you want?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in recursion inverted asterisk triangle

    One could always compute the size of temp[] and temp1[] at runtime, malloc() the arrays, and then use memset() to initialize them, resulting in a pretty much infinite triangle size. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in c++ merge sort deck

    Why do you have 3 main() functions here? Are you trying to show various approaches you have attempted? If so, then break them into separate code blocks, or postings to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in HELP: NullReferenceExceptionWasUnhandled

    I think your problem is here: for (int i = 0; i < messageList.Length; i ++) { if (messageUserList[i].Contains("_0")) { . . . } } You probably need to set …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in creating an academic schedule in c code

    Start by describing what entities you need (classes such as Student, Professor, Subject, Schedule, etc) to deal with, and how they interact (methods such as `subjectTaughtBy(const Subject*, const Professor*);`). An …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in installing OBOE in MAC OS 10.9

    Have you verified that both the basic lapack and blas packages have been properly installed? Look in /usr/lib for the appropriate libraries, or download and install them directly. In any …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in e-cigarettes can cause more than cancer

    I read this in SlashDot or similar blogs the other day. So, when your e-smoking friend complains about headaches, just say it is the NSA or GCHQ scanning his memory! …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Do you have a led monitor?

    All of my monitors are now LCD monitors. The backing light can be fluorescent (older tech - more common) or LED (newer, becoming much more mainstream). So, what did you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Search Engines

    Walk through the directory structure, looking for files that match the name you input, or that contain data that matches. You can use the grep command (Unix/Linux) to do that. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in KeePass 2

    You could write a bash script to start it up on login (calling the script from ~/.bash_profile which is run when you login) to the system where it could ask …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in how we can make a game in c++

    You might find this helpful: http://www.drdobbs.com/cpp/building-portable-games-in-c/240169334
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in installing lapack++ on Mac

    Apparently the lapack++ configuration tool thinks not. Remember, to install from source, the sub-packages need to have their developer modules (headers) installed as well. Even if you have blas/lapack installed, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in installing lapack++ on Mac

    Are you sure you have compatible versions of Blas and Lapack installed? Also, what is the output of ../configure when you run it in the extracted directory for lapack++?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in gui programming

    Ah! A personal education project? Been there - done that! Post your work here and I'll at least be happy to comment. Remember, every operating system differs, depending upon their …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in write a c++ program to check it's a palindrome number or not ?pleasseeeee

    What NathanOliver said, plus we aren't here to help you cheat on your homework assignments. Make an *honest* effort to solve the problem, post your work here, and we will …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in gui programming

    GUI toolkits are VERY complex. Moschops has identified many of the issues you face. My advice is to study other GUI toolkits, such as Qt, WxWin, etc for some perspective …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in inheritance and copy constructor

    There are too many fundamental errors in your code to begin commenting on it. You have stuff in your .cpp files that should be in the headers. You are using …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in how we can make a game in c++

    1. Learn to write code in C++ (not a trivial exercise). 2. Learn some C++ game API's that will make your work easier (not a trivial exercise either). 3. Design …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to make cursor as3

    Huh? Please be more expressive of what you are trying to do, and the systems you are trying to do it on.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in c++

    The address of 'x' won't change. The value of ptr may. First, ptr is assigned the address of x, then it is changed to '200'. IE, the results of the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in help me

    Nutster is a newbie poster here, but is giving a lot of very good advice from what I have read so far. I am giving her/him a big thumbs-up.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Real time clock

    What Nutster said. I assume you mean a Nokia cell phone? They already have an RTC. Nokia phones use HTML and JavaScript for application development. Have you visited the Nokia/Microsoft …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Real time clock

    What Nutster said. I assume you mean a Nokia cell phone? They already have an RTC. Nokia phones use HTML and JavaScript for application development. Have you visited the Nokia/Microsoft …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in problem by lex and yacc

    I have used Lex and Yacc and hate them! Part of the problem is that writing parsing rules is not trivial, and the other part is that they generate in-line …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in why i cant log in centos 7

    This may be a keyboard connectivity issue. Is it USB, or other? Have you tried to install CentOS 6.x? Does it behave similarly? CentOS 7.x is very new, so there …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Toshiba Satelite C850-1LQ

    I would suspect a problem with your HDMI gear. If your system is JUST out of warranty, bitch loudly to Toshiba. They will probably fix it gratis in order to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Create 2 constructors

    Solved, maybe, but a good discussion nonetheless. :-)
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Word up: VBA viruses are back!

    Well, Windows and its applications are still the 800lb gorilla target of malware writers (viewing all the credit card hacks recently at Target, Home Depot, et al that infected Windows …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Simulate a patient’s lines using queues with enqueue ( ), dequeue ( ) and p

    Yes? And what errors are you getting? Compiler errors, or runtime errors? Show the output. Asking us to analyze 167 lines of beginner code is asking a bit much...
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Need Help! C code and functions

    Sorry, but we don't do your homework for you. I assume you have some C coding text books? There is also plenty of tutorial stuff on the internet for this. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in adobe flash player,couldnt write the application to the hard disk, error

    Go to the Adobe web site and download and install it manually. BTW, what browser are you using?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why my Phone flicker?

    What make/model of phone do you have? Current Android phones (I have several) have a flashing light at the top of the phone that is an indicator of your battery …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in why i cant log in centos 7

    You don't provide enough information. Did you do a full GUI install, or just a command-line server install? Do you get to a login screen or window? If so, after …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in HP630 won't startup after windows7ultimate installation

    Linux? :-) Sorry, but assuming this is a valid Windows 7 system installation disc purchased from Microsoft or HP, you will have to contact either Microsoft or HP support. You …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in MacBook Pro relbooted due to virus

    You may be able to recover it, but most likely not without a lot of effort. Search the web for Mac data recovery software. There are tools for Windows and …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in bios update

    You aren't providing enough information. Does the system boot up ok? If not, do you get some indication that the BIOS is starting the system? Is your system using an …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Aspire 5517

    How old is it? What version of Windows? Have you contacted the support people at Acer's web site?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in reinstall windows 7 after hd crashed

    You will either need to purchase a new Windows 7 installation disc (with new key) from Microsoft, or get one from HP. Getting one from HP for your specific system …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in different ways to check wether motherboard ,cpu and ram is wroking or not

    Can you boot into the BIOS? If so, most have a verbose setting that will show you all of the POST (Power-On Self Test) output. That is the system doing …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in iglicd32.dll, Trying to get a compatible version.

    Time to upgrade to Windows 7 or later perhaps?

The End.