Recent content by Talismanic

  1. T

    Using RecordSet to update table?

    Thanks Rich, that did it.
  2. T

    Using RecordSet to update table?

    Rich, I modified it like you said and now I am getting a Compile Error - Method or Data Member not Found and it highlights this .JobName My table and field names are correct so I am pretty sure its not that. I am opening the recordset correctly? This is how the code looks with the...
  3. T

    Export a report in RTF

    You can use the SendObject to do it like this: DoCmd.SendObject acReport, "ReportName", "RichTextFormat(*.rtf)", "YourEmail", , , _ "OptionalSubject", "OptionalText", True Let me know if this won't work for you or if you absolutely have to use a transfer in place of the SendObject. I might...
  4. T

    Broadcast emails

    I don't think that you can fill the to: and cc: that way but if you modify the SendMail command by adding a false to it like this: DoCmd.SendObject , , , strEmail, , , "Subject", "Message Text", False It will send it to all without prompting you. If you need to edit the message or subject...
  5. T

    Broadcast emails

    I think this will work for you: Topic: Emailing System Help Let me know if you need more help with it.
  6. T

    Using RecordSet to update table?

    I am still learning to use recordsets out side of ASP and still having problems with it. I want to update the "Jobs" table with (for now) static data. Here is what I have so far: Dim rsCOD As DAO.Recordset Dim strJobName, strJobNumb, strLocation As String strJobName = "Talismanic" strJobNumb =...
  7. T

    SEND E-MAIL TO STAFF, ONCE INFO HAS BEEN ADDED TO ACCESS TABLE VIA WEB FORM

    Yes it is possible and the script to do it can be found here: Topic: Data Entry via Internet All you would need to do is to modify it something like this: Set Mailer = Server.CreateObject("JMail.SMTPMail") Mailer.Sender= "Access Mail Bot" Mailer.SenderName = "Database Creater's Name"...
  8. T

    Opening Windows Applications

    I think you could make this work for you: API: Find out if an application is currently running
  9. T

    Unhiding database window

    Mike, I think this will answer your question. Topic: re-enable db window
  10. T

    Delete Query Messages

    If I understand you correctly you could probably use a DCount. The syntax is the same as a Dlookup and I use them to check for job numbers in a table before I open reports based on the job number. This is an example: Dim strMsg As String, strTitle As String Dim intStyle As Integer, cancel As...
  11. T

    Printing error messages

    Glad to hear that it worked out for you, you can also use Net Send to send messages to groups, for instance the Administrators group. Have you built the error trapping into it yet? If so, and you wouldn't mind, I would like to take a peek at your code.
  12. T

    Printing error messages

    Chris, if the database and the computer that needs to get the message are NT you could use the net send command. I threw this together real quick so that you could have an example of what I am talking about. Dim strCompName as String Dim strMessage as String Dim strNetSend as String...
  13. T

    Get Windows2000 Userid?

    axa and bayman, It works fine on Win2K, I just tried it out. bayman, you can do a quick test with this: Dim strUserName As String Dim strCompName As String strUserName = GetWinUserName() strCompName = GetWinComputerName() MsgBox ("User name is " & GetWinUserName & ". " & " The computer name...
  14. T

    converting forms to HTML

    siplon, Similar questions were posted earlier this week. Here are a couple of links to those posts. I think you will find your answer there. Start here - MY First asp page Then go here - My asp page works now ! but..... That should get you started, if you have more questions post back to...
  15. T

    Help with string parsing/manipulation Part 2

    I started Loopy, you straightened me out. I have been working through the code and I think I (some what) understand what is going on. Thanks for all the help!!!
Top Bottom