+ Reply to Thread
Page 3 of 4 FirstFirst 1 2 3 4 LastLast
Results 21 to 30 of 36

Thread: Chooser Form

  1. #21
    Barn Newbie rivergum23 is an unknown quantity at this point rivergum23's Avatar
    Join Date
    Feb 2009
    Posts
    31
    Rep Power
    3

    RE: Chooser

    Hi Ben,

    Can you help me with this one....

    Since we've (more like AOG123 )have added this command button and the code to enable the button when the skills avail. table is empty we have created a bug that does the following.

    If you enter "Roofing" or any other skill into the scan box and press enter it actually adds the Roofing skill as it should, but also navigates to the next record?? Not sure how to fix this bug??

    Also, while I have got you is it possible to add a button that clears the EmployeeID and EmployeeName field boxes and enables you to enter a new
    EmployeeID and EmployeeName??

    Any help much appreciated.

    Brett
    Attached Files

  2. #22
    Barn Enthusiast sbenj69 is a jewel in the rough sbenj69 is a jewel in the rough sbenj69 is a jewel in the rough sbenj69 is a jewel in the rough sbenj69's Avatar
    Join Date
    Mar 2008
    Location
    The frigid northern plains
    Posts
    432
    Rep Power
    7

    Heh, picked a bad week to ask me..... we are doing a major version upgrade of our software at work this week, plus our company is opening another location, in which I'm responsible for setting up. I will have an answer to this this weekend. In a previous example, I set up a blank unbound textbox as the tab index after the scan box (and set it to invisible), then on focus, I setfocus back to the scanbox. Don't ask me, it was a weird deal..... after doing the insert, it went to next record..... As far as being able to change the name or add a new one, that's simply a matter of unlocking and enabling those fields, and adding a standard button to add records (thru the button wizard).
    Join our Folding team: DeveloperBarn Folding
    -----------------------------------
    Folding Stats - Stanford University
    Folding Stats - Extreme Over-Clocking
    Folding Stats - Kakao Stats
    Folding Stats - Xtreme CPU

    -----------------------------------

  3. #23
    Barn Newbie rivergum23 is an unknown quantity at this point rivergum23's Avatar
    Join Date
    Feb 2009
    Posts
    31
    Rep Power
    3

    RE: Chooser Form

    Hi Ben,
    Look hold off on this one as I think I have almost sorted these problems out. Stay tuned as I may still come unstuck yet .

    Cheers,
    Brett

  4. #24
    Barn Enthusiast sbenj69 is a jewel in the rough sbenj69 is a jewel in the rough sbenj69 is a jewel in the rough sbenj69 is a jewel in the rough sbenj69's Avatar
    Join Date
    Mar 2008
    Location
    The frigid northern plains
    Posts
    432
    Rep Power
    7

    ok, keep us informed as to the resolution.

    Thanks,

    benji-
    Join our Folding team: DeveloperBarn Folding
    -----------------------------------
    Folding Stats - Stanford University
    Folding Stats - Extreme Over-Clocking
    Folding Stats - Kakao Stats
    Folding Stats - Xtreme CPU

    -----------------------------------

  5. #25
    Barn Newbie rivergum23 is an unknown quantity at this point rivergum23's Avatar
    Join Date
    Feb 2009
    Posts
    31
    Rep Power
    3

    RE: Chooser form

    Hi Ben,
    Wondered if you could help me out with reporting for this never ending DB I am creating. I'll explain using your program and reverse engineer it to mine if you can help.

    What I want to know how to do (if its possible) is to be able to click a button on the Form page and run a report that will tell me what skills that person has that I'm currently viewing on the form page in a report.

    So basically, the report will display;
    ------------------------------------------
    Employee ID: 303
    Employee Name: Bob Builder

    Skills Possessed

    Roofing
    Electrical
    Plumbing
    ------------------------------------------
    Sounds easy I know, however I'm not much good at designing quires to give me the information I require which of course is the base of the report(s).

    Can you shed any light on this? or anybody else out there perhaps??

    Any help much appreciated.

    Cheers,
    Brett
    Attached Files

  6. #26
    Lightning Master AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123's Avatar
    Join Date
    Mar 2008
    Location
    Fortress Of Solitude
    Posts
    394
    Rep Power
    7

    This is relatively straight forward, the existing skills possessed query is referencing the current emp id of the form, [forms]![formmain].[employeeid]

    Paste this into SQL view in a new query, then base your report on it,

    Code:
    SELECT tblEmployees.EmployeeName, tblEmployees.EmployeeID, SkillsPossessedQuery.SkillDescription
    FROM tblEmployees INNER JOIN SkillsPossessedQuery ON tblEmployees.EmployeeID = SkillsPossessedQuery.EmployeeIDFK;
    
    The layout you require on the report can be achieved by grouping the emp name.
    If i helped you, make me famous by clicking the

  7. #27
    Barn Newbie rivergum23 is an unknown quantity at this point rivergum23's Avatar
    Join Date
    Feb 2009
    Posts
    31
    Rep Power
    3

    RE: Chooser Form

    Hi AOG123,
    Thanks heaps for your help!! I have been trying to make a new query this morning and keep getting a syntax error. I must be doing what you suggested incorrectly Could I get you to add this to the database and upload it for me so I can see how to do it and more importantly where I'm going wrong.

    You help greatly appreciated

    Brett

  8. #28
    Lightning Master AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123's Avatar
    Join Date
    Mar 2008
    Location
    Fortress Of Solitude
    Posts
    394
    Rep Power
    7

    hi, see attachment,

    regards,
    Attached Files
    If i helped you, make me famous by clicking the

  9. #29
    Barn Newbie rivergum23 is an unknown quantity at this point rivergum23's Avatar
    Join Date
    Feb 2009
    Posts
    31
    Rep Power
    3

    RE: Chooser

    Hi Guys,
    Got another question or how to. When I transfer a skill from "Skills Available" to "Skills Possessed" on the form I want to also be able to transfer the "SkillDescrip" as well as the "SkillID" from the TblSkills table.

    At the moment when you transfer a skill from the form it adds the SkillID into tblEmplyeeSkills and tblEmplyeeSkills but not the "SkillDescrip". Is it possible to do this?? I have tried myself but are unsure how to capture the description out of the table.

    Are you guys able to help. (No doubt)

    Thanks Again,
    Brett
    Attached Files

  10. #30
    Lightning Master AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123 is a jewel in the rough AOG123's Avatar
    Join Date
    Mar 2008
    Location
    Fortress Of Solitude
    Posts
    394
    Rep Power
    7

    Hi,

    Your thinking here is not correct, Why would you duplicate the description in 2 tables,

    The SkillId is all that needs to be stored as any other relational information in the Skills Table can be returned in a query.
    If i helped you, make me famous by clicking the

+ Reply to Thread
Page 3 of 4 FirstFirst 1 2 3 4 LastLast

Similar Threads

  1. Time Entry Form
    By sbenj69 in forum Access Database Samples
    Replies: 5
    Last Post: May 1st, 2009, 06:48 AM
  2. Simple way to email form
    By Rebelle in forum ASP Development
    Replies: 17
    Last Post: August 14th, 2008, 05:03 PM
  3. Generic Form Handler
    By richyrich in forum .NET Development
    Replies: 3
    Last Post: July 28th, 2008, 02:34 PM
  4. filters on a form
    By javier_83 in forum Microsoft Access
    Replies: 4
    Last Post: July 28th, 2008, 02:03 PM

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

SEO by vBSEO