139 Posted Topics
Re: Just to Recap . o O so, this guy walks in to a bar with a duck under his arm. the duck is wearing a plaid kilt and sunglasses. The bartender looks up and says... "What are you going to have Mister Wenting?" "I am not Jwenting - how dare … | |
So Nasa is going to unveil a "[URL="http://www.aolnews.com/surge-desk/article/nasa-announcement-3-theories-on-what-the-space-agency-has-discovered/19739210"]astrobiological finding[/URL]" on thursday. What do you think it's going to be? I think they found something living on one of saturn's moon. | |
Re: make sure it's not hidded or slid over. You can also bring up the view by going to view or Alt-V, toolbars then customize and make sure your menu bar is selected. | |
Re: get a screw driver and take it apart. Make notes as you take it apart so you can put it back together. Once you have the keyboard removed from all circuits, you can wash it off as needed. I've never taken a laptop apart, but if you are able to … | |
Re: Are you using broadband cable modem? What kind of router do you have and what kind of modem do you have? Are you using proxy servers? | |
Re: When a server sends out a package to a station on the LAN, it has a MAC and IP address associated with it. If the Server is looking for IP 172.112.11.121 it will look to see what segment it happens to be on, then send it on it's way with … | |
Re: right click computer, select properties, click device manager, look for you hardware, or hardware with an exclamation in a yellow triangle next to it. Right click it and update drivers. It sounds like you just need to install drivers for the products. | |
Re: if you can plug the hard drive into another computer, run chkdsk /r /f [driveletter]: It may take a day to complete, but it may repair the OS. Another option is to try a recovery of the OS instead of a complete install. | |
![]() | Re: [QUOTE=iamthwee;1336629]"A starved man wanders into the depths of a foreboding wilderness in the dark of the night with a shotgun. The only light is that which shines from the full moon casting shadows on the forest floor. Just as the young man crosses an opening in the foliage he sees … ![]() |
Re: Are you buying the parts seperatly and assembling it? I personnaly haven't bought a case for a PC I assembled myself in quite awhile. I have been given enough PC's in my time to just reuse cases and cut holes in them if I need more fan space. If you … | |
Re: @will8787: Whats the error on the blue screen? If you can take a screen shot of it and post it here, someone might be able to better help. Without knowing what the error is, it could be a driver error. What's your operating system? | |
Is there a way to turn off the hp2730 keyboard? I work for an IT Help Desk and have been rolling over customers to the new hp2730. I've gotten quite a few calls from people saying they can't ctrl+alt+del to log into the laptop and the only thing I can … | |
Re: If your BIOS was gone, it would not run or load, and it would display on your monitor as an error - BIOS checksum error and drop you to a prompt. To fix it, you'd need to boot from a floppy and provide the correct BIOS and flash utility. Most … | |
Re: Sounds like you might have a raid controller trying to load up. Going into task manager and check the processes that are running, find the raid controller, and uninstall it. Some SATA drives actually need the jraid.sys file. What OS are you running? I have heard of bad jraid.sys files … | |
Re: You have the understanding of variables incorrect ... looking at line 11 of your last post [code] char A,B,C,D,E,F; [/code] This creates undelcared variables of A, B, C, D, E, and F. There is nothing in these variables. until you set them to something, they can't be used. You need … | |
Re: this should work [code] if (num%4 == 0) cout << endl; [/code] | |
Re: [QUOTE=Ancient Dragon;1330447]Only people who have never served in the military would be shocked at the banning. Such a thing is actually pretty common. I recall one time the Base Commander banned a Cheek and Chong movie because it involved drugs.[/QUOTE] I served in the military for 10 years and was … | |
Re: Line 8 is breaking the assignment rules. You need to make the function [code] void minMax (int current, int& min, int& max); [/code] get rid of x, y, and z. [code] void minMax (int current, int& min, int& max){ // make comparisons here. // if current < min, then min … | |
Re: The fibonacci sequence is: 0,1,1,2,3,5,8, .... etc You are missing the first three numbers in the sequence. You can do it the way unimportant suggested, but you will need to catch the exceptions if the user enters 1 as i, in which case you will just want to display the … | |
Re: [QUOTE=Tahir33;1361514]yeah you just have to find how many different ways you can climb the ladder OK? :yawn:[/QUOTE] It's multi sets of the number of steps available. If there are 10 steps, the shortest distance you can get to the top is 5. If there's 11 steps, the shortest distance is … | |
Re: If you have one, try using a monitor with a VGA connector right after the monitor crashes, but you can still hear the PC sounds in the background. It sounds like the monitor or the video card. Try onboard video if you have it with a different monitor. It doesn't … | |
Re: > so to recap.nothing plugged into the tower works when it is turned off. Turn it on ... I'm not exactly sure what you are trying to say. My best guess bassed on how you worded your Op, your graphics card is borked. Open your PC, check to see if … | |
Re: When you create a variable, it is assigned a random location in memory. It doesn't matter what's in that memory, it's now assigned that. [code] int i; [/code] i is now a 32 bit variable. those 32 bits are given to i from anywhere in the memory. anything could be … | |
Re: Make an array of int count[26], initialize them all to 0. Read in the first character. Type cast the character to an int, subtract 97 from the int. That value is now the index of your count array. If the letter is 'a', it will typecast to the value 97, … | |
Re: you could cheat and return [code] return ((pow(x,2)+x)/2); [/code] | |
Re: An if statement. If string[n] == '#' then split the string. Also, take a look at [URL="http://www.daniweb.com/forums/thread317317.html"]this code[/URL] that someone else wrote. If you can understand it, you can adapt it. | |
Re: It doesn't sound like a virus. Try updating with the current driver for your graphics card. Check the website of the graphics card, or google your graphics card and you should get their website. I would also open your computer, and check the fan on the graphics card if it … | |
Re: You are using the space as a deliminator, meaning you are breaking the words apart with a space. In the sentence "The input is" you get the space before is, then retrieve the word "is", you then get the space before input, and retrieve "is input" but there is no … | |
Re: When you create the new person from your Op post [code] tempPer = new Person[stuNum]; [/code] Using your example, you create 3 objects: 0, 1, 2. In your for loops [code] for(j = 1; j < stuNum; j++) tempPer[darrPer[j].age] = tempPer[darrPer[j].age] + 1; for(i = 1; i < k; i++) … | |
Re: I'm assuming you mean [URL="http://en.wikipedia.org/wiki/Conway's_Game_of_Life"]these[/URL] rules. I would use two 2d arrays instead of four 1d arrays. You only have 2 1d arrays. The reason I would have an extra 2d array is to preserve the current board without altering it while coming up with the next phase of life. … | |
Re: change void to ListNode. Keep in mind, ListNode is a private structure, so anything outside your class won't be able to make a type ListNode. Edit: Shoud be ok on keeping it private .... SearchCommunication(string); is also private. | |
Re: I believe Visual C++ gives a list of functions similar to java as stated in the OP when you use :: You can download a trial version of it from [url]http://www.microsoft.com/express/Downloads/[/url] I'm not sure how long the trial version lasts for. When I was using a compiler for c++ I … | |
Re: My best guess without seeing the showMenu function is that showMenuTickets isn't assigned correctly to ticket. | |
Re: I'll give you a hint. If you read in as a character, cast it to an int, and work with it based on it's [URL="http://www.asciitable.com/"]ascii value[/URL], you can easily work with it using if statements. | |
Re: try initializing your variables. in your function void timeCalc, if line 70 executes, days will equal a garbage value. days goes to printTime as nDays and you immedietly start using it in comparisons on line 80. | |
I was asked a question, and now I'm determined to find a solution. I'm trying to disable a mouse touchpad on an hp2730p without messing up the pointer stick located in the middle of the keyboard or the mouse buttons. The hp driver conflicts with a security program that is … | |
I am trying to deactivate a touchpad on an HP2730p Notebook with a stipulation. There is software running on the notebook that is required to be there because it is owned by a company, so the software is a security software. You can't run the HP synaptic touchpad drivers because … | |
Re: I'm not sure if I'm understanding the problem fully, but it looks like you are trying to give the same template two names? You could try making a second template with the second name you want, and add [code] friend class QuantitativeStats<T>; [/code] That should allow you to create a … | |
| |
Re: What OS? Edit: Vista or 07 In the lower right corner, you should see an icon that looks like a speaker. If you don't, there should be an arrow that will expand the icons that are in the lower right corner near your clock time. Click the expand arrow, then … | |
Re: [QUOTE=behavet;1348123]how can i make program using arrays related to my course civil engineering? answer please?[/QUOTE] Please, use code tags when you post. It makes it easier to read. Also, in your programming, the language you are using is C, not C++. You also are using main incorrect. you want to … | |
Re: led might not be working or their could be a lose wire in the laptop itself that came off some pins. Did this problem occur immidietly after sending your PC in for repairs the first time? Edit: Also, what do you consider a cold start? If the pc is hibernating, … | |
Re: You can use thiskey in the music constructor, but it won't work written as is. If you include a Key thiskey as a parameter in the Music construct, and pass thiskey to the constructor, it'll work. Also, what was said before, [code] music[2]=thiskey.display; [/code] display is a void, and void … | |
Re: If the problem occured prior to the laptops post, it would be hardware related. Because it happens after post doesn't mean it's software related,, it could still be either or. How often does it succesfully load windows? Try booting until it loads into windows, then perform some tasks which tax … | |
Re: I'm not seeing anything wrong with that function, but one of the other functions may be throwing it off. Try commenting out the other cin funtion, and assign the values and run the program. If that doesn't work, comment out each function one at a time until the getResponse function … | |
Re: [code] #include<iostream> using namespace std; bool IsConsonant(char); int main (int argc, char* argv[]){ ... } bool IsConsonant(char ch){ ... } [/code] The structure will resemble something like that. I'll let you fill in the ... | |
Re: line 23, set counter to 0. line 32, your if statement is syntatically incorrect. you need ==. Also, you don't need that if statement. Line 33, sumEvens = number + number? Think about that for a sec. If the number happens to be 2, sumEvens will be 4. The next … | |
Re: Your graphics card may be overheating. If your graphics card has a fan (most do) check and make sure it works when the PC is turned on. If it doesn't work, your graphics card is bad. Try pulling the graphics card and use on board video if you have it. | |
Re: [code] if (n == 1) cout << "1"; else if (n == 2) cout <<"1"<<endl<<"23";} else if (n == 3) cout <<"1"<<endl<<"23"<<endl<<"456"; else if (n == 4) ... [/code] Repeat the sequence until you reach the maximum possible input for int which is I think 32,767. After it's done, don't … |
The End.