VB.NET School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!

Welcome to Dream.In.Code
Become a VB.NET Expert!

Join 307,125 VB.NET Programmers for FREE! Get instant access to thousands of VB.NET experts, tutorials, code snippets, and more! There are 2,070 people online right now. Registration is fast and FREE... Join Now!




VB.Net Tutorial Suggestions

7 Pages V < 1 2 3 4 > »   

VB.Net Tutorial Suggestions, Is there something you'd like to see covered in VB.Net

pandahuge

RE: VB.Net Tutorial Suggestions

18 Sep, 2007 - 11:01 PM
Post #21

New D.I.C Head
*

Joined: 18 Sep, 2007
Posts: 7


My Contributions
hi i'm steve, new member guys/gurls. i really like vb.net thats why i decided to familiar it with it. i know this is very simple for you guys. i've been thinking and trying what to do how to check a variable if it has value. i would like to ask you guys how do u check a variable if there is a value in it? using if else in vb.net 2003..thnz guys/gurls in advance.
User is offlineProfile CardPM
+Quote Post

pandahuge

RE: VB.Net Tutorial Suggestions

18 Sep, 2007 - 11:13 PM
Post #22

New D.I.C Head
*

Joined: 18 Sep, 2007
Posts: 7


My Contributions
this one is working but i'm trying to enchance it. thnz

CODE

Dim flag As Integer
    Dim dr As DataRow
    Dim dt As DataTable
    Dim custid As String
    Dim bm As BindingManagerBase

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        OleDbDACust.Fill(DsCust)
        bm = Me.BindingContext(DsCust, "CustomerTracking")
        bm.Position = 0

    End Sub

    Private Sub cmdAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAdd.Click
        txtCustID.Text = ""
        txtFName.Text = ""
        txtLName.Text = ""
        txtAddress.Text = ""
        txtPhone.Text = ""
        txtEmail.Text = ""
        flag = 1

        Dim ctr As Integer
        Dim len As Integer
        Dim custid As String
        Dim custidval As String


        dt = DsCust.Tables("CustomerTracking")
        len = (dt.Rows.Count - 1)
        dr = dt.Rows(len)
        custid = dr("custID")
        custidval = Mid(custid, 2, 3)
        ctr = CInt(custidval)
        If ctr >= 1 And ctr < 9 Then
            ctr = ctr + 1
            txtCustID.Text = "C00" & ctr
        ElseIf ctr >= 9 And ctr <= 99 Then
            ctr = ctr + 1
            txtCustID.Text = "C0" & ctr
        Else
            ctr = ctr + 1
            txtCustID.Text = "C" & ctr
        End If
        txtCustID.Enabled = False
          


    End Sub


*Psychocoder added code blocks

This post has been edited by PsychoCoder: 19 Sep, 2007 - 12:01 AM
User is offlineProfile CardPM
+Quote Post

PsychoCoder

RE: VB.Net Tutorial Suggestions

19 Sep, 2007 - 12:03 AM
Post #23

I Code, Therefore I am
Group Icon

Joined: 26 Jul, 2007
Posts: 14,934



Thanked: 517 times
Dream Kudos: 11575
Expert In: VB, VB.Net, C#, SQL, ASP, ASP.Net, Web Development, HTML, CSS, Win32 API, Javascript, mySQL, J#, Boo.Net, jQuery

My Contributions
QUOTE(pandahuge @ 19 Sep, 2007 - 12:01 AM) *

hi i'm steve, new member guys/gurls. i really like vb.net thats why i decided to familiar it with it. i know this is very simple for you guys. i've been thinking and trying what to do how to check a variable if it has value. i would like to ask you guys how do u check a variable if there is a value in it? using if else in vb.net 2003..thnz guys/gurls in advance.


pandahuge,

This thread is only for requesting a tutorial that isnt in the Visual Basic Tutorials section smile.gif

User is offlineProfile CardPM
+Quote Post

pandahuge

RE: VB.Net Tutorial Suggestions

19 Sep, 2007 - 12:18 AM
Post #24

New D.I.C Head
*

Joined: 18 Sep, 2007
Posts: 7


My Contributions
thanks PsychoCoder
User is offlineProfile CardPM
+Quote Post

Daiken

RE: VB.Net Tutorial Suggestions

23 Sep, 2007 - 10:46 AM
Post #25

New D.I.C Head
*

Joined: 22 Sep, 2007
Posts: 27



Thanked: 1 times
My Contributions
I posted this on a similar thread from you in the C# forum.

A tutorial about socket programming and packet manipulation would be great.
The latter might be difficult in some aspects without the use of pointers but if there's a way I would actually prefer a VB.NET tutorial.
Otherwise C# would also be cool, as long as you would take the time to write either version.
User is offlineProfile CardPM
+Quote Post

claudiolins

RE: VB.Net Tutorial Suggestions

