Search results

  1. BLeslie88

    Run-time error '7874'

    MikeLeBen worked out fine thinks! :-)
  2. BLeslie88

    Run-time error '7874'

    It is a text file - delimited file - that there is headings among other lines that generate errors on every import as I have some forced field specifications... This causes import errors. I am not the one maintaining it and do not want accumilated error tables - so I do not see how not doing...
  3. BLeslie88

    Run-time error '7874'

    Doing a loop to remove error import table: Example: "CONTACTS1_ImportErrors" DoCmd.DeleteObject acTable, "CONTACTS" & myNum & "_ImportErrors" This has been working well - now today - suddenly there is no error with one table import... So I get title error message. "Run-time error '7874'" Is...
  4. BLeslie88

    Quick help please - searched no RESULTS.

    Code that fixed it - found in the help - DoCmd.RunSQL ("UPDATE tblAddress INNER JOIN tblInventory ON tblAddress.CUSTNO = tblInventory.CustNo SET tblAddress.FAXDESCFR = """ & Combo13.Value & _ """, tblAddress.FAXDESCGR = """ & Combo19.Value & """ where tblInventory.CreditRep = """ &...
  5. BLeslie88

    Quick help please - searched no RESULTS.

    Doing an update query - and... when user enter "it's" the ' Because it crashed - I will do a few tests such as change string to text... Any tips clues appreciated. DoCmd.RunSQL ("UPDATE tblAddress INNER JOIN tblInventory ON tblAddress.CUSTNO = tblInventory.CustNo SET...
  6. BLeslie88

    Display active row number...

    You were right for turning on the record selector's... Knew should be easy - where the row number appears isn't important. Thanks. "Duh" :eek:
  7. BLeslie88

    Display active row number...

    That is done on reports she gets. Or are you suggesting a counter for each action taken?
  8. BLeslie88

    Display active row number...

    Thanks for replies, all valid points from a stand view of data. If a user would like to know how many records they have to get through without counting though... Or to set a goal for where they want to be... Such as . Say 1 2 3 . . . 49 50 And at noon would like to know where there are...
  9. BLeslie88

    Display active row number...

    Searched left right and center. All the things we can do & no simple way to display the current row number? A simple counter - autonumber feature of sorts... I am running off a table on my form, and want to refrain from doing this in the query and recordsets... Is there no simple way to...
  10. BLeslie88

    Easiest question in the world!

    I simply need to display the row number.... (On a form in a text box or label) 1 2 3 4 5 Immagine not only can I not figure it out I can't find it in a thread searching.... :cool:
  11. BLeslie88

    Attempting to change the same data at the same time

    I was running an update query which was a work around dealing with an OLE object I needed to assign to the active table to allow changing rows colors on the fly based on an action taken. (BckGround bitmap assigned) It was working fine until I made the table loading on a query instead of a table...
  12. BLeslie88

    Copy Highlighted Text

    Worked perfect. Thanks.
  13. BLeslie88

    Copy Highlighted Text

    I have a field that attains focus, CustNo on a seperate database outside our normal application. I would like to automatically copy it to windows clipboard. I have tried a few forums searches and google searches and do not want to download that clip program I found. This is the only time I want...
  14. BLeslie88

    Open filtered form from unbound switchboard

    . "[txtName] = '" & Me.cmbOfficer.Column(0) & "'", acFormEdit May be all you are missing...
  15. BLeslie88

    Problem ~ New Record and Primary Key

    Must commend you Pat.. I just used this in an append query!!! lol And it worked incrementing the ID . . . . . So cool. Excellent little bit of code!
  16. BLeslie88

    Question about Northwinrd Form and Macro

    why not... go to vba code... and do a search project for it mate...?
  17. BLeslie88

    Updating field when inputting into another????

    jools. officer is in both tables...? So when they select an application an officer ties to it.? What exactly are you trying to acheive.? At any rate after selecting the officer in a combobox. you can run a search on the after update event and update any controls on the form. How would you...
  18. BLeslie88

    Background Color on a Form

    hehe Sorry to reply to this, and bring it back up, but if anyone else has this problem it is quite simple, wizard add a picture, so remove the picture from the form and presto you will be able to change the background color.
  19. BLeslie88

    Enlighten me please...

    Thank you! ghudson, that thread, was exactly the remedy I needed! maikon, thanks for the reply. Thank you all.
  20. BLeslie88

    Enlighten me please...

    Trying to carry data from previous record to 'new record' ... Ways for this...? Now why do they allow a user to use CTRL ' to copy data down but give no way to the programmer to do it....??? Please enlighten this frustrated soul. Thanks, Brian
Top Bottom