Code of Conduct
Welcome User! Code Of Conduct is here to present you with all your hacking needs. We are currently working on our VIP, so stay tuned!
Code of Conduct
Welcome User! Code Of Conduct is here to present you with all your hacking needs. We are currently working on our VIP, so stay tuned!
Code of Conduct
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Code of Conduct

Code Of Conduct, World of Hackers
 
PortalHomeLatest imagesSearchLog inRegister
we are in need of moderators applie on announcements:moderators fourms if intrested
HELP YOUR SITE PROMOTE US!
HELLO USERS! we are curently working on trying to form a partner ship with http://excellzone.mrforum.net i have talked to there staff and they are great users
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!
NEW
GOTO CODEOFCONDUCT.WS ITS OUR NEW SITE!!

 

 learn how to code

Go down 
4 posters
AuthorMessage
a2zhacker
Owner
Owner
a2zhacker


my mood : learn how to code Mood-icons-05
Poster Award poster award
Warning Level : learn how to code Untitled-5
Posts : 120
Points : 2147483646
Reputation : 8
Join date : 2011-01-12
Age : 27
Location : tell me yours first

learn how to code Empty
PostSubject: learn how to code   learn how to code Icon_minitimeThu Jan 20, 2011 1:01 pm

ok so u waana learn how to coed huh?
well the 1st place to start is to figure out why you wana do it heres how

I.do you just wana make a smiple CA hack nothing fancy just to take pride?
II.Do u wana learn to be a acctual coder of a coding team
III.do u wana learn to make it a career

after u figure that out heres hoe much time you should spend on the lessons:
I: just a quick 3week-1month read through
II: your gona wana read close and study for about 5months
III: i wana make it a job its a great job and will always need ppl ull wana study for a whole year! or even more read everything close!

ok next order of buissiness:
befor you do anything i wana give you some warnings but dont be discourged if u rrly wana code
1st you must have TIME
2nd patcients patcients patcients
3rd you can get frusterated finding code errors is though and somtimes u might have to satrt all over!

ok next:
theres 2 types of coding ull learn both VB and VB C++
ill be demonstarting VB because its simpler to expalin and yeah
the first script u should write is in the tut but ill post simple as u go 1st to help

ok so there 2 programs whats the diffrence?
heres the diff:
VB is for making programs like loaders and pre selet hacks and injectors even web browsers(ill show u how to make 1 later on)
VB C++ is primarly for coding DLLs

ok were do i download these?
both are here [You must be registered and logged in to see this link.]
u wana pick C++ and VB 2008 express
i prefere 2008 because i like it better

now for the fun i write up a schedual of the lesson links THOSE ARE THE MAX YOU SHOULD GO EACH NIGHT IF U GO MORE UR MOVING TO FAST
learncpp is the web lessons u wana study i will have my own codes for u to copy and paste as u go as a break and to study a little so lets get started
___________________________________________________________________________
[You must be registered and logged in to see this link.] lesson links
lesson planner:
0.2 Introduction to programming languages
0.3 Introduction to C/C++
0.4 Introduction to development
0.5 Installing an Integrated Development Environment (IDE)
0.6 Compiling your first program-------------------------------------------------------tonight
0.7 A few common C++ problems

Chapter 1 C++ Basics
1.1 Structure of a program
1.2 Comments
1.3 A first look at variables (and cin)
1.4 A first look at functions
1.5 A first look at operators
1.6 Whitespace and basic formatting
1.7 Forward declarations
1.8 Programs with multiple files-------------------------------------------------------------1/20
1.9 Header files
1.10 A first look at the preprocessor
1.10a How to design your first programs
1.11 Comprehensive quiz

Ok lets make your 1st program Were going to use plain VB for this not VB C++
Step 1:
Add a Menu Strip
Add Panel
Add 7 Buttons
Add 2 ComboBoxes
Add a Status Strip
Add 3 RadioButtons
Add a WebBrowser
Step 2:
Put everything in place
Step 3:
In the MenuStrip Name the first one "File" without the quotes
In the "File" MenuStrip item make:
"Print"
"Print Preview"
"Properties"
Then a seperator
"Exit"
(all without quotes)
Step 4(this is optional):
In the MenuStrip name the second one "Theme" (again, without the quotes)
In the "Theme" MenuStrip item put:
"Regular"
"Black and White"
etc.
Step 5:
Name Button1 "Back"
Name Button2 "Forward"
Name Button3 "Refresh"
Name Button4 "Stop"
Name Button5 "Home"
Name Button6 "Go"
Name Button7 "Search"
Name RadioButton1 "Google"
Name RadioButton2 "Yahoo!"
Name RadioButton3 "YouTube"
or you a can put in pictures.
Step 6:
On the StatusStrip make a label that says "Done"
Make a ProgressBar on the StatusStrip and make some labels with spaces so the ProgressBar is all the way to the right. Click(once) The StatusStripLabel that says "Done" and make visible to False.