23 Sep, 2007 - 11:18 AM
Post #26

New D.I.C Head
Group Icon

Joined: 23 Sep, 2007
Posts: 1


Dream Kudos: 50
My Contributions
I'd like to see a tutorial for "Windows Forms Designers".
I'd like to let the user to make changes in a form at run-time. Im working on a print CD label project.
User is offlineProfile CardPM
+Quote Post

PsychoCoder

RE: VB.Net Tutorial Suggestions

24 Sep, 2007 - 06:54 AM
Post #27

I Code, Therefore I am
Group Icon

Joined: 26 Jul, 2007
Posts: 14,934



Thanked: 517 times
Dream Kudos: 11575
Expert In: VB, VB.Net, C#, SQL, ASP, ASP.Net, Web Development, HTML, CSS, Win32 API, Javascript, mySQL, J#, Boo.Net, jQuery

My Contributions
There is a new VB.Net tutorial available:

OleDb Basics in VB.Net
User is offlineProfile CardPM
+Quote Post

sharpy

RE: VB.Net Tutorial Suggestions

9 Oct, 2007 - 12:53 AM
Post #28

D.I.C Regular
Group Icon

Joined: 2 Jun, 2007
Posts: 293



Thanked: 16 times
Dream Kudos: 275
My Contributions
Hi psycho Coder

Just read the suggestions for a database tuturial for begginers in VB 2005 or 2008 express. I would be very interested in this tutorial, as a Total newbee and Hobbist I have found it relatively easy to create and use a database following the tutorials in books and on the internet etc. However they all seem to fall short as to utilising them effectively. It would be nice to see a step by step tutorial which breaks the tuturial down in different stages. IE creating the Database, Creating the Interface etc. It would be nice to see examples such as adding a columns values together and showing the total in a textbox. I think you get the picture. I used a tutorial called Simple fixed array 1,2,3 in the Visual basic tutorials. I found this format easy to follow.

Look forward to seeing the Tutorial
User is offlineProfile CardPM
+Quote Post

PsychoCoder

RE: VB.Net Tutorial Suggestions

9 Oct, 2007 - 04:42 AM
Post #29

I Code, Therefore I am
Group Icon

Joined: 26 Jul, 2007
Posts: 14,934



Thanked: 517 times
Dream Kudos: 11575
Expert In: VB, VB.Net, C#, SQL, ASP, ASP.Net, Web Development, HTML, CSS, Win32 API, Javascript, mySQL, J#, Boo.Net, jQuery

My Contributions
sharpy,,

I have written a tutorial named SQL Basics in VB.Net. Read through this one and see if this solves your question smile.gif
User is offlineProfile CardPM
+Quote Post

sharpy

RE: VB.Net Tutorial Suggestions

10 Oct, 2007 - 10:34 AM
Post #30

D.I.C Regular
Group Icon

Joined: 2 Jun, 2007
Posts: 293



Thanked: 16 times
Dream Kudos: 275
My Contributions
QUOTE(PsychoCoder @ 9 Oct, 2007 - 05:42 AM) *

sharpy,,

I have written a tutorial named SQL Basics in VB.Net. Read through this one and see if this solves your question smile.gif


Cheers for that PsychoCoder.

I had already downloaded this tutorial but work keeps giving me things to do, PAIN!!!. So ive not had time to get stuck in yet, Hopefully this weekend.
It looks like what i am looking for icon_up.gif . If I have any questions do you want me to post them in the said tutorial.
User is offlineProfile CardPM
+Quote Post

PsychoCoder

RE: VB.Net Tutorial Suggestions

10 Oct, 2007 - 10:45 AM
Post #31

I Code, Therefore I am
Group Icon

Joined: 26 Jul, 2007
Posts: 14,934



Thanked: 517 times
Dream Kudos: 11575
Expert In: VB, VB.Net, C#, SQL, ASP, ASP.Net, Web Development, HTML, CSS, Win32 API, Javascript, mySQL, J#, Boo.Net, jQuery

My Contributions
sharpy, yes if you have any questions just post it in the tutorial itself, that way if anyone else has the same problem they'll see the resolution there
User is offlineProfile CardPM
+Quote Post

Louisda16th

RE: VB.Net Tutorial Suggestions

14 Oct, 2007 - 09:00 AM
Post #32

dream.in.assembly.code
Group Icon

Joined: 3 Aug, 2006
Posts: 1,894



Thanked: 6 times
Dream Kudos: 755
My Contributions
I was wondering if you could write a tut on deploying applications using SharpDevelop. This should help as it is an open source application. Im not quite sure on how to use it myself (despite the fact I recommended it to two people smile.gif). Thanx!


This post has been edited by Louisda16th: 14 Oct, 2007 - 09:03 AM
User is offlineProfile CardPM
+Quote Post

Louisda16th

RE: VB.Net Tutorial Suggestions

