Search results

  1. B

    Creating an email list

    It may. The SendObject works with Outlook and (I think) Netscape mail as long as it is configured right. Other then that I am not real sure so it may take some trial and error to get it working.
  2. B

    Creating an email list

    Basicaly all I need is the name of the table that holds the email addresses and the name of the field that holds the actual email address. Post that info and I will help you do the rest of the code and tell you where to put it.
  3. B

    OutputTo Using MapPath?

    susor does that path work when you navigate to it with Explorer?
  4. B

    Disable Mouse Scrolling Functions

    Try this. I have never used it but I have heard that it works as advertised. A better mouse trap?
  5. B

    Creating an email list

    AlanT did you get this worked out then?
  6. B

    Email Report!

    Modify your SendObject statement to something like this: Dim strEmail As String ' Use Me.YourTextbox name in place of the ' Me.txtEmailAdd in the following statement. strEmail = Me.txtEmailAdd DoCmd.SendObject , , , strEmail, _ , , "Subject Line", , True If you need to put multiple...
  7. B

    Automatic Emailling from Access 97

    omoregbe, this is a very simplified example of what you are trying but I think it may be the first step you need to take to get this working for you. Try the following example but put your email address in place of the email@email.com Dim dtOne As Date Dim dtTwo As Date dtOne = Date ' If you...
  8. B

    if file exists then rename file (date_1)

    deekras will this do the trick? Files It is not a direct solution but if I understand you correctly that should get you started.
  9. B

    Import from excel - click of a button

    Yea it was a little absent minded of me to say that without actualy asking for the info eh? Basically I was wondering whether there needed to be any clean up pre or post import. I wasn't sure if you needed to maintain the data already in the table and append new data to it or if you wanted to...
  10. B

    Import from excel - click of a button

    Ok there are a few things that I need to know to really make this answer useful but this may get you started: ' Turn the Access nags off DoCmd.SetWarnings False ' Import SpreadSheet and name the table ExcelImport DoCmd.TransferSpreadsheet acImport, 8, "ExcelImport", _...
  11. B

    sendobject attachment

    Chewy will this do the trick? Automatically e-mailing a document
  12. B

    E-Mail Problem. Must be basic I think...

    DrugBust did you get a chance to take a look at my demo and or use the code I posted?
  13. B

    web page display from access

    Can you post the code?
  14. B

    E-Mail Problem. Must be basic I think...

    <% Const adOpenStatic = 3 Const adUseClient = 3 Const adLockReadOnly = 1 Dim ConnStr connStr="Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" _ & Server.MapPath("/fpdb/database.mdb") Dim Rs Set Rs=Server.CreateObject("ADODB.Recordset") Rs.CursorLocation=adUseClient Rs.Open...
  15. B

    E-Mail Problem. Must be basic I think...

    DrugBust I put some ASP code up real quick that basicaly does the same thing that your page is doing here. Check it out I am actualy using your own data. I added a few formatting tags to the table but you'll get the idea. Here is the asp code to do that. All you have to do is modify the...
  16. B

    E-Mail Problem. Must be basic I think...

    Ok up front I have to say I would stay away from FP Database wizards at all costs. It is cleaner and better to use simple ASP. Having said that I think this will work for you <%=FP_FieldVal(fp_rs, ("<a href=mailto:") "USERID") & (">") & ("USERID") & ("</a>"%> However I didn't have a Front...
  17. B

    SendMail Question for BukHix

    Kevin that should teach you not to put someone's name in a post again, eh? :D
  18. B

    SendMail Question for BukHix

    Getting rid of the first line is where I got stuck. I have never been that great with string manipulation but isn't that how it should be done?
  19. B

    SendMail Question for BukHix

    That is one ugly file. I am not sure whether an import can be automated for that one or not. I think it would take someone much better then I to decipher it though.
  20. B

    Add asterisks to a field automatically.

    Yup. Create a new query for the table that holds the field you want to use. Then go into design view. Once there just go to the first blank column and add the NewField: "*" & [YourField] & "*" to the top row. NewField is the name of the field that will be created in your query and YourField...
Back
Top Bottom