Search results

  1. R

    Tab Control Background Color

    All that just because of the color...man thats dumb :) thanks for the help.
  2. R

    Tab Control Background Color

    could someone tell me how to get rid of the Grey around the sides of this Tab Control? I set the background of the Form to White...but the sides of the Tab Control are the original color..how can I make them white so it blends in with the Background? Thanks, Rod
  3. R

    Security Question

    I just used the Security Wizard to add user level security to a database I created. the Problem I have is that I can only open the Database if it is located in the location it was when I created the Security. Could someone tel me what I have to do so i can move the Database to another location?
  4. R

    Sending a Report and/or Record Via Email

    thanks..but SendOject uses outlook. I would like it to be able to send automatically through a specified SMTP server.
  5. R

    My Problem

    I have 2 list boxes that each contain the total of a query. I have another Text Box that is set to = List1/list2 Inorder for the Calculation to work in the text box I have to actually click on the two List boxes to select their values. I have tried using this code to to automatically sellect...
  6. R

    Sending a Report and/or Record Via Email

    Anybody know of some code that could be used to send a report Via E-mail. without using Outlook. just via an smtp server. I have a little Task database and we would like to be able to Email a task to the person it is assigned to by just clicking one button and that is it.
  7. R

    Background color?????

    Actually I found the problem...I had to set Scroll Bars to Neither.
  8. R

    Background color?????

    could somebody tell me why when I make the Background of a form a different color from the default.....when I view it the the bottom and right sides are not the new color?? eg.
  9. R

    Put results of a query into a text box

    you could make them Listboxes and put the query to calculate the sums in the Rowsource.
  10. R

    Using a List box to goto a record

    Ok...I understand it now...but it is not working for me If I do this: Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[fldInDate] = #" & Me.LstSearch.Column(1) & "#" If Not rs.EOF Then Me.Bookmark = rs.Bookmark it has no error If I do this: Dim rs As Object...
  11. R

    Using a List box to goto a record

    I have a form that I am using a list box to goto a record. in the List box I am selecting the Serial number of an item to go to a repair record for that item. the Problem I have is if that Serial number is in the table more then once. It only goes to the first record. The Primary key is a...
  12. R

    Listbox values

    Actually it is happening for me in Access2k3. I will try it in the load form event instead.
  13. R

    Listbox values

    thanks, but when I use that and open the form it seems to lock things up. I can not do anything in the form. It wont let me select any other controls on the form.
  14. R

    Listbox values

    How would I make it so that a List box defaults to the first value available in its list? I need to be able to make a Calculation based on the value in the listbox...but by default no value is selected. So my calculation does not work until the value is selected.
  15. R

    Cant open any more tables....

    as I said..I am Rather new...and if there is a better/easier way of doing it, i would like to know. correct me if I am wrong ...but to use Text boxes...I would have to create all my query for each total that I need..then I would have to create one master query that contains all the other...
  16. R

    Cant open any more tables....

    the database is a Repair Tracking system for pagers. what I have been attempting to do is create a form that the Managers can look at at any time to see totals of pager repaired for different categories. all of the List boxes reference the same Query. the rowsource of each list box changes...
  17. R

    Cant open any more tables....

    I am getting this error on a Database that I am creating. I have found that it has to do with the Jet Database. It seems to be happening because of one form that I am working on. In this form I have about 40 List Boxs that display Information I have a combo box that after updating changes...
  18. R

    carry forward entries?

    Mmmmm...will this work in Access 2k3? I just tried it and it doesnt seem to work. no Errors. just doesnt work.
  19. R

    carry forward entries?

    thanks...that is exactly what I needed.
  20. R

    carry forward entries?

    that was actually just an example....it is not exactly how my form is. Is there not a way to make default value = Previous value?
Back
Top Bottom