Closed Thread
Results 1 to 4 of 4

Thread: Embarking on first big program

  1. #1
    Deathblake is offline Newbie
    Join Date
    Feb 2010
    Posts
    3
    Rep Power
    0

    Embarking on first big program

    It's time for me to start looking at how to make my first major application. I am looking at using Visual C# Express 2008. If another language sounds more suitable please suggest it

    Right now I need help on how I am going to sort my data.

    This is what my application will need to store (and edit):
    Names of customers
    Product information
    Current months orders
    Pending orders

    Is it possible to add the information in current months orders into pending orders, then start over (For the end of each month)
    Can information be extracted directly from one table into a cell in another? i.e Names of customers/Product information into Current months orders


    Is it possible to upload the information in a table directly into comboboxes? And vice versa?

    Basically I'm looking for general database help

    I can create the tables, but it's the loading and saving from components that I need help with

    I.e. Loading customer names and product information into comboboxes, hitting an order button and passing that information into the Current months orders.

    I've done searches on MSDN but I may of missed an in-depth database tutorial

    Thanks

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Red_Shadow's Avatar
    Red_Shadow is offline Learning Programmer
    Join Date
    Jan 2009
    Location
    over the rainbow
    Posts
    58
    Rep Power
    0

    Re: Embarking on first big program

    Yea,
    I suggest you use SQL for large data storages.
    I don't do C# (for obvious reasons..) but this looks useful: SQL Basics In C# - C# Tutorials | Dream.In.Code

    Hope this helps.

  4. #3
    lobo521 is offline Learning Programmer
    Join Date
    Jan 2010
    Posts
    57
    Rep Power
    8

    Re: Embarking on first big program

    Great book about database applications: Patterns of Enterprise Application Architecture The Addison-Wesley Signature Series: Amazon.co.uk: Martin Fowler: Books

    I also recommend NHibernate for data access.

  5. #4
    Davide's Avatar
    Davide is offline Programming God
    Join Date
    Dec 2009
    Location
    Manchester, UK
    Posts
    507
    Blog Entries
    8
    Rep Power
    11

    Re: Embarking on first big program

    It is simple.
    Add a Datagrid view to your form, and create a new DataSet with the that table inside it.
    Add a few text fields for input, and to ad an entry:
    DataSetName.Table.Add("field 1, "Field2")

    Check out my video tutorials for C#: http://forum.codecall.net/showthread.php?25722
    Vote them if you like them. I could make one about the DataGridView if you want to.
    Are you a newbie programmer trying to learn C#? Check out my small tutorial: Visual C# Programming Basics

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Program for search terms within a program
    By 817moose in forum General Programming
    Replies: 4
    Last Post: 11-03-2010, 01:07 PM
  2. Why do you program/Why are you learning to program?
    By taylerhughes in forum The Lounge
    Replies: 34
    Last Post: 08-11-2010, 12:26 AM
  3. Replies: 9
    Last Post: 03-14-2010, 08:44 PM
  4. Execute a program from within another program
    By gabrielle_l in forum Java Help
    Replies: 4
    Last Post: 02-17-2010, 02:47 PM
  5. Replies: 8
    Last Post: 05-11-2009, 01:41 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts