Posts
 
Reputation
Joined
Last Seen
Ranked #801
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
88% Quality Score
Upvotes Received
28
Posts with Upvotes
23
Upvoting Members
16
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
6 Commented Posts
Member Avatar for samaru
Member Avatar for phphp
Member Avatar for diafol
0
281
Member Avatar for Lily_3

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 …

Member Avatar for FC Jamison
0
214
Member Avatar for Chris920

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.

Member Avatar for FC Jamison
0
339
Member Avatar for Louie_3

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 …

Member Avatar for FC Jamison
0
148
Member Avatar for rhaylee

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 …

Member Avatar for FC Jamison
0
382
Member Avatar for FC Jamison

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 …

Member Avatar for rubberman
1
6K
Member Avatar for ncaditya
Member Avatar for sleepswim

As far as I know, you can't do this using CSS alone. I could be wrong, though...

Member Avatar for drjohn
0
117
Member Avatar for Yzk
Member Avatar for NotThereAnymore

Are you wiping the drive (or partition) and doing a fresh install or are you trying to write over the old Windows installation?

Member Avatar for Ethire
0
631
Member Avatar for ndeniche

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.

Member Avatar for Ausopenxcell
0
502
Member Avatar for FC Jamison

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) …

Member Avatar for Lylla
0
176
Member Avatar for Braga_ESI

If this is a form, have you tried [html] <input type="reset" value="Reset!"> [/html]

Member Avatar for fizerahmani123
0
641
Member Avatar for prashanth18

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.

Member Avatar for leakbali
0
269
Member Avatar for ivanCeras
Member Avatar for Racoon200
Member Avatar for floatingDivs
0
159
Member Avatar for cashblogs

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 …

Member Avatar for Brian Stephens
0
250
Member Avatar for FireSBurnsmuP

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 …

Member Avatar for SaintThomas
0
159
Member Avatar for tln26

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.

Member Avatar for hits86
0
376
Member Avatar for Crisis757
Member Avatar for dodo rawash
1
167
Member Avatar for eihd

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.

Member Avatar for keshavgarawal89
0
1K
Member Avatar for plarsen111
Member Avatar for diafol
0
598
Member Avatar for tiffythom
Member Avatar for almostbob
-1
1K
Member Avatar for taffylad

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 …

Member Avatar for characteredu
2
375
Member Avatar for FC Jamison

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?

Member Avatar for ZootAllures
0
128
Member Avatar for spacepoet

You might try a program called Tigra Scroller. [url]http://www.softcomplex.com/products/tigra_scroller/demo1.html[/url]

Member Avatar for MikeWatson
0
130
Member Avatar for Vicksley

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.

Member Avatar for Tonupunuri
0
230
Member Avatar for tefflox

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 …

Member Avatar for michaeli99
0
119
Member Avatar for irfan.motiwala