![]() |
[Tutorial] [VB.Net] Making a Builder and Stub Program - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: [Tutorial] [VB.Net] Making a Builder and Stub Program (/Thread-Tutorial-VB-Net-Making-a-Builder-and-Stub-Program) |
[Tutorial] [VB.Net] Making a Builder and Stub Program - Coder-san - 01-11-2011 VB.Net Tutorial - Making a Builder and Stub using IO.File operations
Contents:
Introduction A User-generated application, or a builder and a stub combination is mainly used when you need userinputs in a new PC whose user does not have any idea what that app may do. There are three names used in Builder-stub system for applications:
Builder is the application a User operates and inputs his info which is used by Stub. Stub is the application which should NOT even be touched by the User. Builder uses the Stub to give an Output, a new application commonly known as "Server". Server is the final output. Ready to spread. Why should I keep stub? Your output is >90% Stub This is how it goes: Stub Application + User Settings = Server Application Form Design This is the easiest and the shortest part. What do you need?
In this Tutorial, we will make 2 Programs: Builder and Stub Builder: ![]() Controls needed:
![]() No controls needed. In fact, you don't even need a Form, you can just use a Class Module if you know how to, otherwise don't worry Form will do ok. Coding Now comes the hardest part, but I would also add, the more interesting part. In your Builder form enter this code. Quote:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Great you are half-way there!. Now enter this code in your Stub form: Quote:Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Well done, you are done with both. Now build them, put them in same directories, and test the Builder. ![]() Have a great day. :thumbs: RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - 1llusion - 01-11-2011 THAAAAAAAAAAAAAAAAAAANKS!!!!! ![]() RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - 1234hotmaster - 01-17-2011 tnx but i already know how to make a stub after a month ![]() btw this is a better then the stupid EOF LOF and the normal stub making since this is a simple Appendalltext ![]() RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - Coder-san - 01-30-2011 Glad you like it. ![]() RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - Lenalee - 01-31-2011 i am still learning this ![]() RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - White Charisma - 02-24-2011 ment to rate this 5 but did 1 by accident xD so ill comment aswell ![]() nice tut RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - Mr Naj - 03-04-2011 nice tut! Thank you for sharing with us. Leson 2 Haw to make a fud crypter? ![]() ![]() RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - V1P3R - 03-04-2011 oh my god :o really epic RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - Jacob - 05-24-2011 is this for a keylogger? RE: [Tutorial] [VB.Net] Making a Builder and Stub Program - Coder-san - 05-24-2011 Yes, a user-generated application system can be used in making a Keylogger. |