Search results

  1. G

    Form not ready for next entry

    Yes it is bound. Like I said, it will allow for entry of the first record, but if I try to enter any further record, it just sits there. Below is my code for the Button_Click() event, which is wheere I think the issue is. '------------------------------------------------------------ '...
  2. G

    Form not ready for next entry

    I have a form that is for inputting new data into a table. It works great, except when you go to enter in any new records after the initial record. I have a button for updating, and after the button is hit, it clears the form for the newxt entry. If I put in new info, and fill out every text...
  3. G

    txtBox value print out in Report

    Man its the little things. I forgot to make the report unbound. When it "OutputTo" it was still using the query I had as its control source. Once I removed the Query and made the report Unbound, it worked.
  4. G

    txtBox value print out in Report

    RESOLVED!!!!! Text Box Value not printing on Report I have a txtBox (txtAcct#) on a form that once entrered on the form I can use to populate another txtBox(Acct#) on a report. It works great using the unbound txtBox Control Source =[Forms]![CblCardDispoTool]![txtAcct]. I can open the report...
  5. G

    Combo Box visible

    RESOLVED!!!!!! Combo Box visible I have a form with 9 combo boxes of different data. They are all 9 invisible. Depending on which selection is made in a different combo box, then the corresponding 1 of the 9 combo boxes becomes visible with that list of choices. The problem is when I make a...
  6. G

    Email individuals Info

    That was it...Making it a text only field resulted in: Greg_Batchelor@xxx.xxxx.xxx#mailto:Greg_Batchelor@ xxx.xxxx.xx# in the cell. So I just went in and made the Address text and deleted the excess info THANK YOU.
  7. G

    Email individuals Info

    RESOLVED !!!!! Email individuals Info I have a quick question. I am using the following code to send the contents of a record set row to email addresses in the contents of a different row. Set rstAM = New ADODB.Recordset rstAM.CursorLocation = adUseClient rstAM.Open "Select * From...
  8. G

    Access 2007 Qry to Excel 2007

    Sorry I did not catch it sooner, but I just saw why your original code did not work. Dim strFilePath as string strFilePath replace(NOW," ","") strFilePath replace(strFilePath,":","") strFilePath replace(strFilePath,"/","") strfilepath = "c:\"My_Report_Name_" & strfilepath & ".xls"...
  9. G

    Access 2007 Qry to Excel 2007

    Nope, Sorry did not work. All it does is sit there. I use an OnClick event and it does nothing.
  10. G

    Access 2007 Qry to Excel 2007

    RESOLVED -- Access 2007 Qry to Excel 2007 I know this has probably been asked and answered multiple times before, I have spent the better part of the day trying to find an answer to this, even searching on here. I have a query that I want to export as raw data. I have an email aspect that...
  11. G

    Email using Access

    One final thing, Is there a way to Bold Face the fonts of the items so they stand out from the actual #'s?
  12. G

    Email using Access

    Thanks, it worked with one little tweak. I moved the purple section from where you had it in the string creation down to the Body creation. This was the subject line, and did not need to be created more than one time. THANK YOU... This saved me alot of wasted coding. strMailBody =...
  13. G

    Email using Access

    I did not exactly embed the table, as I said I embedded data from the table. Private Sub Command45_Click() Dim strMsg As String strMsg = "Are you sure you want to send email?" If MsgBox(strMsg, vbYesNo) = vbYes Then Set rstAM = New ADODB.Recordset...
  14. G

    Pivot Table as Body of Outlook Email

    I wanted to know if it is possible to embed a pivot table (from a query) in the body of an email. I know how to use VBA to embed data from a table in the body, but not sure how to incorporate an entire pivot table, or if it can be done.
  15. G

    Email using Access

    Moved to Forms::::::Email using Access I wanted to know if it is possible to embed a pivot table (from a query) in the body of an email. I know how to use VBA to embed data from a table in the body, but not sure how to incorporate an entire pivot table, or if it can be done.
  16. G

    filtering Report on the Fly

    Thank you both. It works like a Gem, as it was intended. Ill be back at some point, as they are constantly requesting new stuff. Thanks
  17. G

    filtering Report on the Fly

    Yeah I must have deleted the cmbSupervisor box when I was copied over my DB and deleted info. My bad. Also, one last thing. Is there a way to make the cboSupervisor disappear and reappear upon selection in any of the fields? Right now, If I select Supervisor in field 2, and go on to field 3...
  18. G

    filtering Report on the Fly

    Thanks CBrighton. I see it works great now, what had to be changed?
  19. G

    filtering Report on the Fly

    The report is opening in acDesign so that it can create the report on the fly based on the fields chosen in the form. It only does this in the background and never actually shows the report in design view. I have attached a 2003 copy.
  20. G

    filtering Report on the Fly

    Thanks cBrighton, that gives me more information about how it should work. I tried it and still I am getting the entire report. It will not filter on Supervisor. I have attached a copy of my DB for review
Back
Top Bottom