Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aradha

    Open a Recordset Based on a Query

    Hello Change your rs.open statement to ssql = "Select * from QryTest" rs.open ssql, cn See if this works Anu.
  2. aradha

    To find the last set of children in a tree view control

    Hello, I am trying to find the last set of children for a tree view control to change the image of the nodes for the last set of children. Can anyone please help me?
  3. aradha

    What does 'Undefined Function 'FindReplace' in Expression' mean?

    Hi Warren, Why don't you try this way.. in the Update query before you call the FindReplace function Declare a string variable Dim str as string str = [Table]![Address] FindReplace(str,"-","*") I hope it works
  4. aradha

    Formatting pasted range/table from Excel into Word - VBA

    Hi Anna, Why don't you do a autofit in excel and then copy the word into word? Radha
  5. aradha

    toolbars

    Hi, If I have understood your question right you can get rid of the toolbar by going to View menu, select toolbars and deselect the standard. I hope this helps
  6. aradha

    Tab Control Help Please

    Thanks for your reply but it hasn't really helped me. I have six tabs Membership History, Courses, Additional Information etc. When the form opens it is fine but when I click on Membership History tab the form moves to the left side of screen. To see the complete form I have to scroll down or...
  7. aradha

    Tab Control Help Please

    Hi Thanks for the reply. I do have scroll bars on the form. I tried to change the width of the form but it does not accept it. After changing the Autoresize property to No, I still have no control on the width property of the form. Looking forward for a reply
  8. aradha

    Tab Control Help Please

    I had this thread for some time in Access Forms but I had no reply. I have a main form in which there are 6 tab control pages with a subform each. When I click on the tab controls the whole form jumps. Can anyone please help me with this. Thanks a lot
  9. aradha

    Help with adding records to tables

    Hi there, Depending on the field you are searching on create a recordset and use the seek method to locate the record. Use if statement and nomatch property to update the record in the table if not found. with the help of the input box get the information from the user and store it in a string...
  10. aradha

    Tab Control help please

    Hi, I am in the process of creating a membership database for our company. My main form has 6 separate tab control each of which has a subform in it. The problem is when I click on the tab controls one at a time the main form moves up and down. Could you please help me to fix this problem...
  11. aradha

    Open word document in Access

    Hi Nathan Thanks a lot for your help. Your suggestion about the debugging tools and your code has really helped me go a long way with my database. When I added the code Debug.Print the immediate window showed me 1. So I changed the code to Case 1 and Case 2 and it works now. Once again thanks...
  12. aradha

    Open word document in Access

    Hi Nathan, Thanks for getting back to my question. Following is the copy of the code that I inserted into the Onclick property of the OpenReport command button. I named the list box list0 and currently I have two cases in my list box. (1) nutpan + Label Format.dot and (2) amylose.dot When I...
  13. aradha

    Open word document in Access

    Hi Nathan I copied the code into the command button and named the list box as list0. Definetely I didn't forget to change the path of the file but still when I click the button theword template does not open. Instead if I comment out the select statement in the code it works. Can you please help...
  14. aradha

    Open word document in Access

    Hi nathan1967 Thank a lot. I will try it and let you know how it goes aradha
  15. aradha

    Open word document in Access

    Please help me. I have lot of templates in word which I would like to open when selected from a list box. I am new to access and would like help in writing the code for this. Thank you very much in advance.

Part and Inventory Search

Back
Top