• WSdgiambruno

    WSdgiambruno

    @wsdgiambruno

    Viewing 15 replies - 31 through 45 (of 46 total)
    Author
    Replies
    • How about just pasting the cells from Excel? This should come in as a table that you can then format. (Unless you are trying to avoid having to format a table each time data changes in the Excel spreadsheet… that’s why you were merging in the first place.) Or record a macro for your formatting of the table, then each time you want your new roster, copy the data from Excel and run your macro. (formatrooster)

    • in reply to: Help! (Word 2000) #586967

      You can manually add this back – click Tools, Customize, select the Command tab. On the left, select Built in menus, on the right, look for Edit. CLICK AND DRAG this item (EDIT) back up to the menu.

    • How about placing your text in the header? This seems to work for me.

    • in reply to: Sorting changes data (2000) #586545

      This works great! THANK YOU.

    • in reply to: Page Count (2000) #583422

      Very cool. Thank you!

    • in reply to: crosstab query vs. subqueries (2000) #580962

      That did the trick! Thanks again Charlotte.

    • in reply to: CROSSTAB PARAMETER QUERY FAILS (2000) #579572

      That did it! Thanks!

    • in reply to: PRINTER DRIVERS (XP) #579564

      THANKS! This did the trick.

    • in reply to: Report Header Problem (2000) #574903

      Yes, that code is not in the groupheader2 as I wrote, it’s in the detail area, to suppress records that are not complete. Sorry for the confusion.

      I have found a solution, some code in the header (just above the detail area, in groupheader2), to suppress the header just above the detail, when the detail record’s “items” field is null.

      Private Sub GroupHeader2_Format (Cancel As Integer, FormatCount AsInteger)
      If IsNull(Items) Then
      Me.PrintSection = False
      Me.MoveLayout = False
      End IF
      End Sub

      Apparently a header can refer to the first record in the section just below it, in this case the [items] field in the detail section.

    • in reply to: sendobject (VBA/Access2000/sr1) #569049

      THANK YOU THANK YOU THANK YOU!!
      That sendobject was going to be the end of me. Works like a charm every time.

    • in reply to: Append Text (2000) #568445

      THANK YOU! This works beautifully. (You can tell I don’t know VBA – I am amazed everytime it works.)

    • in reply to: sendobject (Access2000) #566769

      Private Sub Command6_Click()
      DoCmd.SendObject , , acFormatHTML, , , , [Complaints.CompContact], “[Complaints.Comp.Desc] “, True, “”
      End Sub

      Form is based on Complaints table. Subject of the email is the CompContact and the message text pulls from the Comp.Desc (the description of the complaint). I’ve added and deleted statements like option explicit and this makes no difference. I need some signal to Outlook to reset or something like that. (I am not a VBA programmer, just guessing here…)THANK YOU.

    • in reply to: FLAT FORM vs. SUBFORMS (2000) #565893

      THANK YOU! This worked perfectly. COMBOBOX is the solution I was seeking.

    • in reply to: Finding Duplicate Entries #1788808

      THIS IS BRILLIANT! Much better than advanced filter solutions, which is the way I’ve always taught it. So simple it hits you in the nose! THANK YOU.

    • in reply to: Security and Start Up #527371

      THANKS.

      I’m not yet familiar enough with VBA to follow your steps – I was hoping there was an easier solution.

      I did FINALLY figure out those link gotchas – lots of trial and error (wasn’t much on this in the help files!).

      DO YOU KNOW – how to get an icon to stick with the link? (I picked up an icon off my c drive, but when it’s copied to a floppy or emailed, it loses the icon.)

      THANKS AGAIN.

    Viewing 15 replies - 31 through 45 (of 46 total)