RE: Autopopulate AutoFill Form



Hi Ofer,

That didn't seem to work or I did something wrong.
*Here's a pic of the DB I'm working on. might make things
easier?http://i24.photobucket.com/albums/c5/str82/DB.jpg

That idea you gave me before worked perfect it just isn't storing the fields
that get autofilled into the Form Info Table.

Thanks,

"Ofer" wrote:

> Make the three fields in the form bounded to the right fields in the table,
> on the after update event of the combo, write the code
> Me.Field1 = Me.ComboName.Column(1)
> Me.Field2 = Me.ComboName.Column(2)
> Me.Field3 = Me.ComboName.Column(3)
>
> --
> \\// Live Long and Prosper \\//
> BS"D
>
>
> "Str8" wrote:
>
> > Bump- Sorry, still need help with this issue. Thanks.
> >
> > Thanks for you help. Sounds like it might not be the best way to do this but
> > is it possible? It would make things easier for me.
> >
> > -------------
> > "Roger Carlson" wrote:
> >
> > This question comes up frequently in the newsgroups and it stems from a
> > basic misunderstanding of how a database should be designed. In a properly
> > designed relational database, you only want to store information ONCE. So
> > if you have an Employee table (which based on Ofer's previous reply, I
> > assume you do), then you should NOT be storing the Sup, Manager, and Site
> > Manager again in the Form Info table. It is sufficient to store the
> > employee (preferably the EmployeeID number) in the Form Info table. This
> > will allow you to JOIN this table to the Employee table (on the employee) to
> > retrieve this other information for a query or report.
> >
> > This is the reason I say you do not want to store this data again.
> >
> > Roger Carlson
> > MS Access MVP
> > Access Database Samples: www.rogersaccesslibrary.com
> > Want answers to your Access questions in your Email?
> > Free subscription:
> > http://peach.ease.lsoft.com/scripts/wa.exe?SUBED1=ACCESS-L
> > ---------
> >
> >
> > "Str8" <Str8@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> > news:A35483A2-AA45-48D4-A9B2-7DED916AF313@xxxxxxxxxxxxxxxx
> > I'm sorry. I should have stated that I've added more fields to this form.
> > So this form has the combox with Employee name and when thats chosen it
> > populates Sup, Manager, and Site Manager. Under that I have Course Name,
> > Date
> > completed and a couple other fields. This Form is called "Form Info" and
> > is linked to a table named "Form Info table" so all info entered in the form
> > dumps to the table. Right now those fields that get autofilled are blank
> > inthe "Form Info table" but are filled in and look fine in the "Form Info
> > Form".
> > Hope this makes sense?
> > -----------
> >
> > "Roger Carlson" wrote:
> > Actually, you do not want to store this data. Since it is already
> > stored in the Employee table, just Join your table to the Employee table in a
> > query when you need the information.
> >
> > Roger Carlson
> > MS Access MVP
> > Access Database Samples: www.rogersaccesslibrary.com
> > Want answers to your Access questions in your Email?
> > Free subscription:
> > http://peach.ease.lsoft.com/scripts/wa.exe?SUBED1=ACCESS-L
> > ---------
> >
> > "Str8" <Str8@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> > news:7FA61E55-FA42-4FE8-AEEC-96048CE5EB58@xxxxxxxxxxxxxxxx
> > I just realized a problem. I have a table that the info on this form
> > dumps into. When using this autopopulate it works great on the form but's
> > doesn't dump the fields that auotofilled into my table.
> > Any ideas?
> >
> > Thanks,
> > --------------
> >
> > "Ofer" wrote:
> > Your welcome, have a great weekend
> > \\// Live Long and Prosper \\//
> > BS"D
> > ----------------
> >
> > "Str8" wrote:
> > Thanks Ofer you really made my day. I've been working on this off and
> > on for about a week and couldn't get it to work. I tried something simular
> > but didn't work. This works perfect.
> > Thanks again.
> > ------------------
> > "Ofer" wrote:
> >
> > In the RowSource of the combo, include all the fields from the table
> > that
> > you
> > want to display in the form
> >
> > Select Employee, Sup, Manager, [Site Manager] From Employee
> > ============================================
> > In the combo Set the following properties
> >
> > ColumnCount Property: 4
> > ColumnWidths Property: 3;0;0;0
> > ============================================
> > Create three text boxes in the form, and in each write in the Control
> > Source
> > property
> >
> > Sup text box write
> > =[ComboName].Column(1)
> >
> > Manager text box write
> > =[ComboName].Column(2)
> >
> > [Site Manager] text box write
> > =[ComboName].Column(3)
> >
> > ===================================
> > After you select a value in the combo, the rest of the values will be
> > populated to the rest of the text boxes
> >
> > --
> > \\// Live Long and Prosper \\//
> > BS"D
> > -----------------
> > "Str8" wrote:
> >
> > This ones probably pretty easy but I cant get it to work. Ok I just created
> > a new DB. I have one table call "Employee" that has
> > Site Manager in the 1st Column, Manager in the 2nd, Supervisor in the 3rd,
> > and Employee in the 4th column. I have a Form that has 4 lines Employee,
> > Sup, Manager, Site Manager. I want to use a drop down in the Employee field
> > and when you choose the Employee it looks back at the "Employee Table" and
> > Auto Fills in the Employees Sup, Manager, and Site Manager in the form.
> > Hopefully this made since.
> >
.



Relevant Pages

  • Re: Merge Document and Fill in Form (Word 2000)
    ... Whereas all the Manager needs to do is fill out the ... However, when it comes to appending the signature, you're probably ... going to need some VBA. ... This way the Employee Name can be plced on ...
    (microsoft.public.word.mailmerge.fields)
  • Re: Count person only 1 time and show person not counted
    ... (SELECT Employee, qtr, Manager ... I tried this query and I am getting a missing operator error. ... "John Spencer MVP" wrote: ...
    (microsoft.public.access.queries)
  • Autopopulate AutoFill Form
    ... if you have an Employee table (which based on Ofer's previous reply, ... Manager again in the Form Info table. ... Select Employee, Sup, Manager, [Site Manager] From Employee ...
    (microsoft.public.access.forms)
  • RE: Autopopulate AutoFill Form
    ... you only want to store information ONCE. ... >>> Manager again in the Form Info table. ... >>> So this form has the combox with Employee name and when thats chosen it ... >>> populates Sup, Manager, and Site Manager. ...
    (microsoft.public.access.forms)
  • RE: Autopopulate AutoFill Form
    ... > if you have an Employee table (which based on Ofer's previous reply, ... > Manager again in the Form Info table. ... > employee in the Form Info table. ... > populates Sup, Manager, and Site Manager. ...
    (microsoft.public.access.forms)