- Strength to Increase Rep
- +8
- Strength to Decrease Rep
- -2
- Upvotes Received
- 28
- Posts with Upvotes
- 23
- Upvoting Members
- 16
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
| |
Re: I'm assuming this is an assignment in a beginning programming course. As such, I would look at this problem as a series if nested if statements. Pseudocode is kind of like writing down programming logic without worrying about syntax. So for this exercise you don't have to know how to … | |
Re: If you have a Premium subscription to LinkedIn, the most comprehensive CSS turorial I have come across is CSS Core Concepts on Lynda.com. Courses on Lynda.com are free with the Premium LinkedIn subscription. | |
Re: I won't write your code, because like others have said, iy is not our place to do your homework for you. I will, however, give you some psedocode to point you in the right direction. I believe that it is the goal of a forum such as this to provide … | |
Re: I am unclear on what specific type of input you want to take in. You say letters. Do you mean chars that are specifically A-Z and a-z? Do you mean a string of characters without spaces? Or do you want a string of characters with spaces? Each one requires a … | |
How would I write a C++ class of which only one can be created ever be instantiated in any program. I know that ClassName* objectName = new ClassName(); instantiates an object, but how would I make it so when you try to instantiate it more than once you still end … | |
Re: As far as I know, you can't do this using CSS alone. I could be wrong, though... | |
Re: Are you wiping the drive (or partition) and doing a fresh install or are you trying to write over the old Windows installation? | |
Re: I use Dreamweaver simply because I like the auto complete and color coding features of it...but I still do all of my coding line by line. | |
I am trying to learn how to write a merge sort function, but I have only gotten so far with the book I am using now: [code] template <class T> void mergeSort(vector<T>& s) { mergeHelper(s.begin(), 0, s.size()); } template <class Itr> void mergeHelper(Itr start, unsigned int low, unsigned int high) … | |
Re: If this is a form, have you tried [html] <input type="reset" value="Reset!"> [/html] | |
Re: I found this article on embedding fonts in a web page [URL="http://www.sean.co.uk/a/webdesign/embedding_fonts_in_webpages.shtm"]http://www.sean.co.uk/a/webdesign/embedding_fonts_in_webpages.shtm[/URL] It only works in IE though. | |
Re: Can we see your code, please? | |
Re: [code]<link href="../style.css" rel="stylesheet" type="text/css" />[/code] | |
Re: Click on sites/manage sites/edit and click through until you get to the ftp page for the site you want. Click the SAVE checkbox next to "What is your FTP password?" I've never had a problem with it not connecting to my site. If it is not connecting, recheck your ftp … | |
Re: Let's see if I can explain this right... A partition is simply a way of dividing the space on your hard drive to be used for different purposes. For instance, my hard drive is 160GB and I have formatted 2 partitions. The partitions are read as different drives (C and … | |
Re: No...and no. Your for loop should be formatted similar to [code] for(int i = 0; i < count ; i++) { average += grade[i]; } [/code] () and {} do not do the same thing. There are many other problems with this code as well. | |
Re: Here is the definition of algorithm... [url]http://en.wikipedia.org/wiki/Algorithm[/url] | |
Re: You could also try absolute positioning of the menu using CSS. Theoretically, items positioned with CSS are stacked on top of items that are not positioned with CSS. | |
Re: You would need to change your coding from paragraphs to nested divs. | |
Re: Javascript can only size or resize a window that has been opened with javascript. | |
Re: If that doesn't work, go to start->run and type in msconfig press enter click on the startup tab and post the file names listed under commands here. I'm specifically looking for winstall.exe ibm000001.exe spysheriff.exe If you have any of these, go to [url]http://www.xoftspy.com/[/url] and download their spy removal tool. If … | |
I accidentally added the following line to my SQL database twice: [CODE]INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_birthdays_ahead', '7');[/CODE] How do I remove one of them? | |
Re: You might try a program called Tigra Scroller. [url]http://www.softcomplex.com/products/tigra_scroller/demo1.html[/url] | |
Re: I use javascript for this. I have a menu.js file that wil update my menu links sitewide. I do the same for my footer as well. | |
Re: To my knowledge, there is no valid way to do this using only html and css. Try using the following script, where paragraphID is the id tag name of the paragraph. (i.e. [inlinecode] <p id="paragraphID"> [/inlinecode] [code] window.onload = initPage; window.onresize = initPage; function initPage() { // Get paragraph height … | |