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 strongm 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. mguidry5

    Private sub running before controls update

    Hey there, I have a combo box called cboParameter on a form. It's row source has several columns which will display on txt boxes with their control sources set to cboParameter.Column(2) etc... My problem is this: I have a Private Sub in the form that is called on the afterupdate event of...
  2. mguidry5

    Determining what solution will best meet my needs.

    Howdy all, Some background: I need a solution for tracking environmental compliance at a chemical plant. The solution will be used by 4 or five employees that all have Access XP installed, with the possibilty that remote users (Divisional Management) may want to look in and see how we're...
  3. mguidry5

    Fullpath Method Failure

    Thanks, Ace. I'll continue to troubleshoot this one. If and when I find the problem/fix, I'll post back. Thanks again, Mike
  4. mguidry5

    FM20.dll causing problems

    PHV, I suppose I could have. I fixed the issue by creating a new database with only the required libraries referenced, and then importing all of my database objects from the old to the new. That fixed it in my database, but I'm still getting this error on other client computers on my...
  5. mguidry5

    FM20.dll causing problems

    Hey guys (and gals), I'm using some code to send emails with the cdosys.dll, and it works fine in one db that I have. The code uses late binding in case the user doesn't have the cdo reference enabled (and checks to see if cdoex.dll is used instead). Here's the code I'm using: Private Sub...
  6. mguidry5

    Fullpath Method Failure

    Thanks for the link, Remou. Unfortunately, it hasn't helped. I did have a few "superfluous" references checked, but leaving them out and recompiling didn't help. The funny thing is that this code was working on my machine (running Access 2003 w/ databases compatible w/ 2000), but not running...
  7. mguidry5

    Fullpath Method Failure

    Yes I have...no missing references.
  8. mguidry5

    Fullpath Method Failure

    Howdy all, When I run the code below, or any procedure using the "Fullpath" method, I get an error saying "Method 'Fullpath' of Object 'Reference' failed." Dim ref As Access.Reference ' Enumerate through References collection. For Each ref In Access.References ' Check IsBroken...
  9. mguidry5

    Verify Reference Library Exists

    Howdy all, When I run the code provided above by Remou, or any procedure using the "Fullpath" method, I get an error saying "Method 'Fullpath' of Object 'Reference' failed." I'm assuming this is a dll issue. Can anyone tell me which dll might be the culprit, and if there is an elegant fix to...
  10. mguidry5

    Logical reference type check in VBA

    Thanks, PWISE! That did the trick! [thumbsup2]
  11. mguidry5

    Logical reference type check in VBA

    Howdy, I'm trying to use the CDO sendmail method that I found in a FAQ here, but I have some computers that are sure to not have the CDOsys reference enabled on their machines. If I use late binding to set this reference, I get errors when and if the reference is already set. I use this to...
  12. mguidry5

    Resize combo box with mousedown event

    Thanks, guys. Randy - I smell what you're steppin' in, but I'm still curious as to why my mousedown event interupts the selection of an item from the combo box.
  13. mguidry5

    Resize combo box with mousedown event

    Hey there, I'm trying to resize a combo box with a mousedown event. The combo box has two columns, VendorID and VendorName. The VendorID is an autonumber, and therefore meaningless to the user. The autonumber is bound, so I'm using an unbound text box to hold the vendor name. What I'd like...
  14. mguidry5

    Pass a query to and OLE chart on a report

    Duane, I'm trying your solution, and i'm getting a message when I click my command button that says "Item not found in this selection." It doesn't bring me into VBA and show we what line the error occurs on, but if I comment out the line CurrentDb.QueryDefs("qrySHAREbyLocation").SQL = strSQL...
  15. mguidry5

    Pass a query to and OLE chart on a report

    howdy, I've got a report called rptSummary with two OLE pie charts on it. I'm opening the report from a form called [COLOR=blue]frmAdminTools. I've got some code on the report's On Open event that grabs some parameters from [COLOR=blue]frmAdminTools and makes a query string. I'm trying to...
  16. mguidry5

    Type Mismatch error problem

    RoyVidar, Thanks - that does the trick. Sorry I forgot to say which line the error was on, but you got it. If I don't make a selection in the combo, it gives me a default message that is adequate for my purposes. Thanks again, Mike
  17. mguidry5

    Type Mismatch error problem

    Hi, I've got some code that's giving me problems. I'm allowing priviledged users the ability to modify some table content via datasheet forms. The tables are used as combo box data sources throughout the database. I've given them a combo box (cboLists) to select the pick list (table) that...
  18. mguidry5

    Can report/page headers of subrpts continue on next page?

    Okay, now I get it. I've read several posts by Duane Hookum that refer to creating a grouping level on the subreport to the expression "=1", setting it's header to yes, then in the "=1" header properties setting "Repeat Section" to yes, but I didn't get it until just now. Works like a charm.
  19. mguidry5

    Can report/page headers of subrpts continue on next page?

    They are report headers. I'm under the impression that Page headers won't print at all in a subreport.
  20. mguidry5

    Can report/page headers of subrpts continue on next page?

    Howdy, I have a report with several subreports on it. My problem is that sometimes, depending on how much data is in one or more subreports, a subreport will continue onto the next page and leave it's header information behind. I don't see a way to specify grouping of the subreports from the...

Part and Inventory Search

Back
Top