Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. olushow

    Listbox update

    I wanted to give the users the opportunity to edit and modify an activity, if needed be. I just assumed that could only be possible using a Listbox.
  2. olushow

    Listbox update

    So I have a button called Add Activity which is on the main form, that opens up the Training Activity form. My expectation is that once I create the record in The training activity form, it should automatically populate the activity table. I think I may have made this more complicated than it...
  3. olushow

    Listbox update

    I didn't think about that. I assumed it captured the value automatically, My question then is how do I capture the Event.ID to the Activity table/form?
  4. olushow

    Listbox update

    My apologies that was the wrong command. Actually I have no code behind the Save button. I thought I did. - Can you make a suggestion please? Thanks.
  5. olushow

    Listbox update

    That seemed to fix it.. At least to ensure that the listbox is empty when creating a new event. But when I create the activity it does not create the entry in the listbox. Here is my code behind the button' Private Sub Command16_Click() Saved = True DoCmd.RunCommand (acCmdSaveRecord)...
  6. olushow

    Listbox update

    So I added the training table to the SQL Design. and the query now looks like this. SELECT tblTrainingActivity.[Activity ID], tblTrainingActivity.[Activity Type], tblTrainingActivity.[Activity Start Date/Time], tblTrainingActivity.[Activity End Date/Time], tblTrainingActivity.Integrator FROM...
  7. olushow

    Listbox update

    No it doesn't. i have a table called tblActivities which stores the data. The Primary key Events Id from the Training Events table is a foreign key on the tblActivities table. Now that i think about the filter makes no reference to the Training Events table. SELECT...
  8. olushow

    Listbox update

    Yes, when I open the main form Training Event it still shows records in the Listbox, even though the form is opened to add a new record. The listbox should be empty.
  9. olushow

    Listbox update

    No there is no lookup table. This is freeform. I slso want to make sure that an activity can only be created only after the Event record has been created.. I want to avoid orhpan records, if you catch my drift....Here is the code that is behind the add activity button. Private Sub...
  10. olushow

    Listbox update

    I have a listbox that would list activities related to a training event. The event is the master record, while the activities will be the child record based on the tables relationship. i have an "Add Activity" button that will create the related activity and populate the listbox instantly. How...
  11. olushow

    Run Time Error '3464'

    I am attempting to filter out a subform when I select a value in a combo box, My problem is that whatever value I select I get the following error message: - RunTime error 3464 - Data type mismatch, and the debugger points to the 4th line in my code. Not sure where the data type mismatch is...
  12. olushow

    Specific Months

    Thanks for your response. The tricky thing is that the main report is not really the issue. I have four subreports within the report that need pull that data. How can I use your suggestion for the subreports?
  13. olushow

    Specific Months

    I want to know how to pull data for a all the months so far this year meaning April, March, February, and January. As well as December,November and October of last year. The tricky part is that I have 4 sub-reports that need to pull information based on this criteria. This is a one time report...
  14. olushow

    Creating a report to run Quaterly.

    Not sure what you mean by that.
  15. olushow

    Creating a report to run Quaterly.

    I need to create a report that would run quarterly. The report would run as follows For cases that were created between October 1 to December 31st first the report will run Jan 1 For cases that were created between Jan 1 and March 31st the report will run April 1st For cases that were created...
  16. olushow

    Percentage of Resolved Cases

    I keep on getting there must be a group that matches this field. Should I be putting the group names in the formula or the formulas themselves.?
  17. olushow

    Percentage of Resolved Cases

    I created a formula to capture the weekending of a specific week. I then created a group based on this formula. I want to be able to give a percentage of cases resolve within each week.. The problem i have is that it is giving the same percentage for every different week. What should I do to the...
  18. olushow

    Average Response time

    Ok. I created a new one. Thanks..
  19. olushow

    Percentage of Resolved Cases

    I am having serious difficulties in trying to do a percentage of Resolved Cases. My report pulls all cases within a specified date range. So far I did the following. Created the following formula - //Resolved If {HPD_Help_Desk.Status} in ["Resolved", "Closed"] Then 1 Then I created a...

Part and Inventory Search

Back
Top