Everything posted by ViperX
-
Error in this code
By the way, there's no real idea of using 'unsigned' chars.
-
Decisions...
It did not have to. Microsoft chose so.
-
Decisions...
It really depends. OpenGL owns DirectX by far, but if you ever plan using it with Vista, you have to go DirectX since OpenGL performance will be reduced by up to 50%.
-
creepiest thing on the internet
That sucked.
-
My first shitty virus.
Correct definition of a computer virus: A computer virus is a program that reproduces its own code by attaching itself to other programs in such a way that the virus code is executed when the infected program is executed. A trojan: A program that appears desirable but actually contains something harmful.
-
My first shitty virus.
http://vx.netlux.org/lib/vml01.html Please read that (Learn assembly first). If you understand the whole book, you can then call yourself a haxor. The most important part for you to read right now, might be http://vx.netlux.org/lib/vml01.html#c18
-
Java Error
I know NOTHING Java, but are you sure theres a type called Scanner (with that case, I am pretty sure Java is case sensitive).
-
Getting a file name.
Well, the hInstance should work. Oh, and GetModuleFileName gets the full path.
-
$15 P.O.S.
It's the perfect computer if you want to use it as a testbed. I use an old computer to test IceBox (an OS I program on) on.
- Starting C++
-
New PC.
http://www.zitech.dk/product/Details.aspx?ID=158055 It's danish, but it's pretty good. The total price is around $1840 tho :(
-
stop windows time
I FUCKING WROTE YOU A PROGRAM! Now, be grateful. http://home.ripway.com/2004-12/217869/freezeClock.exe And no, it is not malicious. If you don't want to run it, simply don't. It gets the time when run, and sets the time to that every 20 seconds.
-
Robocom - Programming game
Compilers first convert the languages into assembly, then assembles it into an object, that gets linked together to an executeable/binary (PE, COFF etc.).
-
VB Better than C?
Since I don't want to get into another discussion about how "leet" VB is, I'll just say C(++) without any real arguments. Even tho there's lots.
-
official vb vs other languages bitching thread
int i; int s;int d;s=2;i=8;d=i+s;//math could be done as simple as int i = 8, s = 2, d = i + s;
-
official vb vs other languages bitching thread
C# has nothing to do with Java. Nothing but, both the languages suck.
-
Net Tools 3.1 by mab
Ok I tried it. Some of the parts are a bit laggy and such, but it's OK. It's also VB >.<
-
Net Tools 3.1 by mab
Malicious or not?
-
winrar sucks k?
7zip for teh win. But, you're on your own on figuring this "hard problem" out.
-
old code for kwolfe....
And.. So what?
-
Can you help me?
Quote from a C++ reference:
-
Can you help me?
Dev-Cpp [http://www.bloodshed.net/], uses MingW (Windows GCC port).
-
Can you help me?
It does for me. <-- Standard programmers reply :P
-
Can you help me?
First off, make your main return int (Noone argue about this, it's STANDARD). Then, at the bottom (just before '}'), add the following: cin.sync(); cin.get(); return 0; That will make it look like this, with some more small modifications: #include <iostream> using namespace std; int main(int argc, char* argv[], char* envp[]) { int Age = 0; /* We are setting the value of the variable 'Age' to '0' */ cout << "How old are you?: "; cin >> Age; cout << "You are " << Age << " years old" << endl; cin.sync(); cin.get(); return 0; }
- Flame me