Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~2K People Reached
About Me

Programmming, anime, furies. enough said. XP

Interests
see bio.
PC Specs
HP A6200N Desktop AMD athelon dual core Windows vista service pack 1 Ubuntu 10.10
Favorite Forums
Favorite Tags
Member Avatar for altXerror

ok. so i'm having trouble with the Windows API. i'm just learing how to use it, so i don't know much about it. anyways, i just wanted to create a window and have it displayed then catch the exit message and close, but VC Compiler is throwing errors. 1>c:\users\furrix\documents\visual studio …

Member Avatar for altXerror
0
327
Member Avatar for altXerror

sorry for long post name. anywyas, i'm converting an emulator a friend of mine made into VB form C. i came into some problems at the end where return is casuing an error. here is the code: [CODE] 'The following #define macro was replaced in-line: 'ORIGINAL LINE: #define ROPCODE(offs) ((oprom[offs] …

0
82
Member Avatar for altXerror

i have a header file which contains a random number generator here is the code: [CODE]#include <cstdlib> #include <time.h> #ifndef RANDOM_H struct rand_var{ int x,y; }Rand_var; static int rand_gen() { srand ((unsigned)time(NULL)); extern int random; random = rand() % (Rand_var.x-Rand_var.y+1) + Rand_var.x; } #endif /* random.h */[/CODE] you will probably …

Member Avatar for altXerror
0
148
Member Avatar for altXerror

i have part of a text based game that keeps track of the HP , DEF... and such. it needs to be able to replace the current value for the variables, in which case are: [CODE]long HP, def, sheild;[/CODE] for instance, you battle a monster and the attack does 75 …

Member Avatar for daviddoria
0
86
Member Avatar for altXerror

ok. i am woking on a web browser for a friend of mine. everything works except for the favourites / history code, which is giving me an Unhandlded access violation. i have tryed using [CODE]Try[/CODE] but then it gives me a file not found error when attempting to append the …

0
104
Member Avatar for altXerror

i am trying to make an OS using cosmos boot in VB.net it is called TrippyDOS i have this code here: [CODE]Imports System Imports System.Collections.Generic Imports System.Text Imports System.Globalization Imports System.Int32 Imports System.Globalization.CompareInfo Namespace TrippyDosA Public Class Kernel Inherits Cosmos.System.Kernel Protected Overrides Sub BeforeRun() Console.WriteLine("Cosmos booted successfully. Type a line …

0
85
Member Avatar for altXerror

i'm trying to make a password system for my program. a user will input upto 20 chars, and if the password is correct, load the main program and if not, loop until the user gives up or enters the correct answer. here is the code [CODE] void Password(char pass); int …

Member Avatar for pseudorandom21
0
184
Member Avatar for altXerror

sorry for the noob question. i'm new to python. i'm trying to learn about classes and def. i created a simple one here called test2.py [CODE]class test: def Test1(T1): T1 = "this is a test"[/CODE] i have another python file, which is the main program called test1.py [CODE]from test2 import …

Member Avatar for richieking
0
115
Member Avatar for altXerror

i'm having problems with this code. it's supposed to be a simple loan calculator i had to fix, but i can't get it to work. my freinds told me it wasn't possable to complete using 'catch', 'try' and 'throw' (not using throw), so i attempted to fix it with that. …

Member Avatar for SgtMe
0
200
Member Avatar for altXerror

hey guys! i decided to make my own programing language. it is called tempestX. the beta is not ready yet but when it is, i will provide a link for any one who wants to try it. here is a brief explanation: i was used to programing in windows batch, …

Member Avatar for avarionist
0
180
Member Avatar for altXerror

i have a Header file that i will be using for multiple programs. this file specifies integers (its for my calculator programs). is it possible to have an integer value represented as AB if the two other integers are represented as A & B without getting a compiling error? EX. …

Member Avatar for mrnutty
0
154