step 7: double click your almost finished web browser. onece the cod epage comes up delet everything then
copy and paste this code:
Spoiler:
Chapter 2 Variables Part I
2.1 Basic addressing and variable declaration
2.2 Keywords and naming identifiers
2.3 Variable sizes and the sizeof operator------------------------------------1/21
2.4 Integers
2.5 Floating point numbers
2.6 Boolean Values
2.7 Chars
2.8 Constants
2.9 Hungarian Notation
2.10 Comprehensive quiz

Chapter 3 Operators
3.1 Precedence and associativity
3.2 Arithmetic operators
3.3 Increment/decrement operators, and side effects----------------------------------1/23
3.4 Sizeof, comma, and arithmetic if operators
3.5 Relational operators (comparisons)
3.6 Logical operators
3.7 Converting between binary and decimal
3.8 Bitwise operators

Chapter 4 Variables Part II
4.1 Blocks (compound statements) and local variables
4.2 Global variables (and why they are evil)
4.3 File scope and the static keyword
4.4 Type conversion and casting------------------------------------------------1/24
4.5 Enumerated types
4.6 Typedefs
4.7 Structs

Chapter 5 Control Flow
5.1 Control flow introduction
5.2 If statements
5.3 Switch statements--------1/25
5.4 Goto statements
5.5 While statements
5.6 Do while statements
5.7 For statements
5.8 Break and continue
5.9 Random number generation----------1/26

Chapter 6 Arrays, Strings, Pointers, and References
6.1 Arrays (Part I)
6.2 Arrays (Part II)
6.3 Arrays and loops
6.4 Sorting an array using selection sort
6.5 Multidimensional arrays
6.6 C-style strings---------------------------1/27
6.7 Introduction to pointers
6.8 Pointers, arrays, and pointer arithmetic
6.9 Dynamic memory allocation with new and delete
6.10 Pointers and const
6.11 References
6.12 References vs pointers, and member selection-------------------1/28
6.13 Void pointers

