Search found 17 matches

by live2board
Mon May 22, 2006 3:22 pm
Forum: Programming
Topic: little bit of help
Replies: 17
Views: 2960

You can't get the source code out of a C++ executable file. The compiler turns all the variables into var1, var2, etc. IDA Disassembler will just let you view the hex/assembly code.
by live2board
Thu Mar 23, 2006 9:09 pm
Forum: Programming
Topic: [HTML]making web pages from scratch
Replies: 27
Views: 3324

1. HTML is the most complex code in internet language because it allows GCI script. most of the other scripts are basic 2. If you havent yet noticed, this forum is called SCRIPTING and programming, and HTML is a script the last time I checked. I also disagree with you there on saying that HTML is n...
by live2board
Wed Mar 22, 2006 6:08 pm
Forum: Programming
Topic: Never ending Program
Replies: 11
Views: 2193

Actually it will do just the opposite. Since 'a' will never be evaluated to equal zero, the loop statement will never be executed and the program will end. What would work for an infinite loop is this conditional while (a != 0) Lol oops. Definately shows how long I've been away from C++. And Goto's...
by live2board
Fri Mar 17, 2006 2:37 pm
Forum: Programming
Topic: Visual Basic Express Edition 2005?
Replies: 8
Views: 1050

The Express Edition is the name of the application. It's only VB .NET...
by live2board
Thu Mar 16, 2006 1:50 pm
Forum: Programming
Topic: 2 questiongs about file types
Replies: 4
Views: 967

Aww crap I didn't even notice that. Sorry wasn't paying attention.
by live2board
Wed Mar 15, 2006 8:44 pm
Forum: Programming
Topic: 2 questiongs about file types
Replies: 4
Views: 967

I don't know about #1 but for #2 you can look here, it has some code on how to assign certain file extensions to open with whatever program. Hope this helps.
by live2board
Wed Mar 15, 2006 2:48 pm
Forum: Programming
Topic: Never ending Program
Replies: 11
Views: 2193

If you go "unsigned long a, b, c" you can get alot bigger numbers. Or to create a never-ending loop just test for a condition you know will never return as true. For example: int a = 1; while (a == 0) { cout << "Kevin 0nwz j00!!" << endl; } "a" will never evaluate to be...
by live2board
Thu Jan 12, 2006 9:27 pm
Forum: Programming
Topic: Hacking Challenge
Replies: 20
Views: 3632

I think he means so that people can understand how passwords and things are encrypted.
by live2board
Wed Jan 04, 2006 4:22 pm
Forum: Programming
Topic: Need Detailed Help on coding history and bookmarks
Replies: 1
Views: 484

http://www.webdesign-tutorials.com/webd ... p-735.html

You can use that tutorial for understanding how they work and things like that.
by live2board
Wed Nov 09, 2005 4:50 pm
Forum: Programming
Topic: Popup maniac?
Replies: 6
Views: 1007

Put the code in a timer so it opens a window every millisecond or something.
by live2board
Tue Oct 11, 2005 7:33 pm
Forum: Programming
Topic: I want to learn
Replies: 11
Views: 1947

Well if you downloaded VB .Net 2005 then you'll probably want to learn VB .NET.
by live2board
Sat Sep 24, 2005 11:15 am
Forum: Programming
Topic: xoring dwords of data in Java or C (Encryptomatic Signature)
Replies: 5
Views: 869

Because Java is so ungodly slow, and plus it just plain sucks.
by live2board
Thu Sep 22, 2005 7:53 pm
Forum: Programming
Topic: Programming: Stream classes in C++ (very very basic)
Replies: 7
Views: 13168

Oh I don't need to know how to do arrays, I'm fairly comfortable with arrays I was just saying if you wanted to cover all the bases of the C++ basics you could do a tutorial on arrays. But a vectors tutorial on the other hand, could be quite useful.
by live2board
Fri Jul 01, 2005 2:46 pm
Forum: Programming
Topic: Programming: Stream classes in C++ (very very basic)
Replies: 7
Views: 13168

Most of the C++ basics are here so you could maybe write a tutorial on array's? Or if you wanted to get more complex maybe some vectors :twisted:. That would help me out. You could've made it atleast *look* easier by using the std namepsace, but it's still a good tutorial.
by live2board
Mon Mar 28, 2005 4:58 pm
Forum: Programming
Topic: Programming: "Hello World " Program in C++
Replies: 30
Views: 23156

post it than. Nobody is holding you back. Show us your mad C++ programming skillz. Because we all know your a l33t haxx0rz!
by live2board
Sun Mar 27, 2005 12:51 pm
Forum: Programming
Topic: Programming: "Hello World " Program in C++
Replies: 30
Views: 23156

http://www.developer.com/net/cplus/article.php/3436841
nice try buddy. and don'y tell me you wrote that because I know you didn't. You should've atleast changed the text so it would've been harder than a google search. Especially when its the first site that comes up.
by live2board
Sun Mar 27, 2005 10:17 am
Forum: Programming
Topic: Programming: "Hello World " Program in C++
Replies: 30
Views: 23156

mopopo your a joke. All you did was you copied those languages out of the menu in Notepad++ and wrote them down, and if you were trying to make any of these programs to work in Notepad++. Good luck. Notepad++ is an editor. It can't compile programs, all it does is edit the source code. Highlights th...