Search results

  1. pl456

    Lesson Database

    If your using a form / subform doesnt the subform already have the total records displaying in the record counter near the nav buttons?
  2. pl456

    Question Not sure where to begin

    What I would do is create a default set of values that are applied when you add a new student.
  3. pl456

    Duplicate Values

    Is the form based on a query?
  4. pl456

    Problem converting from Access 2007 tp 2003

    I had a similar problem and if I recall it was all of the buttons that are created with the wizards. I had to code everything rather than use the wizards. Not the answer you want (sorry), it wasnt the answer I was looking for but had to get on with it.
  5. pl456

    Update linked table connection when moving servers

    Thanks. I had to install the advanced wizard for the link table manager. I thought it was working but then it stopped (there must be some conflict as I have access office 2007 installed as well as 97). I eventually got so sick of it that I converted the DB to access 2007, used the link...
  6. pl456

    Update linked table connection when moving servers

    I have an old access 97 db that links tables to an SQL db. We have recently moved our SQL db's to a new server and therefore the embedded connection strings no longer point at the correct server. I can open MySysObjects table and veiw the connection strings but cannot change the server address...
  7. pl456

    sorting datasheets

    you can turn all of them off and display only the menus you wish, although you can turn database & web back on if your right click in the menu bar.
  8. pl456

    sorting datasheets

    You make it your main menu, you disabale the main access menu and replace it with you custom one. I don't think you can set it up specifically for the form using this method but it will always be available for all forms. I stand to be corrected and could be missing the point.
  9. pl456

    A little help required

    Why don't you add columns to your spread sheet for a period number or week number then just filter by that number for your report? Just an idea because as its pretty simple data and access may be over kill for what you are doing. Saying that I would have done it in access just because my boss...
  10. pl456

    Question Database structure.

    You say you will need to enter the article with prices etc five times, you would need to do that if you had five databases so there is no gain or lose in the amount of data entry. Administrating 1 database is by far so much easier especially if you modify tables, queries, forms ect you don't...
  11. pl456

    Search facility from a webpage

    Only done it once myself and used asp, its not that difficult if you understand a little about vb coding because you will need to put sql queries into the pages, dimension variables, pass variabels around etc. You will need to create a system DSN You will need to setup IIS so you have a web...
  12. pl456

    Hide blank / New Record on form

    change the allow additions property
  13. pl456

    sorting datasheets

    you could try and create a custom menu, you may not need as much code. this link looks pretty helpfull. http://www.jamiessoftware.tk/articles/menubars.html
  14. pl456

    Calculating within an form

    can you give more details.
  15. pl456

    sorting datasheets

    I would sort the data in the query, its not dynamic to the users but at least puts a predefined order to the results
  16. pl456

    Insert Into error with ' in strings.

    not sure if this helps but can you not use the Char(39). may be, may be not?
  17. pl456

    Exporting values entered in a form to text a file (latest record only)...

    Not sure why, I have just tested this and it overwrites the file.
  18. pl456

    Qry to copy data and edit data from one field to another

    Open the query in design mode so you can see the design grid, go to the first empty column and type expr1: followed by your code. save and run the query to see what it does. You should basically see the results of what you want in a new field called expr1. Create the second query just as you...
  19. pl456

    Qry to copy data and edit data from one field to another

    You pretty much have it with that expression. Create a select query based on your main table and add expr1: with you code into the grid. Create a second query based on the first query, change it to an update query. The field that you want to update put [expr1] as the criteria. Should work...
  20. pl456

    Query

    Thanks for that, although a little complicated for what I want to achieve it did get the mind working and I came up with a fairly simple solution using uinion queries and selecting the top 2 records. Cheers
Back
Top Bottom