Chapter 7 Functions
7.1 Function parameters and arguments
7.2 Passing arguments by value
7.3 Passing arguments by reference
7.4 Passing arguments by address
7.4a Returning values by value, reference, and address-------------------------1/30
7.5 Inline functions
7.6 Function overloading
7.7 Default parameters
7.8 Function pointers
7.9 The stack and the heap-----------------------1/31
7.10 Recursion
7.11 Namespaces
7.12 Handling errors (assert, cerr, exit, and exceptions)2/1(READ THIS1CAREFULLY!
7.13 Command line arguments
7.14 Ellipses (and why to avoid them)

Chapter 8 Basic object-oriented programming
8.1 Welcome to object-oriented programming------2/2
8.2 Classes and class members
8.3 Public vs private access specifiers
8.4 Access functions and encapsulation
8.5 Constructors-----2/3
8.6 Destructors
8.7 The hidden “this” pointer
8.8 Constructors (Part II)
8.9 Class code and header files----2/4
8.10 Const class objects and member functions
8.11 Static member variables
8.12 Static member functions
8.13 Friend functions and classes
8.14 Anonymous variables and objects

Chapter 9 Operator overloading
9.1 Introduction to operator overloading-----2/6
9.2 Overloading the arithmetic operators
9.3 Overloading the I/O operators
9.4 Overloading the comparison operators
9.5 Overloading unary operators +, -, and !
9.6 Overloading operators using member functions
9.7 Overloading the increment and decrement operators
9.8 Overloading the subscript operator
9.9 Overloading the parenthesis operator
9.10 Overloading typecasts
9.11 The copy constructor and overloading the assignment operator
9.12 Shallow vs. deep copying

Chapter 10 Composition
10.1 Constructor initialization lists
10.2 Composition
10.3 Aggregation
10.4 Container classes

Chapter 11 Inheritance
11.1 Introduction to inheritance
11.2 Basic inheritance in C++
11.3 Order of construction of derived classes
11.4 Constructors and initialization of derived classes
11.5 Inheritance and access specifiers
11.6 Adding, changing, and hiding members in a derived class
11.7 Multiple inheritance
11.8 Virtual base classes

Chapter 12 Virtual Functions
12.1 Pointers and references to the base class of derived objects
12.2 Virtual functions
12.3 Virtual destructors, virtual assignment, and overriding virtualization
12.4 Early binding and late binding
12.5 The virtual table
12.6 Pure virtual functions, abstract base classes, and interface classes

Chapter 13 Input and output (I/O)
13.1 Input and output (I/O) streams
13.2 Input with istream
13.3 Output with ostream and ios
13.4 Stream classes for strings
13.5 Stream states and input validation
13.6 Basic file I/O
13.7 Random file I/O

Chapter 14 Templates
14.1 Function templates
14.2 Function template instances
14.3 Template classes
14.4 Expression parameters and template specialization
14.5 Class template specialization
14.6 Partial template specialization

Chapter 15 Exceptions
15.1 The need for exceptions
15.2 Basic exception handling
15.3 Exceptions, functions, and stack unwinding
15.4 Uncaught exceptions, catch-all handlers, and exception specifiers
15.5 Exceptions, classes, and inheritance
15.6 Exception dangers and downsides

Chapter 16 Reserved for C++0x

Chapter 17 std::string
17.1 std::string and std::wstring
17.2 std::string construction and destruction
17.3 std::string length and capacity
17.4 std::string character access and conversion to C-style arrays
17.5 std::string assignment and swapping
17.6 std::string appending
17.7 std::string inserting

Appendix A Miscellaneous Subjects
A.1 Static and dynamic libraries
A.2 Using libraries with Visual Studio Express 2005
A.3 Using libraries with Code::Blocks
A.4 Debugging your program (stepping and breakpoints)
A.5 Debugging your program (watching variables and the call stack)

YOU DONT HAVE TO BE HERE JUST SHOULD BE CLOSE BUT TAKE IT AT YOUR OWN PACE AND READ CAREFUL!
Spoiler:
Back to top Go down
https://codeofconduct.forumotion.com/u2
winstonzhao
moderator
moderator
winstonzhao


my mood : learn how to code Mood-icons-05
Poster Award OhHiYo
Warning Level : learn how to code Untitled2
Posts : 138
Points : 344
Reputation : 0
Join date : 2011-02-07
Age : 112
Location : Under Ur Bed

learn how to code Empty
PostSubject: Re: learn how to code   learn how to code Icon_minitimeMon Feb 07, 2011 4:49 pm

Which code is this c# c++ or java for html or what?
Back to top Go down
http://codezone.omgforum.net or jawproductions.weebly.com
a2zhacker
Owner
Owner
a2zhacker


my mood : learn how to code Mood-icons-05
Poster Award poster award
Warning Level : learn how to code Untitled-5
Posts : 120
Points : 2147483646
Reputation : 8
Join date : 2011-01-12
Age : 27
Location : tell me yours first

learn how to code Empty
PostSubject: Re: learn how to code   learn how to code Icon_minitimeTue Feb 08, 2011 6:42 am

i posted my tut for tut in just visual but tut is for C and C++
Back to top Go down
https://codeofconduct.forumotion.com/u2
Lava Hacker
mod/gfx/coder
mod/gfx/coder
Lava Hacker


Warning Level : learn how to code Untitled-5
Posts : 11
Points : 7
Reputation : 1
Join date : 2011-02-21

learn how to code Empty
PostSubject: Re: learn how to code   learn how to code Icon_minitimeTue Feb 22, 2011 11:17 am

I can show you how to make a lot of things. PM me for help.

I know:

VB.NET, C++, C, HTML, XML, PHP, and Perl.
Back to top Go down
a2zhacker
Owner
Owner
a2zhacker


my mood : learn how to code Mood-icons-05
Poster Award poster award
Warning Level : learn how to code Untitled-5
Posts : 120
Points : 2147483646
Reputation : 8
Join date : 2011-01-12
Age : 27
Location : tell me yours first

learn how to code Empty
PostSubject: Re: learn how to code   learn how to code Icon_minitimeTue Feb 22, 2011 12:02 pm

lol u code hacks?
Back to top Go down
https://codeofconduct.forumotion.com/u2
Lava Hacker
mod/gfx/coder
mod/gfx/coder
Lava Hacker


Warning Level : learn how to code Untitled-5
Posts : 11
Points : 7
Reputation : 1
Join date : 2011-02-21

learn how to code Empty
PostSubject: Re: learn how to code   learn how to code Icon_minitimeWed Feb 23, 2011 5:29 am

I code hacks, and almost anything else upon request.
Back to top Go down
Gordon
poster
poster



my mood : learn how to code Mood-icons-02
Poster Award thanx
Warning Level : learn how to code Untitled-5
Posts : 65
Points : 43
Reputation : 1
Join date : 2011-02-12

learn how to code Empty
PostSubject: Re: learn how to code   learn how to code Icon_minitimeWed Feb 23, 2011 6:54 am

now im gona learn c++ so i can code some hacks and sell them cause i neeed some cash ill take it like my job lol
Back to top Go down
Sponsored content





learn how to code Empty
PostSubject: Re: learn how to code   learn how to code Icon_minitime

Back to top Go down
 
learn how to code
Back to top 
Page 1 of 1
 Similar topics
-
» PURCHASE VIP NOW! refer to last post to learn how
»  New Boxes Code
» code of conduct now has its symbol!
» [NEW]Code Of Conduct's Programs
» Any 1 wanna help me code an amazing hack

Permissions in this forum:You cannot reply to topics in this forum
Code of Conduct :: Coding :: Visual basics(VB)-
Jump to: