Search results

  1. A

    Filtering a form but...

    The way you want it No. Your main form is set to display a single record at a time, your subfrom displays all the courses by student. Now you want to make the subform a main form and the main form to become a sub. Well ... just create another form which will be called in by clicking on the...
  2. A

    help with combo box

    What do you mean by starting the form with blank fields ... does that mean you want to start the form to enter the new record or you don't want the new record but want to wait till somthing will be selected in lets say combo box ? in criterion for the record source of your report reference to...
  3. A

    Access resides in memory

    Hmmm ... This method was as an example from MS. But ... :) DoCmd.quit worked fine. Thank you
  4. A

    Access resides in memory

    I have seen this problem somewhere but could not find the solution. I have dbase opened with db window hidden. When exiting the db, access application resides in the memory. I can see it in task manager, processes. the code i have is: Private Sub cmdExit_Click() CloseCurrentDatabase...
  5. A

    Another refresh / requery

    This is probably because your newly entered record is not saved yet. What you needed to do is to on customers form on activate me.requery on newcustomer form on deactivate me.refresh
  6. A

    Join Query

    I assume the SQL for the query shold look like this. PARAMETERS Datevar1 DateTime, Datevar2 DateTime; SELECT AVAILABLECARS.ZONE, AVAILABLECARS.CARCATEGORY, AVAILABLECARS.DAILYRATES, AVAILABLECARS.FROMDATE, AVAILABLECARS.TODATE, CARPICS.CARPICTURE FROM CARPICS INNER JOIN AvailableCars ON...
  7. A

    Conditions

    Although this is not truly visible/invisible thing :) but ... You would need to set enabled/disabled property in conditional formating dialogue and pick up the color of your fonts,textbox background to match the background colour of your form. See example
  8. A

    Conditions

    Sure, You can use conditional formating not to mess with vba.
  9. A

    Join Query

    Where does the data for datevar1 and datevar2 come from ?
  10. A

    Can a table have a relationship with itself?

    Simply add the same table to the query ... and link your Field#3 ... to the personID
  11. A

    ultra noob in need of ultra help :)

    This is a good example of search form.
  12. A

    Time Clock App in Access

    What exactly are you trying to build ?
  13. A

    Find a File or Document

    Will it work for you?
  14. A

    GoToRecord New

    Is not it that your sub and main form are linked? Logically if you make your main form to go to a new records there should not be any records in the sub form at all. Or your sub is linked to an unbound field ?
  15. A

    Displaying information

    Is this what you wanted Open Profile form, double click on the shared mail text box select items and then close. The changes will be reflected in the text box
  16. A

    sort without closing

    What events trigger the change in calculated field ?
  17. A

    Trouble with filter

    Create blank db. Then open this db, go to file>get external data >import. Point to your old db. Select all in tables, queries, forms, macros and modules. Click options and select definition only . This will copy only the structure of your dbase.
  18. A

    calling the experts - a real heavy one!

    You can create another query with Select distinct yourtable.user_id Then join two queries in summation query grouping all the records from 1st query with Total: first
  19. A

    Query from 2 tables

    I think you can use union query SELECT PrimaryTable.PkeyID, "" AS ParentID FROM PrimaryTable Union Select Subtable.Fkeyid, SubTable.PkeyID From Subtable;
  20. A

    Query to add 15 mins until value reached

    Option Compare Database Option Explicit Public Function ExecuteDDL(strSQL As String) Dim db As DAO.Database Set db = CurrentDb db.Execute strSQL Set db = Nothing End Function Public Sub CreateTempT() Dim s As String s = "CREATE TABLE Yourtemptable (ID Counter, MyTime DateTime)" ExecuteDDL (s)...
Back
Top Bottom