- Strength to Increase Rep
- +11
- Strength to Decrease Rep
- -2
- Upvotes Received
- 220
- Posts with Upvotes
- 95
- Upvoting Members
- 62
- Downvotes Received
- 13
- Posts with Downvotes
- 13
- Downvoting Members
- 9
Software Engineer
- PC Specs
- Dell Precision 390 Workstation Windows 7 Ultimate Intel Core 2 Duo 2.40GHz/1066MHz/4MB 2GB 667MHz SDRAM…
| |
Well I just started eating dinner and thought this would be a neat topic. Everyone knows we love to eat while on the computer; two birds, one chair. I'll start it off: Deli Sandwiches, macaroni salad, potato salad and a Pepsi :) | |
Hey guys, here's the question I'm asked. **a.** *Define an enumeration type, triangleType, that has the values **scalene, isosceles, euilateral, and noTriangle**.* **b.** *Write a function, triangleShape, that takes as parameters three numbers, each of which represents the length of a side of the triangle. The function should return the … | |
Re: not a big anime kind of guy... but i do love Vampire Hunter D: Blood Lust excellent movie. | |
Hey Everyone, I'm doing a little test for a presentation I'm giving on Tuesday. I wanted to show the performance difference between VB2008, C# and C++. To do this, I have three programs. Each program performs the Fibonacci sequence X times, and can either do it iteratively or recursively. As … | |
Re: awesome article. thanks | |
Re: Personally, here's what I would do. Imagine drawing the stars logically: [code=c++] [ ][ ][ ][*][ ][ ][ ] [ ][ ][*][*][*][ ][ ] [ ][*][*][*][*][*][ ] [*][*][*][*][*][*][*] [/code] We need to figure out how to input these accordingly though. For me, it makes more sense to initialize our array … | |
Re: [B]>It is due you are trying to access a value pointed by pointer outside the scope.[/B] So... did you bother testing your code before posting it? Sure it prints now - but perhaps pointing member variables to the same memory location throughout the entire program isn't the best idea (i.e., … | |
| |
Re: [quote=pedrosha;306479]well, i had the same problem. i have had my 15" fs dell since august 2003. never had a moments problem with it. until early december. i left my pc on and when i came back 30 minutes later it had the "white screen of death". nothing cleared it so … | |
Hey everyone, I have this problem. I need to access data that the user inputs via the <input /> statement during the controller method. Here's my code, maybe this will make it more clear: // client side @using (Html.BeginForm()) { if (competitorList.Count > 0 && eventList.Count > 0) { foreach … | |
Re: Google will never partner with Microsoft... they are arch rivals. :D (The Google Story- Great book) Dear John, I have been unable to sleep since I broke off our engagement. Won't you forgive and forget? Your absence is breaking my heart. I was a fool, nobody can take your place. … | |
Re: Can you be more specific about what you're having troubles with? | |
Hey guys, I'm trying to understand how radix sort works in C++ : I've looked over the C++ implementation from wikipedia: void radixsort(int *a, int n) { int i, b[MAX], m = a[0], exp = 1; for (i = 0; i < n; i++) { if (a[i] > m) m … | |
Re: rofl. so i read this page [url]http://www.daniweb.com/forums/thread85817.html[/url] and then i was like hm, wonder how long the thread is... so i clicked [URL="http://www.daniweb.com/forums/thread85817-6.html"]Last.[/URL] allow me to bring us back on topic. "i didn't know i couldn't do that" | |
Re: try this: [url]http://www.loginrecovery.com/[/url] | |
I'm trying to find an event that handles which tab is clicked? I know it has to be simple, I'm just missing it. I want to say "when tab1 is clicked, do this, when tab2 is clicked, do that" | |
| |
Hey everyone, I'm trying to code a webform to allow people to input data on several objects in a database. I'd like to have them be able to click an update button for each item they want to update, popup a box for the value, and pass that value to … | |
hey everyone - I'm trying to figure out how to call the appropriate httpPost methods for a particular jtable instance? I thought it was specified by the actions in the javascript, but I can't figure it out. Can anyone give me a hand? Here's my script and the httpPost method … | |
Hey everyone, I'm having some problems with my code and was hoping someone could give me a hand. Here's the snippet I'm working with: [Authorize] public ActionResult EventResults(int id) { List<Event> CompetitionEvents = Event.getEventsByCompetitionId(id); ViewBag.CompetitionEvents = CompetitionEvents; List<Person> Competitors = Competition.getCompetitorsByCompetitionID(id); ViewBag.Competitors = Competitors; List<Results> Results = Competition.getCompetitorResultsPairings(CompetitionEvents, Competitors); ViewBag.Results … | |
Hey everyone, I'm pretty new to web design in general, so I'm not really sure how to get started with this. I have a wordpress site that I would like to be able to manage user profiles on. The built in account management stuff works great for regular logon/off sessions, … |