Search results

  1. H

    Updating/importing? Question

    Hello all, I have a question; I have 2 databases with 4 tables in it following the same structure. Table 1: tblPersons consisting employeenumber as pk Table 2: tblLocation consisting the location as pk Table 3: tblCompanyvehicle consisting the licenseplate as pk Table 4: tblAssets consisting...
  2. H

    'Dynamic' selection

    Now, I don't know if this topic should be in forms, queries or reports, so I decided to post it here in general until someone gives me a big bollocking and send this topic elswhere :D I have a table with loads (50+) of columns which hold information about people in our company. What I want is...
  3. H

    Report Format with Email

    @Hayley: If I use your db example (after converting to access 2003) and click the send option, all dots are replaced by semicolons (ie someone@home.com -> someone@home;com). Anyway to avoid this?
  4. H

    High/Mid/Low Query

    Wow, Thanks, it works perfectly!
  5. H

    High/Mid/Low Query

    It must be me but: I have a table with the column Grade and a column Grade_Group In the column Grade I can give a value from 0 - 10 (pull-down). When I grade between 0 and 3 I want the column Grade_Group to be updated to Low (easy, even I can do that with an update query). But if the grading...
  6. H

    Derive birthday from field and pop-up.

    Sorry to nag you again Matt, But the listbox keeps on returning the SELECT statement. Must be going bonkers here, did I miss something in the listbox properties? I attached a screenshot of the form in view mode and the VB code window, maybe I'm missing something here.
  7. H

    Derive birthday from field and pop-up.

    LOL so even VB programmers are human after all :) Thanks for the quick response mate!
  8. H

    Derive birthday from field and pop-up.

    Thanks for the fast reply, there's just one minor thing: As I open the form the listbox shows: SELECT [Werknemernummer], [Naam] [VoorNaam] as Employee, Left([Werknemernummer],2) as AgeFROM Persoons_Gegevens WHERE [Werknemernummer] = #06 09 01# I added a record with a person who has its birthday...
  9. H

    Derive birthday from field and pop-up.

    Our company has a employee numbering system like 65.01.20.HAR this is also the primary key that I use in the table. The employee number is build up like this:65=year 01=jan 20=day HAR=first three letters of last name, so 65.01.20.HAR is me Hartkoorn born on 20-01-1969. Furthermore I have...
  10. H

    Updating fields in report?

    Tried to add the following code to the onClick event in the tab but it doesn't work, any ideas where to put the code? Private Sub Rapporten_Click() On Error GoTo Err_Rapporten_Click DoCmd.GoToRecord , , acNext DoCmd.GoToRecord , , acPrevious Exit_Rapporten_Click: Exit Sub...
  11. H

    Updating fields in report?

    Now I found that if you move up one record and down again the data does show when viewing the report. Is there a code which moves up one record and down again which I can run when the Reports tab is clicked?
  12. H

    Updating fields in report?

    K, Going great now, mainly due to the information found on this forum. Breaking my head again on a thing here: I have a tabbed form, one of these tabs is called reports, the others used to enter information. Now if I change some data in the form and switch to the reports tab and hit the view...
  13. H

    Data from multiple tables without relationships

    Ta, Works! But still unable to show (for example) the version and department in the header.
  14. H

    Data from multiple tables without relationships

    Sorry, clicked twice, forgive my double post
  15. H

    Data from multiple tables without relationships

    RV, Wow, that was fast and clear! I'm fiddeling about with it now, is a subform not going to work either? It just crossed my mind, but if not possible I'm not going to bother with it. Ta
  16. H

    Data from multiple tables without relationships

    K, Maybe a noob question, but I'm still learning access (I know a little late at the age of 37, but better late then never). I have a form with several tabs, linked to a table with employee information, works like a charm. Now, my last tab is called settings, maybe no need to say that the...
  17. H

    Manipulating printer settings

    K, I've got a printer which can print both sided. Now, this is what I want: Certain reports I want to print single-sided and other I want to print both-sided, so the ideal situation would be access to set the printer settings (HP laser) and print directly, instead of going manually through the...
  18. H

    Clear data in a complete yes/no column

    Ta for the fast reply guys!! Getting up and running again. Paul (btw: sorry for my English, I'm Dutch and damn proud of it!)
  19. H

    Clear data in a complete yes/no column

    K, I'm new here and I have a question: In my db I have a yes/no tick, now I want to create a button that clears out all the ticks in that specific column, possible? To clarify: I have an address db with an gift table (tbl_gift) and a yes/no parameter for, lets say, 'did they gave me a present...
Back
Top Bottom