Search results

  1. T

    Sending Objects.

    Hi All I wonder if anyone can help me. Im trying to send e-mail from a form. The user selects to whome to mail goes to then types the massage, but i also want to be able to send db object. I have been playing around with the send object cmd but as far as i can work out this only allows me to...
  2. T

    List Box thing.

    Thanks that seems to work great. :) What i am trying to do is set up a form so that i can send current objects as attachments to an e-mail. Now i have a list box that returns the names of the objects that have been selected as attachments to a text box, the problem that i have is that the...
  3. T

    List Box thing.

    Thank You. Got it to not show the system tables but would like to know how to get it to show forms now, any ideas? Private Sub Form_Open(Cancel As Integer) z = "" Y = "" For Each A In Application.CurrentDb.tabledefs Y = Mid(A.Name, 1, 4) If Y = "Msys" Then GoTo x Else z = z & " " & A.Name...
  4. T

    List Box thing.

    Hi all. I have the following code that shows all tables in my db in a list box the problem that i have is that it also show the system tables. Is there anyway that i can get it not to show these??? Private Sub Form_Open(Cancel As Integer) z = "" For Each A In Application.CurrentDb.TableDefs...
  5. T

    List Box Thing!!!

    Thanks for the reply. Any help is appreciated but what does that mean in English, im rather new to Access & VBA. :confused: :confused:
  6. T

    List Box Thing!!!

    Hi All Can i have a combo box with the values of table, queries, forms, pages, macros and moduals and when one of these values is selected a listbox or something that will show me all the table, qeries etc?? Evan better can i get an open dialog box to appear, the reason i want this is so that...
  7. T

    Tick Box

    In the properties for the tick box add an event on click. Code builder. In the code type if nameofdetailtextbox = true nameofdetailtextbox.enabled = false else nameofdetailtextbox.enabled = true end if Hope this helps.:)
  8. T

    Outlook Recipient Control

    I have a user interface and am currently designing a form that allows users to send tables from the db to e-mail recipients. I was looking through the list of more controls and saw the MS Office Outlook Recipient Control but i get an error msg saying i need to register the control. I have...
  9. T

    Outlook Recipitent Control

    I have a user inter face and am designing a form so that my users can send tables as attachments of e-mails. I was looking through the more controls list and saw the MS Office Outlook Recipitent Control, but when i click on it to add it to my form i get the msg saying i need to register the...
  10. T

    HTML

    Hi I have quite a complex database that has several userforms. I have recently started designing my own web and was wondering if i can use the userforms on a html page without loosing the format.
  11. T

    Date Picker

    Under the same icon there is a CalenderControl button that shows a calender. It has no on click function by you can add that in VBA.
  12. T

    Query in text box.

    I have a query that select certain people in relation to the date. I have created a tabular form that shows the information from the query. How can i get the names from the query to show in a form in one text box one after the other? Any surgestions?
  13. T

    Scrolling Text

    Thanks a lot for that. I have tried so many different way and have not had much luck. Thank You.
  14. T

    Scrolling Text Again.

    Hi I am trying to get a textbox or somthing alike that can continusly scroll the same msg from left to right. I have VB6 is there anyway that i could do a userform and then copy that into access. Any ideas would be of help.
  15. T

    Scrolling Text

    Hi I am trying to get a textbox or somthing alike that can continusly scroll the same msg from left to right. I have VB6 is there anyway that i could do a userform and then copy that into access. Any ideas would be of help.
  16. T

    Scrolling Label / Text Box

    Hi thanks for the suggestion but i tried that before even putting the Topic on. The user screens of the database run minimised so that the Status Bar is not evan seen. I wanted scrolling text within a text box or a label. Any other suggestions?
  17. T

    Scrolling Label / Text Box

    Is there any way that i can get scrolling text in a form like that in a data access page? If not what are the chances of being able to copy what i have to work the same in a data access page?
  18. T

    Timer.

    Thanks Rich.
  19. T

    Timer.

    The timer updates the now() & time() every second to show seconds on the clock.
  20. T

    Timer.

    Hi All. I have a problem where a form i am using has several text boxes and when on the move move event the boxes make other items appear. But because i have now() refeshing on timer every second the whole form seem to blink and flicker because of the timer. Is there anyway that i can do some...
Back
Top Bottom