Results 1 to 15 of 15

Microsoft Access

This is a discussion on Microsoft Access within the Off Topic forums, part of the Entertainment category; Anyone very familiar with Microsoft Access or basic SQL commands? I need some help on a database build. We can ...
Page: 1


  1. #1
    Define ʎʇılɐǝɹ. Senior Member The_Real_PlodeZ's Avatar
    Join Date
    Jul 2006
    Location
    USA
    Posts
    2,629

    Default

    Anyone very familiar with Microsoft Access or basic SQL commands?

    I need some help on a database build.

    We can speak on msn or in pm's, let me know if you're out there.

  2. #2
    Baxxor
    Guest

    Default

    i go a database course but i aint pro at it, tell me what ya need and ill try to help you

    edit:
    i know some sql code and i do everything in acsess ^^

  3. #3
    Senior Member festo's Avatar
    Join Date
    Mar 2006
    Location
    England
    Posts
    2,820

    Default

    Write it in here what u need help with ^_^

  4. #4
    evilwevel
    Guest

    Default

    if i paid attention in SQL classes i would've been able to help you :lol:

    i know the basics, but nothing too detailed since thats when i played peggle on my laptop.

  5. #5
    Senior Member Chemical's Avatar
    Join Date
    Mar 2006
    Posts
    3,127

    Default

    Whatya need?

  6. #6
    Baxxor
    Guest

    Default

    ill quote what he wrote to me in pm :
    It's real basic bro - I'm trying to get an input box on a form to run totals in another text box in the same form based on the input.

    For example, people can type the number 1, 2, 3, 4, 5, 6 in the box and I need a sum of each number typed in other boxes.

    so if they type 1 then 1 then 1 then 2 then 2 then 3, there will be a box of sums that says:

    box 1 sum = 3
    box 2 sum = 2
    box 3 sum = 1

    I suck at access. :P[/b]
    dont know it myself, aint that far yet so :mellow:

  7. #7
    Sεмρяε Fι Senior Member CroNe's Avatar
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    1,258

    Wink

    i'm pro.. only if you could explain it in dutch to me :P

    my english isnt that advanced lol



    off: [X-Trap]The game security module update has failed.[00010001;80004004]
    some1 help me out plx
    pm me

  8. #8
    Senior Member
    Join Date
    Mar 2006
    Location
    Middle Earth
    Posts
    1,017

    Default

    i go a database course but i aint pro at it, tell me what ya need and ill try to help you

    edit:
    i know some sql code and i do everything in acsess ^^[/b]
    <strike>
    oooohhh yeahhhhh
    </strike>

    if i paid attention in SQL classes i would&#39;ve been able to help you :lol:

    i know the basics, but nothing too detailed since thats when i played peggle on my laptop.[/b]

    oooohhh yeahhhhh

  9. #9
    Rampage
    Guest

    Default

    Could help you but my access class was 1 year ago and dont remember shit xD
    (Access = worst database program imo)

  10. #10
    Senior Member festo's Avatar
    Join Date
    Mar 2006
    Location
    England
    Posts
    2,820

    Default

    ill quote what he wrote to me in pm :
    dont know it myself, aint that far yet so :mellow:[/b]
    i dont get the jist? Does he want the total of all inputs in a text box? Or what?

  11. #11
    Baxxor
    Guest

    Default

    exampel:
    If you put in the number 1 three times in the box the box with label "Number one&#39;s:" should show 3
    I think he means that he wants the program to count how many numbers of a certain number should be shown in the box

  12. #12
    Define ʎʇılɐǝɹ. Senior Member The_Real_PlodeZ's Avatar
    Join Date
    Jul 2006
    Location
    USA
    Posts
    2,629

    Default

    exampel:
    If you put in the number 1 three times in the box the box with label "Number one&#39;s:" should show 3
    I think he means that he wants the program to count how many numbers of a certain number should be shown in the box[/b]
    Yep, thats it

  13. #13
    Senior Member festo's Avatar
    Join Date
    Mar 2006
    Location
    England
    Posts
    2,820

    Default

    PlodeZ wats ur db consist of tables/fields wise;

    SELECT COUNT(*) as <output field name>"
    FROM "table name"
    WHERE "fieldname" "what u want to filter";

  14. #14
    Define ʎʇılɐǝɹ. Senior Member The_Real_PlodeZ's Avatar
    Join Date
    Jul 2006
    Location
    USA
    Posts
    2,629

    Default

    PlodeZ wats ur db consist of tables/fields wise;

    SELECT COUNT(*) as <output field name>"
    FROM "table name"
    WHERE "fieldname" "what u want to filter";[/b]
    I can get the data into my tables just fine, I just can&#39;t get the boxes to sum correctly.

    Every time a user types a number 1-6 then "Enter" in a text box, I need to run a sum of each number they type in another text box.

    So I have: input box and sum1-6 boxes.

    When the form is closed, the data populates the corresponding fields in the table per the totals in the sum boxes.

    Right now, my event procedure occurs on change, and I&#39;m running an if/then statement, something like

    Begin Sub

    aa = me.textsum1
    bb = me.textsum2
    cc = me.textsum3

    If me.textinput.value = 1
    then aa = aa+1
    or
    if me.text5.value = 2
    then bb = bb+1

    me.textinput = null

    End Sub

    Sorry for the rough idea, the db is on my work pc.

  15. #15
    Senior Member festo's Avatar
    Join Date
    Mar 2006
    Location
    England
    Posts
    2,820

    Default

    add me on msn much easier :P

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
  •