Search results

  1. Ranman256

    #Delete msg on form's fields

    usu you get the #DELETE when another user deletes the records so the other user see this msg. a refresh usu fixes it. does user have permission to copy files to target folder?
  2. Ranman256

    Database FE freezes up every time I try to open it.

    On what line? what about REFERENCES?
  3. Ranman256

    Database FE freezes up every time I try to open it.

    IS there code that runs at startup? hold SHIFT KEY ,then open the db.
  4. Ranman256

    Database FE freezes up every time I try to open it.

    did you put a stop point at the 1st line, then step thru the code (F8) to see where the stall is? prob at the: Set rst =. sometimes is a REFERENCE that wont quite work. vbe (alt-F11) , tools, references. are there any checked, but say MISSING?
  5. Ranman256

    File name date

    = "\\SERVER\Billing\" & [Mdid] & format(date(),"yymmdd") & ".pdf"
  6. Ranman256

    I need the good way make query report in 3, 6, and 12months

    make a form, say frmRpts. On it have 2 text boxes for dates: txtStartDate, txtEndDate. The user selects a begin and end dates put some buttons to auto fill in the date boxes for quick date ranges: weekly, monthly. The base query Q1, that reads the boxs for criteria... select * from table...
  7. Ranman256

    Solved Run SQL Batch

    pasting into the queries will prevent errors, 2 keystrokes each, copy, paste. 50 queries will not fill up the db.
  8. Ranman256

    PDF reader

    have the form open the pdf into a web browser.
  9. Ranman256

    Solved Run SQL Batch

    paste each of them into queries, put all queries into a macro, run macro.
  10. Ranman256

    Skype: Download file / overwrite does not overwrite

    downloads do that.
  11. Ranman256

    Filtering a query using a variable

    did you use BUILDER to get the correct control path? misspellings can happen if you type it manually or the field doesn't exist.
  12. Ranman256

    Data Entry form - Report?

    the entry form would have a button to open the report. The report query would look on the form for the record key , say: txtID qry: select * from table where [id]=forms!fMyForm!txtID then the report would open on the record currently shown: docmd.OpenReport "rRpt",acViewPreview
  13. Ranman256

    Filtering a query using a variable

    instead of param query, make a continuous form that shows all data, put UNBOUND controls on the header area for it to filter the data, user then clicks FIND btn which checks the controls on what to filter: Public Sub btnFIND_Click() Dim sSql As String, sWhere As String sWhere = "1=1"...
  14. Ranman256

    chemical manufacturing research database

    tIngredients tbl --------- IngredID , autonum IngredientName tTry tbl --------- *TryID (text or numeric depending how you want to use the Try format) TryDate other detail fields etc tTryIngredients tbl --------------- *TryID *IngredID *=keyed make a form for data entry for fTry: frmTry...
  15. Ranman256

    Using Cross Tab Query In Report

    Pivot is very hard to do in report since it keep changing. Tho you CAN make a report table that has all columns, then make an append query to add records to the report table, (fills the existing columns) then report on the report table, since all columns are there. or just always show pivot...
  16. Ranman256

    Solved If the customer's name exists, Get his record to add data to his subform which related to another table

    this Find screen would count the recs having given name. if 0 exist, open the detail in dataentry mode if 1 exists, the only exising rec, open that rec in detail form if > 1 exists, open a LIST view of all recs that match, then user can choose the correct 1 and open detail from there...
  17. Ranman256

    Emailing a report

    yes, thats for outlook. or theres also : docmd.SendObject acSendReport ,"rMyReport",acFormatPDF,sTo, ,,sSubj, sMsgBody
  18. Ranman256

    Emailing a report

    Does the email code use .SEND command? Once sent, it should release.
Back
Top Bottom