Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
~14.2K People Reached
Favorite Tags
Member Avatar for mattybennett

[QUOTE=mattybennett;660156]Hi all, Ok - there's nothing like a BIG challenge to start off my exploration into programming. I know some VB and find Java difficult, also haven't used C# or C++ before, but hear that they are fast. [/QUOTE] Why are you tackling a big project if you haven't used …

Member Avatar for joel.queiroz
0
2K
Member Avatar for winky

[QUOTE=grenadeh;659067]If you're going to be a jackass go ahead and refrain from using your keyboard, no one wants to read your insolence. He asked for help, not destructive criticism. Regardless, I have to agree that a fair amount of the time if you read the compiler message, you will generally …

Member Avatar for chrjs
-2
3K
Member Avatar for ff4930

I am a beginner in ASP.NET, have been reading ASP.NET 3.5 unleashed. I was wondering if there is a site or any cool exercises/projects that is good to do using ASP.NET so I can get more practice. I feel reading is not practical enough and doing the already done examples …

Member Avatar for muthu.guts
0
198
Member Avatar for preet4fun

[QUOTE] i got the program runing good enough .. thats what i think please feel free to tell me if you find any glitches or any improvements that i can make .. but the problem is this if some one enters account balance 0 than the account balance at end …

Member Avatar for puranchandra248
0
2K
Member Avatar for ff4930

Hello, Im new in ASP.NET and have been reading about state management and have a couple of questions, it be great if someone could help me understand. Im having trouble understanding the use of ViewState. It is only limited to the current page, what kind of typical/common use would it …

Member Avatar for greeny_1984
0
365
Member Avatar for clutchkiller

[QUOTE=ddanbe;786858]I use Visual Studio. It has about the coolest debugger you can get.[/QUOTE] I agree, VS has the greatest debugger. The UI is not bad also, also alot of customization to your liking.

Member Avatar for TheBeast32
0
131
Member Avatar for serkan sendur

I believe you can google an article out there, there are many. Very brief info about them. When you create an object in the stack, the object will be deleted at end of the scope. When you create an object in the heap, it is in memory and will be …

Member Avatar for serkan sendur
0
97
Member Avatar for lakshmi mani

