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: *

  • Users: SColbert
  • Order by date
  1. SColbert

    Need code to run a DVD movie from within Powerpoint presentation

    I've got a DVD movie that I'd like to run from within a powerpoint slideshow presentation. Creating code that would start the movie from a button click would be fine - all assistance is greatly appreciated!
  2. SColbert

    Section Header problem

    Perfect - thank you!
  3. SColbert

    Section Header problem

    I have a 3-page report (one large Detail section with manual page breaks) grouped by "LastName" with a LastName section header that I want to print on the first page of each 3-page group. My problem is that the LastName section data prints on its own page - not at the top of the first page of...
  4. SColbert

    Report Detail Section longer than 22"

    Perfect - just didn't know where to look. Thanks much!
  5. SColbert

    Report Detail Section longer than 22"

    Okay - I got the sub-report inserted & spacing works fine. For some reason, there's a border around the sub-report in Print Preview. I've looked at every setting & can't seem to find where to delete this. Any suggestions?
  6. SColbert

    Report Detail Section longer than 22"

    I've got a report where I need the Detail section to be longer than the currently allowed 22". The report is basically a text report with specific field data disbursed throughout - so not compatible with sub-reports, etc. I'm working in Access 2003. Can this be done?
  7. SColbert

    Searching within a list box

    Thanks much - I chose the Combo box & though the format is a bit different, it does solve the problem of endless scrolling!
  8. SColbert

    Searching within a list box

    I have a list box created on a form to search for and select a specific name from my database. When the name is selected (either by double-clicking or selecting & hitting the "Open" button on the list box form) it then opens the data entry record for that individual name selected. When first...
  9. SColbert

    DSum for Report Subtotal

    Perfect - much simpler than I thought. Many thanks!
  10. SColbert

    DSum for Report Subtotal

    I have a report where I'm using the following code in an unbound text box to try to arrive at a subtotal of Pledges Received for each golfer registered: GolferPledgesReceived=DSum("[PledgeAmount]","qryPledgeStatus","[Received] = True" And "[GolferLastName] = '" & [GolferLastName] & "'")...
  11. SColbert

    Calculated Field problem

    Thanks for the point in the right direction - because the Total Received value is calcuated in a query I used the IIf(IsNull) function in the Total Outstanding text box & it worked great.
  12. SColbert

    "Bind a text box to a query result"

    Clicked in the wrong box & started typing too quickly - many apologies :-)
  13. SColbert

    Calculated Field problem

    I've got a form with three calculated fields - Total Pledges Raised, Total Pledges Received and Total Pledges Outstanding for each GolferID record. Pledges Raised and Pledges Received are calculated through queries and displayed on the form using the DLookup function. Total Pledges...
  14. SColbert

    Total from Sum Query in Unbound Text Box on Form

    Of Course! It was right in front of me - too close to see, obviously. Thanks much!
  15. SColbert

    Total from Sum Query in Unbound Text Box on Form

    Thanks - when I tried that, I got an error stating "Automation Object not supported" in reference to the query name qryPledgeTotal. My expression read: =DSum([PledgeTotal],[qryPledgeTotal],["GolferID = & "GolferID])
  16. SColbert

    Total from Sum Query in Unbound Text Box on Form

    I've got two forms (Golfers and Sponsors) based on two tables (also Golfers and Sponsors). Tables are linked via GolferID field. There is an unbound text box on the Golfers form that I'd like to use to show the total amount pledged for each golfer. I've created a Sum Query that's working...
  17. SColbert

    "Bind a text box to a query result"

    I have a form "Golfers" based on a table "Golfers" containing golfer information and a form "Sponsors" based on a table "Sponsors" containing sponsor information (forms are linked many Sponsors to one Golfer via GolferID). I have an unbound text box on the Golfers form where I'd like to show...
  18. SColbert

    Excel: Excluding Hidden Rows in Formulas

    I use the following code that takes care of this (& works better for me as I cannot always use AutoFilters in my spreadsheets): Function SumVisibleCells(CellsToSum As Object) 'sums only visible cells, ignoring cells in hidden rows or columns Dim cell As Variant Dim total As Single 'I use...
  19. SColbert

    Multiple Report Criteria

    I've got several regional reports that the user runs from a "Print Reports" form where the report type & region are chosen via Option Groups then the report runs when a Command button is clicked (either in Preview or Print mode). I'd also like to give the user the choice of how to sort the...
  20. SColbert

    Formatting text in combo box

    Thanks again for your assistance. I came to the same conclusion on using an optiong group as well & have put it in place.

Part and Inventory Search

Back
Top