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 TouchToneTommy 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. zp162002

    Experiencing Information Worker Performance Issues

    Has anyone experienced performance issues when using Information Worker as an add-in in MS Outlook 2010? The users in my organization are experiencing delays from approximately 5 seconds to 30 seconds when attempting to open an email or send an email. It seems Info Worker will query the Epicor...
  2. zp162002

    Epicor ERP 9 Customizations Are Not Being Displayed

    Hi Everyone, My team has developed a few customizations to allow users to search for call logs and to send emails via the CRM module. Unfortunately, unless you're logged in under a full license, you cannot see these customizations. Epicor said users must login using a shortcut which contains...
  3. zp162002

    Can't find libary error

    The reference window opens right up. I put the module in a new database on it worked fine.
  4. zp162002

    Can't find libary error

    I can open the References window without any difficulty. Do you suggest reinstalling Access?
  5. zp162002

    Can't find libary error

    Hello All, I am having trouble using Access 97. When compiling a module containing the following line of code, strFirstName = Right(strFullName, intFullNameLength - intCommaPosition) I receive the following error message: Compile Error Can't Find Project Or Library. When I click ok, the...
  6. zp162002

    Finding A Record

    Thanks guys. I'll give it a shot.
  7. zp162002

    Finding A Record

    That's what my problem is - I have apostrophes in the string. I'm using Access 97 (I know - my company is way behind the times) and it doesn't recognize Replace. Isn't there a way to replace the apostrophes using some Ascii code?
  8. zp162002

    Finding A Record

    AuctionNum is a text field. It can contain either text or numbers. Is there a more efficient way to code this?
  9. zp162002

    Populate A Combo Box Based Using a Recordset

    Thanks Trevil. The code works great.
  10. zp162002

    Finding A Record

    Hello All, I'm trying to find a record in a table based upon two fields from a form using the code below. rs.FindFirst "[SellerNameID] = '" & strSellerName & "' And [AuctionNum] = '" & strAuctionNum & "'" Each time this line of code executes, I receive an error message stating: "Run-time...
  11. zp162002

    Populate A Combo Box Based Using a Recordset

    Hi All, I would like to populate a combo box using a recordset. This is the code I have so far: Private Sub Form_Current() Dim strList As String Dim db As Database Dim rs As Recordset DoCmd.Maximize Set db = CurrentDb Set rs = db.OpenRecordset("tblAuctionNum", dbOpenDynaset) rs.MoveFirst Do...
  12. zp162002

    Round Function in Access 97?

    Is there a function in Access 97 that is similar to the round function in Excel?
  13. zp162002

    List Box Selection

    Thanks guys. I appreciate your help.
  14. zp162002

    List Box Selection

    What's the best way to loop through the list of items in the list box? I'm assuming I have to do this to pick the correct index number of the value chosen by the user.
  15. zp162002

    List Box Selection

    I would like to populate a text box using a value that was selected from a list box. Both the text box and list box are on the same form. Does anyone have any suggestions on how to code this? I'm assuming I have to loop through each item in the list box until I find the value that the user...
  16. zp162002

    Populating A List Box From A Table In Access97

    Hi PHV, I tried your suggestion but the list box is not populated with the appropriate OtherIDs. The code should run when I enter the list box lstOtherID. It opens up a form - frmAddID. Please see below and let me know what you think. Private Sub Form_Open(Cancel As Integer)...
  17. zp162002

    Populating A List Box From A Table In Access97

    Can anyone please give me a quick example of how I would go about populating a list box on a form using data from a table with two fields - SellerID and OtherID? I want to look for every record that contains a particular SellerID (this will be on an underlying form) and to have all the...
  18. zp162002

    Copy cell formatting down a column

    Hello everyone. Is there an easy way to copy a cell's formatting properties (ex. align text in center of cell, change the fill color from white to green) down a column in Excel 97? I have some code that checks to see if there is a formula in the first cell in a range. If there is a formula...
  19. zp162002

    Copying Formulas in Excel 97

    I owe you guys my life. Thanks so much.

Part and Inventory Search

Back
Top