[QUOTE=lakshmi mani;779003]A University has decided to computerize its exam grading. They have a standard paper that contains 25 multiple choice questions each with four choices. All the answers by students are entered in a file. You are to read the file and calculate if the student passed or failed (60% …

Member Avatar for Freaky_Chris
0
118
Member Avatar for mjfall01

If you really like this site well enough you would read the rules. No code = no work = no help.

Member Avatar for William Hemsworth
0
261
Member Avatar for lilnedy

When it comes to actual programming it is very easy. The main issue as sillyboy mentioned is understanding the concept of the game. Since you are a beginner try thinking what are the classes you need and what it should do. Once you accomplish that go through the program step …

Member Avatar for VernonDozier
0
105
Member Avatar for shiniboy

Think of the connect 4 as tic tac toe but different algorithm in finding the winner. 1-You would print the board 2-prompt player 1 for position on the board he wants 3-Let player 1 have 'X' and player 2 have 'O' or '1' or '2' or w/e character you want …

Member Avatar for ff4930
0
69
Member Avatar for Kcube989

Is relatively simple. You can output a 5x5 board and label each box as coordinates. Then you take turns asking for user input -- given at least 2 players play. 00 01 02 03 10 11 12 13 20 21 22 23 30 31 32 33 Say I want to …

Member Avatar for ff4930
0
100
Member Avatar for djhello
Member Avatar for msashley09

[QUOTE]I am a newbie here and I haven't read anything--I know I should. Sorry in advance if I break any rules in this posting.[/QUOTE] If you knew you should, why didn't you? One of the rules is if you show no work = no help.

Member Avatar for Salem
0
119
Member Avatar for n03ly

[QUOTE]then enter however [B]many [/B]grades they want[/QUOTE] [QUOTE]float grades [5] = {4, 3, 2, 1, 0}; [/QUOTE] Perhaps you can prompt the user how many students and how many grades each student will they input so you know how much to allocate your arrays. [QUOTE]float Student::averagegpa() [/QUOTE] you know how …

Member Avatar for n03ly
0
716
Member Avatar for alleycot

[QUOTE=Ancient Dragon;705571]I have seen sites that will write people's homework for $$$. But DaniWeb is not one of them :)[/QUOTE] Maybe it should ;)

Member Avatar for Ancient Dragon
1
263
Member Avatar for tatainti55

Threading is running multiple processes at once. or translated, a program doing multiple tasks at the same time. Because doing multiple things at the same time may affect certain things such as changing data. If Thread A is changing data and Thread B comes across and also wants to change …

Member Avatar for Freaky_Chris
0
71
Member Avatar for bone7_7

C++ Without Fear was my 1st C++ class textbook and C++ Primer. For a little intermediate try Scott Meyer books and Professional C++. Pretty helpful.

Member Avatar for RaiTsu
0
110
Member Avatar for CoolGamer48

I think about this too. I really want to experience work related programming and not school related. Ive found this to get a picture [URL="http://nytimes.vault.com/cb/content_main.jsp?cb_page=12&ht_type=1&name=A+Day+in+the+Life&parrefer=806"]http://nytimes.vault.com/cb/content_main.jsp?cb_page=12&ht_type=1&name=A+Day+in+the+Life&parrefer=806[/URL] This to be more exact [URL="http://nytimes.vault.com/cb/content_main.jsp?cb_page=3&article_id=28332068"]http://nytimes.vault.com/cb/content_main.jsp?cb_page=3&article_id=28332068[/URL]

Member Avatar for William Hemsworth
0
184
Member Avatar for RayvenHawk

Classes are same as structs with the exception of default private and public.

Member Avatar for Undertech
0
132
Member Avatar for how1121
Member Avatar for Traicey

You should have a separate function to sort the linked list. Selection sort should be fine, what didnt work out? Have a node call LowestNode and have equal to the head of the list and iterate comparing if its smaller then that node becomes the lowest and if it reaches …

Member Avatar for Prabakar
0
98
Member Avatar for cam875

You can easily google STL vector information/documentation/library and learn from there. Here are some basic features. Vectors are similar to arrays but they are not fixed sizes, they can grow. When the vector is close to its capacity it will allocate more space automatically. There are functions to get element …

Member Avatar for CoolGamer48
0
94
Member Avatar for kinger29
Member Avatar for sahmedsa

int a = 10; a is an integer with value 10 int* b = &a; b is a pointer to an integer which points to the address of a int c = 4; c is an integer with value 4 int* d = &c; d is a pointer to an …

Member Avatar for sahmedsa
0
198
Member Avatar for ff4930

Hi, I am relatively new to C#.NET and I was wondering if the garbage collection is similar to Java. I am developing a windows form application and I am dynamically making new buttons, will they be deleted by themselves or will I manually need to delete them? For example: this …

Member Avatar for sarehu
0
131
Member Avatar for allena
Member Avatar for n1337
0
487
Member Avatar for ff4930

Hello everyone, I am new to maps and I have a simple question. I have a map that stores a string as key and the data I want a map<int, int> so my syntax is map<string, map<int, int> test; What would be the syntax to insert say "hello" and say …

Member Avatar for Narue
0
118
Member Avatar for ff4930

I am using Maps from the STL to insert a polynomial. The Key is the exponent and the data is the coefficent. Basically I want to add/subtract and multiply them. I have the addition/subtraction down but when it comes to multiplying I have to add the exponents and multiply the …

Member Avatar for Alex Edwards
0
104
Member Avatar for zoner7

SimpleCat :: SimpleCat(int age, int weight): itsAge(age), itsWeight(weight) {} It is defining Simple Cat's 2 parameter constructor. It is setting the age and weight. This is the more efficent method because if you define itsAge = age; itsWeight = weight; in the body of the construtor, you are basically calling …

Member Avatar for ff4930
0
86