10 Nov, 2007 - 12:47 AM
Post #33

dream.in.assembly.code
Group Icon

Joined: 3 Aug, 2006
Posts: 1,894



Thanked: 6 times
Dream Kudos: 755
My Contributions
How about one to send and receive data through a USB port (Like the one for serial port in C#)? Its something I really want to learn smile.gif. Or is it the same as communicating through the serial port?
User is offlineProfile CardPM
+Quote Post

RodgerB

RE: VB.Net Tutorial Suggestions

10 Nov, 2007 - 01:20 AM
Post #34

D.I.C Lover
Group Icon

Joined: 21 Sep, 2007
Posts: 2,238



Thanked: 33 times
Dream Kudos: 2200
Expert In: Dot Net Technologies

My Contributions
QUOTE(Louisda16th @ 10 Nov, 2007 - 07:47 PM) *

How about one to send and receive data through a USB port (Like the one for serial port in C#)? Its something I really want to learn smile.gif. Or is it the same as communicating through the serial port?


{Link Removed}

Hope that helps. smile.gif

RogerB, sorry for removing your link, but this thread is for tutorial requests to be written on </dream.in.code>, not for providing links to tutorials on other sites smile.gif

PsychoCoder

This post has been edited by PsychoCoder: 10 Nov, 2007 - 05:53 AM
User is offlineProfile CardPM
+Quote Post

PsychoCoder

RE: VB.Net Tutorial Suggestions

13 Nov, 2007 - 06:23 AM
Post #35

I Code, Therefore I am
Group Icon

Joined: 26 Jul, 2007
Posts: 14,934



Thanked: 517 times
Dream Kudos: 11575
Expert In: VB, VB.Net, C#, SQL, ASP, ASP.Net, Web Development, HTML, CSS, Win32 API, Javascript, mySQL, J#, Boo.Net, jQuery

My Contributions
Theres a new tutorial available:

Serial Port Communication in VB.Net

Happy reading smile.gif
User is offlineProfile CardPM
+Quote Post

Mr Ed

RE: VB.Net Tutorial Suggestions

17 Nov, 2007 - 07:19 AM
Post #36

New D.I.C Head
*

Joined: 9 Nov, 2007
Posts: 19


My Contributions
I thought this was in the Tutorial section... Perhaps someone could move it to where it belongs, I can not move or delete it.

How about a tutorial on how to create/edit/save Excel workbooks?

I have a ton of VBScripts that I am trying to bring over into VB.Net. Your excellent Active Directory tutorial helped immensely. Now that I have a pointer how to get the data out of AD I would like one on how to put it into Excel or perhaps a data grid.

This post has been edited by Mr Ed: 17 Nov, 2007 - 11:30 AM
User is offlineProfile CardPM
+Quote Post

Jayman

RE: VB.Net Tutorial Suggestions

17 Nov, 2007 - 01:37 PM
Post #37

Student of Life
Group Icon

Joined: 26 Dec, 2005
Posts: 8,570



Thanked: 237 times
Dream Kudos: 500
Expert In: Everything

My Contributions
Moved to the Tutorial Request topic.
User is offlineProfile CardPM
+Quote Post

Louisda16th

RE: VB.Net Tutorial Suggestions

27 Nov, 2007 - 09:30 AM
Post #38

dream.in.assembly.code
Group Icon

Joined: 3 Aug, 2006
Posts: 1,894



Thanked: 6 times
Dream Kudos: 755
My Contributions
How about one on Interfacing with the USB port (like the serial port one)?
User is offlineProfile CardPM
+Quote Post

f_soto

RE: VB.Net Tutorial Suggestions

1 Dec, 2007 - 01:12 AM
Post #39

New D.I.C Head
*

Joined: 20 Nov, 2007
Posts: 10



Thanked: 1 times
My Contributions
I wouldnt mind help on arrays especially a 2-dimensional array. Its so hard to find info for 2 dimensions, only one. Interested in suming the rows or colloms or writing and reading to and from a text file using the stream reader/writer class. Also 2-dimension array with databaseses, sql and access. That would be very nice. Any help will be appreciated. Thanks in advance.
User is offlineProfile CardPM
+Quote Post

Pwn

RE: VB.Net Tutorial Suggestions

1 Dec, 2007 - 08:46 PM
Post #40

D.I.C Regular
***

Joined: 25 Nov, 2007
Posts: 368



Thanked: 13 times
My Contributions
I'd like to see a tut for .net printing, that would be really helpful. I've searched and there are not very many for that, and the ones I've found are kinda vagueish.
User is online!Profile CardPM
+Quote Post

7 Pages V < 1 2 3 4 > » 
Fast ReplyReply to this topicStart new topic

Time is now: 11/21/09 02:22PM

Live VB.NET Help!

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter Fan Us On Facebook

VB.NET Tutorials

Reference Sheets

VB.NET Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month