Recent content by Softweb

  1. S

    Adding a hyperlink to a Form

    Hi ridders. That works fine, so adding "Application" makes the difference. Thanks again
  2. S

    Adding a hyperlink to a Form

    Thanks the quick reply and for that info. The code crashes on "FollowHyperlink Me.txtAudit_files", so obviously I am doing something wrong. The filepath to my folder is D:\...............\.............\required folder, so where does this go? I have experimented with the textbox hyperlink...
  3. S

    Adding a hyperlink to a Form

    Hi. I am trying to add an unbound textbox to an Access Form to create a hyperlink that opens a folder located outside the Database. The following code provided as a solution to another member's problem. On adding a textbox to my form and trying the code, I found it opens the file explorer ok...
  4. S

    Identifying no records for a client

    Many thanks Gasman and ypma. The solution you suggest works fine. Thanks again
  5. S

    Identifying no records for a client

    Hi. I would be grateful for any help with the following query design. I have a table of registered Clients (tblClient) who require training, and this table is linked by Job_No to a table (tblTraining) that holds training session data for Clients. A Client firsts registers, and their information...
  6. S

    ORDEWR BY clause

    Many thanks Minty. I had the ORDER BY clause at the end in quotes but didn't include the space between the clause and its quotes. Really appreciated. Chris
  7. S

    ORDEWR BY clause

    Can anyone help with ORDER BY problem please. The following Function resides in an Access 16 Module Public Function ShowTrainingHistory(intJobNo As Integer) Dim strTrainingHistory As String strTrainingHistory = "SELECT Training_date, SubjectToday, Training_ID, Job_No...
  8. S

    Assigning SQL to a string variable

    Thanks Minty that's really useful. I'll try it out. Chris
  9. S

    Assigning SQL to a string variable

    Can anyone tell me how to assign the following SQL to a string variable in MS Access 16 so that it can be assigned to a ListBox RowSource. I’ve tried it unsuccessfully but I think my syntax is wrong. SELECT tblSubjectToday.SubjectToday, tblSubjectToday.IsPending...
  10. S

    Unwelcome "Enter parameter value" Dialogue box

    Thanks everyone for your help on this one.
  11. S

    Unwelcome "Enter parameter value" Dialogue box

    Thanks Minty. That make some sense. So am I right in thinking the query SQL is written into the List RowSource, so it is not until the Form opens that it can run and have access to the txtTraining on the Form. Is the answer to only assign the query string to the RowSource with Form load() ?
  12. S

    Unwelcome "Enter parameter value" Dialogue box

    Hi Minty. Thanks for the reply. No the Form is not open. When I close the Parameter box (without entering a value) the database continues to open normally. Thanks MarkK I'll try that code.
  13. S

    Unwelcome "Enter parameter value" Dialogue box

    Thanks ByteMyzer. I have tried that but the problem persists. The database opens normally if I leave the parameter blank and click ok.
  14. S

    Unwelcome "Enter parameter value" Dialogue box

    When I load my Assess database I am being presented with an unwelcome dialogue box labelled “Enter parameter value: Forms!frmTraining!txtTrainingID”. I am aware this is a common problem caused by object naming errors, but I have checked everything, so I would really appreciate any help with...
  15. S

    Adding records from a List Box

    Thanks Mark. I understand what you are saying about the simplicity of the SQL, but my background is programming and my knowledge of applying SQL is limited. Hence using the list in the way I have suggested, which is the easiest way for me at the moment. I can see what your SQL is doing but I am...
Back
Top Bottom