Search results

  1. T

    conditionally suppress page header & footers

    I have the sub reports in the detail band should they be moved into a different band of the report that can resolve this?
  2. T

    conditionally suppress page header & footers

    The sub report only has a detail band so what would be suppressed?
  3. T

    conditionally suppress page header & footers

    The main report should always have the page header and footer. When the page break starts a new page and the sub report prints it should not have either page/footer that appear on the main report.
  4. T

    conditionally suppress page header & footers

    Just to make sure that I'm not making a stupid blunder, the code to suppress goes in the main report's header and footer on format section and not in the same section of the sub report correct? :eek:
  5. T

    conditionally suppress page header & footers

    Just tried it with no change.
  6. T

    conditionally suppress page header & footers

    Hi Report Masters, I have a report that appropriately prints its headers and footers for the main report. But, I also have Page Breaks controls in this report with sub reports that I don't want to have the page header or footer of the main report printed on. To suppress the header/footers, I...
  7. T

    Combo Filter not working for 'All'

    I'm changing to a char field as you suggested. I have changed description to EpistleDescription and EpistleStatus which should not be reserve words. And as they indicate show whether a letter is complete or not. So, EpistleDescription has two rows Complete, Incomplete. EpistleStatus has 1. This...
  8. T

    Combo Filter not working for 'All'

    I can't implement 'All' in a combo box control. I set up a field in my table called 'complete' its data type is bit and my database is mssql 2008 R2. I set the default value to zero (0). On the Access side, I made a table called tblComplete with three columns. The first is Description {All...
  9. T

    Radio Button Focus

    I tried this but it gave me an error msg: Me.FrameGiftAlloc = Me.OptionGA What do, I have to change?
  10. T

    Radio Button Focus

    Form Masters, This may be simple but can't find solution. What, I want to do is not only select a radio button from a set but also have the dot that is in the center of the radio button display that I have selected it. So, my code is: Me.OptionGA.SetFocus This works fine the object shows a...
  11. T

    vba code to turn on test boxes

    Uncle Gizmo, Nice video UG but what if you have dozens of controls of all sorts on a form how do you loop through a set of 10?
  12. T

    vba code to turn on test boxes

    Yes, Moke's code has resolved it.
  13. T

    vba code to turn on test boxes

    Uncle Gizmo, To answer your questions, I want the 'check' in the textbox to turn off if the corresponding textbox above it is empty. So the code Nz(Len(Me.txtWriter.Value)) > 1 checks to see if the string is greater than one and if it is the check is turned on otherwise it stays off. As, I...
  14. T

    vba code to turn on test boxes

    Hi Form Masters, I have several unbound text boxes that I have placed underneath several other textboxes. The ones underneath have the code ChrW("&H2714") which is the symbol for a check Mark as there Default Value. They all have there Visible method set to False (so they are invisible). The...
  15. T

    Subform link issue

    I should also mention that the new record button on the record selector is grayed out.
  16. T

    Subform link issue

    Here is the script for both tables. SELECTTOP (1000) [StrategyID] ,[UpNumFK] ,[StrategyAssignment] ,[StrategyNote] ,[StrategyDate] ,[StrategyStatus] FROM [Med].[dbo].[CPM_Assignments] ----------------------------------- USE [Med] GO SETANSI_NULLSON GO SETQUOTED_IDENTIFIERON GO CREATETABLE...
  17. T

    Subform link issue

    Hi Form Masters, I have a form that I inherited that has repeating columns in the tables. I was asked to add three (3) more repeating columns called Assignments 1 to 3 and now the additions 4 to 6. This should clearly go into a separate table where the user can add as many as needed. On the...
  18. T

    Run MS Sproc with 4 parameters

    Super everything is now working!:D
  19. T

    Run MS Sproc with 4 parameters

    .Execute dbFailOnError is the line that caused the error and I did update the connection string.
  20. T

    Run MS Sproc with 4 parameters

    Error is now gone but have new one. Run-Time error 3420 Object invalid or no longer set.
Back
Top Bottom