Results 1 to 2 of 2
  1. #1
    dynamictiger is offline Novice
    Windows Vista Access 2007
    Join Date
    Apr 2010
    Posts
    21

    Interesting Issue With Report

    Hi All

    I have a report content that is dynamic and changes constantly. To acheive this I have coded the onformat event to add the data via recordsets. This works fine.

    The recordset adds a record to a string the string is then all placed into a textbox on the report and there is the task list. the task list is used by service people.

    In an ideal world it would be nice if the service people could have a check box or similar to tick to show they have completed the task. I am not sure how to add this programmatically.

    So in summary the result I am looking for is:

    1: Some task

    Task Description Tick here for complete

    The code I am using is something like:

    Code:
    Do Until .EOF
     
                If Not .Fields("taskRoot") = "tlkupPoolFeature" Then
     
                    strTask = strTask & intCount & ":  "
     
                    strTask = strTask & dpsLookup("Task", .Fields("taskRoot"), "ID = " & .Fields("Task"))
     
                    strTask = strTask & vbCrLf & dpsLookup("TaskDescription", .Fields("taskRoot"), "ID = " & .Fields("Task")) & vbCrLf & vbCrLf
     
                Else
     
                    Call dpsPoolFeature(intCount, .Fields("task"), strTask)
     
                End If
     
    Me.txtTaskList = strTask


  2. #2
    Datagopherdan is offline Competent Performer
    Windows 7 Access 2007
    Join Date
    Dec 2008
    Posts
    220
    Is this just a report that you're printing out and you want a check box next to each task for them to be able to check? If so, just add an unbound check box to your report in the section that would display each task. It will create a check box for each one of them.

    Dan

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 03-31-2010, 11:57 PM
  2. adp accessing issue
    By fillerup in forum Security
    Replies: 3
    Last Post: 03-10-2010, 09:59 AM
  3. Query Issue
    By access in forum Queries
    Replies: 1
    Last Post: 01-14-2010, 03:28 PM
  4. If statement Issue????
    By graviz in forum Programming
    Replies: 1
    Last Post: 09-25-2009, 10:09 AM
  5. new issue about autoincreasednum
    By tinytree in forum Queries
    Replies: 0
    Last Post: 05-06-2009, 09:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums