Author | Message |
---|
Venom Clone Posts: 3
| i need tutorials step by step meka!!!!!!!!!!11111111 help me u know im slow and i need a tut that walk you thru makin a simple proggy
|
C0D3Z3R0 Pro Posts: 166
| I think if you want to get anywhere on here, you will need to speak more clear to what you want a tutorial for and what the app is that you plan on making using the tutorial.
|
Matt Clone Posts: 1
|
Code: | Private Sub tbFirstNumber_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles tbFirstNumber.Enter, tbSecondNumber.Enter Dim t As TextBox t = sender t.SelectAll() End Sub Private Sub cbGo_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cbGo.Click Dim i As Integer Dim j As Integer Dim s As Integer i = tbFirstNumber.Text j = tbSecondNumber.Text s = i + j lbOut.Text = "Sum: " & s End Sub | there u go simple proggy next bit will be error handling
|
Meka][Meka Unstopable Posts: 700
| drop a button and a label on your form and try random string
Code: | Private sRan() As String = New String() {"You plonka!", "crazy asshole", "lol u NOOB!!!!"} Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim rand As New Random Label1.Text = sRan(rand.Next(0, sRan.Length)) End Sub |
|
Meka][Meka Unstopable Posts: 700
|
Quoted from Matt | Code: | Private Sub tbFirstNumber_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles tbFirstNumber.Enter, tbSecondNumber.Enter Dim t As TextBox t = sender t.SelectAll() End Sub Private Sub cbGo_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cbGo.Click Dim i As Integer Dim j As Integer Dim s As Integer i = tbFirstNumber.Text j = tbSecondNumber.Text s = i + j lbOut.Text = "Sum: " & s End Sub | there u go simple proggy next bit will be error handling |
Code: | Private Sub tbFirstNumber_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles tbFirstNumber.Enter, tbSecondNumber.Enter sender.SelectAll() End Sub Private Sub cbGo_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cbGo.Click Dim i As Integer = CInt(tbFirstNumber.Text) Dim j As Integer = CInt(tbSecondNumber.Text) Dim s As Integer = i + j lbOut.Text = "Sum: " & s End Sub |
|
Venom Clone Posts: 3
| ok what i dop wit dat like how do i pull up the code box junk
|
vickmaker Ametuar Posts: 127
|
Quoted from Venom | ok what i dop wit dat like how do i pull up the code box junk | what a hidden talent you have here -//v
|
Sojiro Regular Posts: 50
|
Quoted from vî¢KMåkè® | Quoted from Venom | ok what i dop wit dat like how do i pull up the code box junk | what a hidden talent you have here -//v | lmao .
|