newby sample vb.net application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tony Epton

    newby sample vb.net application

    I'm coming from MS access and trying to get started in
    vb.net.

    I have been searching and searching for a simple complete
    sample database application with source code - eg a very
    simple accounting package or asset register - something
    with a few input screens, menu and some reports - so I can
    maybe skip over a few cycles of trial and error - and
    start producing reasonably professional code immediately -
    ie good naming conventions, good coding practices.

    Al the sample I have found so far are very specific little
    snippets - eg how to use a data grid.

    Can anyone point me to a good comprehensive sample please.
    Many thanks in advance - Tony.

  • One Handed Man [ OHM ]

    #2
    Re: newby sample vb.net application

    Tony,
    The best newsgroup to help you on this is the
    microsoft.publi c.dotnet.framew ork.adonet ng.

    ADO.NET is part of the .NET framwork and handles the access to SQL/Access
    databases etc. Essentially, there are several elements to this connection.

    The Connection Class ( in your case OLEDBConnection )
    The OLEDBDataAdapte r ( That which interfaces between the DataSet you pull
    the data into/out of
    The DataSet ( The repository which holds dataTables and Relationships etc.

    The DataSet is then bound to the DataGrid by setting its datasource thus.

    This is a tough one to get your head around at first, but you need to play
    with it and experiement. I suggest you look on the MSDN library, there are
    several topics on it. Also I recommend you go out and buy a book and read up
    on the concept. You will spend HOURS AND DAYS AND WEEKS messing about with
    this before you get it locked down.


    Good Luck



    "Tony Epton" <aceware@iinet. net.au> wrote in message
    news:186401c384 ee$89805e00$a40 1280a@phx.gbl.. .[color=blue]
    > I'm coming from MS access and trying to get started in
    > vb.net.
    >
    > I have been searching and searching for a simple complete
    > sample database application with source code - eg a very
    > simple accounting package or asset register - something
    > with a few input screens, menu and some reports - so I can
    > maybe skip over a few cycles of trial and error - and
    > start producing reasonably professional code immediately -
    > ie good naming conventions, good coding practices.
    >
    > Al the sample I have found so far are very specific little
    > snippets - eg how to use a data grid.
    >
    > Can anyone point me to a good comprehensive sample please.
    > Many thanks in advance - Tony.
    >[/color]


    Comment

    Working...