Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~12.1K People Reached
Favorite Forums
Favorite Tags

23 Posted Topics

Member Avatar for Hawkpath

Hello DaniWeb, its been a long time! Anyway, I'm trying to put classes and functions inside .h files and define them in respective .cpp files. Whenever I try this, I get a weird error that I think has something to do with my constructor: obj\Debug\main.o||In function `_static_initialization_and_destruction_0': | main.cpp|33|undefined reference …

Member Avatar for Hawkpath
0
8K
Member Avatar for Hawkpath

I'm a beginner c++ programmer. I use Win XP and CodeBlocks. I'm trying to make a pong game, I already have the controls programmed, but I need a method to do the following: Check for user input, if they don't input for x milliseconds, then continue with the loop so …

Member Avatar for katmai539
0
198
Member Avatar for Hawkpath

Hi, I'm trying to create a simple program in Win32 and I can't find how to accept input in the form of text. Like "What's your name: ___" then the user enters their name and my program can evaluate the input. I have already googled this for a long time, …

Member Avatar for Frederick2
0
499
Member Avatar for harpay

Ehh what do you need help with?? Looks like you just copy and pasted your homework assignment. All I see is some simple multiplication and addition. Accompanied by std::cout. Does that help?

Member Avatar for nbaztec
0
582
Member Avatar for pawan_sharma777
Member Avatar for Hawkpath

Hello, I made a class and now I want to store instances of those classes in an array. I looked it up and found it was as easy as: [CODE]className arrayName[x][/CODE] When I tried that I got this error: [B]error: no matching function for call to 'archerTower::archerTower()'| [/B] My class: …

Member Avatar for Hawkpath
0
115
Member Avatar for Hawkpath

How would I make something like a high scores function on a java applet? Like how would I record the score the person got and then access later?

Member Avatar for NormR1
0
448
Member Avatar for Hawkpath

Hello all, I'm taking a programming course in python and I have to write a program using certain math functions like pow() and sqrt() and I don't know what to program. Please give me some ideas on programs. I don't need to know how to program them, just what to …

Member Avatar for Gribouillis
0
139
Member Avatar for Hawkpath

Hello All! I ran across a bit of code that I wanted to try. In this code it had a line reading, "[COLOR="Red"]orig = POINT()[/COLOR]" When I tried to run I got this error: [COLOR="red"]NameError: name 'POINT' is not defined[/COLOR]. This led me to believe that I didn't have the …

Member Avatar for Beat_Slayer
0
124
Member Avatar for Hawkpath

I'm not sure if this is the right place to post this, but I do use c++ so....yah. My problem is that I don't know what to do now. I'm certain I haven't mastered c++, but I think I've mastered the basics. So now I'm thinking "What now"? Is there …

Member Avatar for NathanOliver
0
138
Member Avatar for Hawkpath

Alright guys, I have a really weird error here. I'm programming a program that lets you specify the red, green, and blue components then stores them in arrays and uses the colors when drawing shapes. The program worked perfectly until about five minutes ago. Nothing affecting that specific part of …

Member Avatar for mrnutty
0
191
Member Avatar for Hawkpath

Hey, my friend and I made this website: [url]http://www.letslearncpp.forumstech.com/[/url]. This website is complete with text and video tutorials made by my friend and I. Please visit this website and join it if you want to. Thank you.

Member Avatar for Hawkpath
0
197
Member Avatar for Hawkpath

Hi, I'm just learning win32 and i wanna know: is it really necessary that i memorize all of the syntax. Is that what professionals do? Or can I just copy and paste it every time and just know what it does. Thanks, Hawkpath

Member Avatar for Rajesh R Subram
0
159
Member Avatar for Hawkpath

So heres the problem. My Grandmother needs to look up stocks, but she has trouble using "FoxFire" to look it up. I need a way where she can enter the name of the stock she wants, and the program enters it into a google search and searches for the stock. …

0
74
Member Avatar for Hawkpath

Hello, I'm currently in High School and looking for a career in programming, and my dilemma is this: Game programming or Software Engineering? I have heard the horror stories of terrible hours and bad job security in game programming. But I haven't heard much about software engineering. Please enlighten me. …

Member Avatar for geoffy0404
0
455
Member Avatar for kaizen_duck

I didn't quite understand the problem. Is it a hangman game, or a number guessing game? If its hangman, then consider the following plan: [I]Create a vector of words Create a vector of hints Select a random word and how ever many hints you want from the vector create a …

Member Avatar for kaizen_duck
0
222
Member Avatar for Hawkpath

Hello, I need help with the following code: [CODE] #include <windows.h> #include <tlhelp32.h> #include <conio.h> #include <stdlib.h> #include <iostream> bool ChangeMemVal(const char * ProcessName, LPVOID MemAddress, int NewVal, int size); int main() { printf("=== Pinball Trainer Example. Made by Hawkpath ===\n\n"); if(ChangeMemVal("pinball.exe", (void*) 0x000F4240, 1000000, 4)) printf("The score has been …

0
68
Member Avatar for Hawkpath

Hello, I need help to learn how to edit memory references. Don't worry, I'm not gonna hack NASA or anything. Just minesweeper to start out with. What I need to know is this: What is the code for editing memory references? I know you have to use a memory reference …

Member Avatar for Hawkpath
0
82
Member Avatar for Mental1ty

I'm also new to programming and at first was confused by all the C's and +'s and whatnot. Lol. Ask your self what you want to do the most. Program games? Useful software? If you answer games. then start with c++ or java. I started with c++. If you answered …

Member Avatar for JameB
0
147
Member Avatar for syedabdulsamad

download code::blocks, start a new console project, then type: [CODE]#include <iostream> using namespace std; int main(){ cout << "Hello World" << endl; system("PAUSE"); return 0; }[/CODE] Hit F9, then look up more tutorials on youtube

Member Avatar for Hawkpath
0
176
Member Avatar for Hawkpath

Hello, I'm writing a rubiks cube solving program, and I would like to condense all of the turn definitions into functions like rightTurn(); I'm using Windows XP and Code::Blocks. An example of a turn definition is : [CODE]cout << "Executing bottom turn: " << endl; a = front[6]; b = …

Member Avatar for Hawkpath
0
107
Member Avatar for Hawkpath

In a rubiks cube solving program I'm writing, i wanna make it so if the space is red, then a red "R" appears. I don't know how to do this with out changing the color of all the text on the screen. I use: [CODE]system("Color XX");[/CODE]

Member Avatar for Hawkpath
0
107
Member Avatar for Hawkpath

The name says it all. I am looking for beginner c++ programmers to create a simple console based application. The application I had in mind would be a rubik's cube solving program. I have already started on it. If you are an experienced programmer and would like to help out …

Member Avatar for Hawkpath
-1
104

The End.