Recent content by alguzman

  1. A

    Help with emailing company logo.

    I currently have a email blast database that I can loop through and send out text. I would like to add our company logo to the email and not as an attachment. I would like it to be right under the text. here is a copy of the body of my email as it is right now. strMessage =...
  2. A

    Email using outlook Express

    How can I add attachments to outlook express using access code. I have my code to loop through the email database and send simple text or I can attach a report or table as RTF, HTML etc.. what I want to do is have a command button called attach and when I click on it I can browse my hard drive...
  3. A

    Code help please

    Thanks. that bit of code worked fine. I will use it. Thanks again.:D
  4. A

    Code help please

    I want to be able to have a msgbox pop up if no records were found. I tried a couple of things but they did not work. Here is my orignal code without my added mess. Can someone give me a hand. Thanks. Private Sub btnFindFirst7_Click() Dim MySrchString As String If IsNull(Me.txtSearch7)...
  5. A

    TradeMark Symbol????

    I solved my problem Just in case any one is wondering press the alt + 0174 will insert the registered symbol also alt + 0153 for trade Mark and alt + 0169 for copyright. :D
  6. A

    TradeMark Symbol????

    Is there a way to put into access text the trademark symbol of the circle with the little r inside the circle...something like (r). :confused:
  7. A

    Code Driving Me Crazy! Need Help

    Please someone help me out here Can any one give me a hand here. My eyes are red and have a bad headache trying to fix this.:confused:
  8. A

    Code Driving Me Crazy! Need Help

    I have code that will use a query "MemberKIt" and merge it with word, then it will uncheck the MemberKit check box on the Member form and puts a check on the sent box. My Problem is after the merge is done and the letters print out word will ask if I want to save the letter and then will ask if...
  9. A

    Help with populateing a table using VBA

    Answered My own question I put in the following code after the table was created: Set qdf=currentDB.createQueryDef ("",strSQL) qdf.execute worked...:D
  10. A

    Help with populateing a table using VBA

    Need help with filling a table using VBA. I created the table fine but Having trouble with the sql string to fill that table with the information form the Order's table. All I want is that one field to be populated with that same field from the order's table. Function MakeTable() Dim db...
  11. A

    coding command button

    thanks David, that does work better and you are right about using any string with four letters or six. The chapter I just finished reading was dealing with left$, Right$, MID, and LEN maybe that is way I was trying to use it. Thanks for your help.;)
  12. A

    coding command button

    David R, thanks for your help. I'm new to VBA and I'm practicing with the book "Beginning Access 97 VBA Programming". I created a database at work and added code here and there to make it somewhat automated by searching this website and other Access sites. I finally decided to try and learn...
  13. A

    coding command button

    I tried that and does not work. It will still run and set the font to bold.
  14. A

    coding command button

    I'm trying to code a command button so that when pressed you will see a input box that will ask you if you want to change the font to bold or italic. I have that working but if you do not type nothing and hit ok it will bold everything. What am I missing from my code. If you do not type...
  15. A

    Help with VBA Code

    thanks Thanks I will give both a shot and let you know how I made out.:)
Back
Top Bottom