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. HaroldGE

    POP-UP causing 'Another User Updated Record' !?

    My current form allows edits to a record. I have a contol button activating a POP-UP form (where Popup=Yes and Modal=Yes) to edit Void fields in the same record. How do I get around the 'Another User Updated Record' after editing in the POP-UP then leaving both forms ? Refresh, Requery in...
  2. HaroldGE

    Importing text files..to include datafile name as a field..

    Since you are importing into an existing table, add one more field at the end for file name (FileName). The import should leave the field null. Then RunSQL that will put the file name in the table where it's null. DoCmd.TransferText acImportDelim,"EVAL","EVAL","D:\CNew\"& strfile,True...
  3. HaroldGE

    Quick question - (long answer?)

    Well if you save the variable value in an Access table, you can open the table as a recordset in Excel VBA.
  4. HaroldGE

    Popping up a form with focus

    If you are displaying this message in an Access Form then set Form Property PopUp (under Other) to Yes -and- Form Property Modal (under Other) to Yes The Form takes over and nothing can be done until it is closed.
  5. HaroldGE

    Function to delimit text strings

    Use this function to find the last blank ... Function LastOccurrence(strSearchString As String, _ strLastOccurrence As String) As Integer Dim intVal As Integer, intLastPos As Integer intVal = InStr(strSearchString, strLastOccurrence) 'Find 1st Do Until intVal = 0...
  6. HaroldGE

    Combo Box Default Value

    =Format(Date()-Day(Date()),"mmm-yyyy") 'yields last day of prior month -or- =Format(DateSerial(Year(Date()),Month(Date())-1,Day(Date()),"mmm-yyyy") 'yields 1st day of prior month
  7. HaroldGE

    Dependant Combo Box w/ Default Value Question

    Something like this ... [code]cboProductID.RecordSource="Select field1,field2 " & _ " From tableofCustomerRequirements Where CustomerID=" & _ [Forms]!
  8. HaroldGE

    HELP ME! I'M STUCK IN MY CAREER!

    Bravo MMoran! Both are well written and comprehensive. HGE
  9. HaroldGE

    HELP ME! I'M STUCK IN MY CAREER!

    I've been a consultant since '93. I believe there is a tremendous need for 'hybrid' type programmers. That is, people expert at building Applications and who also know the business side. I use Access and am knowledgeable in both Auto Parts Distribution/Sales, and Drug Distribution/Finance. The...
  10. HaroldGE

    Update query based on autnumber field problem

    For a Text Field -> Where [Product No] = '" & [Product No].Value & "'" For a Numeric Field (don't use single quotes)-> Where [Product No] = " & [Product No].Value
  11. HaroldGE

    How do I pass a parameter between the mainform and subform?

    The definitive answer is ... A Public Variable declared in one Form is not recognized in another Form. Declare your Public Variable in a MODULE (I call the Module PUBLIC) and all Forms will see it !!!

Part and Inventory Search

Back
Top