Recent content by sammy16

  1. S

    Fill text box on sub form

    Happy New Year everyone.. If I have a text box on a main form and then I want that value to be displayed in a text box on a sub form. The sub form is based on a query and the main form is based on a table. If the project has data in the query it displays fine but if a new record is entered into...
  2. S

    Blank fields on report

    Is there any way of displaying a message in a field on a report if there is no value being passed from the query? If so would you just put the code in the control source of the field in the report? Cheers
  3. S

    requery main form

    Hi all I hope someone can help me this problem I have a form (frmtransaction) showing all components for a project. I have a combo box at the bottom of the form query tblComponents for the list of components avaiable. If you need to add a new component you click a button to enter this in...
  4. S

    How to make ComboBox values change

    Do you really need the second combo box to be a combo box? You could make the second combo box just a text box and enter =[Cbo1].[column](0) in the control source of the new text box's properties.
  5. S

    combo box selection

    I'm sorry I'm not sure where you mean by the query combo. I choose a Team Leader from a combo box fisrt and then the project list is based on the team leader selected. Should I call the code in the after update event of the Team Leader combo box?
  6. S

    combo box selection

    It should be.
  7. S

    combo box selection

    I hope this makes sense and someone can help! I have a combo box on a form where I can select a project number. I then wish to base a query on the selected project number to tell me the total project time entered in by each team member. The problem I have is that the project numbers are entered...
  8. S

    error 2024

    Cheers for that it works now :)
  9. S

    error 2024

    Hi I'm trying to export a report with OutputTo but it gives me the following error:. Run-tim error '2024': The report snapshot was not created because you don't have enough free disk space for temporary work files. This is what I have: 'DoCmd.OutputTo acOutputReport, "rptRegion", acFormatSNP...
  10. S

    combo box problem

    unfortunately no as the value held inthe first combo box is not unique it is an area code with many regions for the one area. I want to display the region code for that particular selection.
  11. S

    combo box problem

    I have a form with 4 combo boxes. One of the combo box's source data comes from a table with 6 columns but only the first column is bound when selected. Is there anyway I can have more than one value as I need to use one of the other colums for a select statement in the code update() to enter a...
Back
Top Bottom