Search results

  1. 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
  2. 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?
  3. I

    Toolbar at form

    How can I expand the ribbon?
  4. 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?
  5. I

    Combo box shows HTML tags

    this is just an example :-) Thanks I will try it
  6. 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
  7. 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?
  8. 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...
  9. I

    Click from another navigation

    You just gave me an idea. I create an event on form_close(). so everytime the user will go from one form to another
  10. I

    Click from another navigation

    I tried to do it on a module . How can I call use the insert command on the module? I have to use something like [form]!... any syntax didn't go well
  11. I

    Click from another navigation

    so what you did is create click event to the second navigation tab . this is now what I mean. I would like to use the button from the first navigation tabs becuase at my original application I have a lot of logic in the save button and I can't ducplicated it
  12. I

    Click from another navigation

    Hi Attach an example, Please click on the "NAvigationMain" form. then add some data , don't click on save . just go to the next navigation tab. I would like to vba code will use the save command from the first form
  13. I

    Click from another navigation

    So how do I go from one navigation to another without loosing all the data I wrote (in case I forgot to click save at the first form)?
  14. I

    Click from another navigation

    I create a sub procedure called save_click_g() in form TaskForm. I create a button call this procudure public sub save_click() save_click_g end sub and it works greate The problem I am talking about is, I have navigation tabs and inside i have the TaskForm with the sub procedure and...
  15. I

    Click from another navigation

    No, i get an error message "method or data member not found
  16. I

    Click from another navigation

    Hi I have 2 navigation buttons.at the first navigation i have a torm with save button called SaveForm I would like to click on the second navigationbutton and it will active the button SaveForm which is in the first button, how can i do it?
  17. I

    Create event on image component

    Thanks, it works when i create transparency button with click event and image above it
  18. I

    Create event on image component

    This is a simple table. Juat create one called tasks add id, description, imageLocation fields and fill with some values Then create a simple form bound the fields and create click event on the image that will show the id something like Msgbox "me=" & me.id
  19. I

    Create event on image component

    I know it works on the textbox. can you please an image control and try to copy the vb from the textbox to the image control ? You will see that the image control doesn't show the correct id
  20. I

    Create event on image component

    Can I Help with something about that file? it is working for me with the problem I wrote
Back
Top Bottom