Welcome to DevDogz Development page

Time

Hello all Developers out there. I am DevDog. Here to show you things you might know already or in search of learning. From Windows forms to web services and even maybe some game designs. Needless to say one thing you won't learn here is proper English sentence structure hehe :)

Here is a little bit of info on myself.

  • I have been developing with DotNet since November 2001 and was first commissioned to develop a web based program for the web team to input information about magazines into a database for later use of their dynamically ran web pages

  • I done smaller projects like telephone reporting and workers timesheet via web access.
  • How i learn these things were from reading books and magazines, forums, but what really taught me was watch VBTV . Cris and Ari show the fundamentals and work their way to web services. All in a fun and witty way.

    WATCH ALL 4 EPISIOD RELIGOUSLY UNTIL ITS EMBEDED IN YOUR MIND


    The types of programming I learned throughout my life time are....

    VB.Net

    SQL

    PHP

    Perl

    HTML

    Cold Fusion

    C++

    Visual C++

    JavaScript

    ASP

    JSP

    10 cls

    20 let a = a number

    30 let b = a number

    40 a = 6

    50 b = 4

    60 print a + b

    70 goto 20

    80 end

    run

    K lets get started. First we'll start with windows form in vb
    Start a new windows project the form will show on the screen. Go to the toolbox and drag in a textbox and a button onto your form

    Now double click the button to go to the code behind. take a look at the line of code already inputted for you

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

    End Sub

    now type in textbox1.text = "Hello World" so the code look like this.....

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

    textbox1.text = "Hello World"

    End Sub

    press F5 to make it run and when the page loads hit the button and watch Hello World appear in the textbox.
    Well wasn't that easy View the project ..... In the Next section we'll get into some data access Next Project

    Hosted by www.Geocities.ws

    1