Recent content by ilanray

  1. I

    Import From Email

    I tried to do it. It ask me to link to outlook. I don't want to link it . I would like to look for a msg file in the folder and extract the data to a table
  2. I

    Import From Email

    maybe I didn't understood you . When I click on external data it pop up a window of getting data from another source, in this case from outlook. The next step is to import to access table and then is display the outlook folder. this is now what I wanted unless i am missing something
  3. I

    Import From Email

    this is not what i mean/ I am saving the msg file on a folder then I would like to create a code that import the data to a table and split it to body and subject in a different fields
  4. I

    Import From Email

    How can I do it?
  5. I

    Import From Email

    What do you mean by analyze it? how can I know what is the subject and what is the body?
  6. I

    Import From Email

    Hi I have a table called ImportEmailsTBL with id, SubjectMail, MSgBody. at outlook: I save my emails to a folder called - TempEmail I would like to scan the folder and import every email to my table (ImportEmailsTBL), the subject of the email will go SubjectMail Field and the body of the maill...
  7. I

    Mark yes no in vba

    :-) thanks
  8. I

    Mark yes no in vba

    Hi I have a form with 4 boolean field (mark yes no) called team1,team2,team3,team4 is there away to mark the boxes in vba in a loop ? for example instead of me.team1 = 1 me.team2 = 1 me.team3 = 1 me.team4 = 1 to do something like (this is now working) for i = 1 to 4 me.team(i) = 1 next i Thanks
  9. I

    Toolbar at form

    How can I create my own ribbon ? is there away to mark one word and paint it or change the font zise if I will create my own rbbon?
  10. I

    Toolbar at form

    How can I expand the ribbon?
  11. I

    Toolbar at form

    Hi I would like to create a form with RichText textbox because of the font design . I would like to have toolbar that stay always at the top something like Microsft-word is there away to do it?
  12. I

    Combo box shows HTML tags

    this is just an example :-) Thanks I will try it
  13. I

    Combo box shows HTML tags

    can you please show me how it's done? my query is select id,description from tasks I would like the description field will be plain text thanks
  14. I

    Combo box shows HTML tags

    i'm now sure I understood you. What do you mean by create a column: MyText: PlainText(YourRichTextField) at my rowsource I have a query that load the values for the combo box You mean i need to create another field at the database which save the data in plain text?
  15. I

    Combo box shows HTML tags

    Hi I created a form with textbox called "task" which is in HTML template. When I click on the save button it save at the databse with HTML tags. I would like to create a combox with the task field so in the source field I chose the table. The problem is the combo box display the HTML tags is...
Top Bottom