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 Westi 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. ITChick526

    VBA for Office Clipboard

    The code is not affecting the clipboard at all. It will only paste the first selection over and over again i.e. Selection.Paste
  2. ITChick526

    VBA for Office Clipboard

    This is for a word Document
  3. ITChick526

    VBA for Office Clipboard

    I am trying to automate an office document. I would like to write some code that will paste everything in the office clipboard in VBA. I keep running into walls. Does anyone have an idea of how I can automate the pasteall function??
  4. ITChick526

    VBA for Word Table

    Thank you Fumei... I will definitely try all the things you suggested...I may contact you again for more questions. I hope that is ok!!
  5. ITChick526

    VBA for Word Table

    I did see that..that will require more research on my part because I am a total novice with vba thanks again
  6. ITChick526

    VBA for Word Table

    I am sorry but I did not see a working suggestion besides the questions about what I was trying to accomplish and you mentioned not to delete tables..but there was no alternatives offered besided Excel which will not work in my case..Thanks for your time
  7. ITChick526

    VBA for Word Table

    So what are you saying Skip?? I will stop deleting the tables if there is a better way to go, do you have any suggestions???
  8. ITChick526

    VBA for Word Table

    Exactly..the user will check the orders that apply to the case, and then the selections will be transferred to another word document for other usage I thought if I could get the questions that do not apply to be removed it will be easy to get the remaining question that are left to another...
  9. ITChick526

    VBA for Word Table

    Or if there is anyway that once I have cleared the contents of the rows that do not apply for vba to just delete the tables that are blank is another way to go.. Help I am clueless
  10. ITChick526

    VBA for Word Table

    The reason I chose word is because these are court forms and that have to be filled out as forms. The questions that remain on form will then need to be transferred to another word document..etc Believe me I already thought of excel but it will not work the way the users need to use this form...
  11. ITChick526

    VBA for Word Table

    The problem is the form will have about 30 questions and I will never know which checkboxes will be checked or not so that means any random number of tables need to be deleted at once, depending on which check boxes are checked so for example...If checkbox 1 is not selected it becomes deleted...
  12. ITChick526

    VBA for Word Table

    I am trying to create a word document, that if a user does not check a certain checkbox, the text in the table next to it will disappear, to remove data that does not need to appear on the document. I have to do it in tables because some of the questions have drop down boxes..the table helps...
  13. ITChick526

    VBA for Word Table

    If CheckBox1.Value = True Then CheckBox1.Width = 100 Else Tables(1).Rows(1).Delete End If If CheckBox2.Value = True Then CheckBox2.Width = 100 Else Tables(2).Rows(1).Delete End If This code causes table 2 to become table 1 once the first table is deleted..I know my code sucks but I am...
  14. ITChick526

    VBA for Word Table

    Thanks for the response..but I am really a novice, so can you give me a more specifice example of how to loop at the end if you can.. Thanks. I am using a conditional if statement..i.e If checkbox1.value = True Then action else delete table row end If
  15. ITChick526

    VBA for Word Table

    I have a word document with 9 tables 1 row each with checkboxes When a checkbox value is false, I have written some to code to delete the corresponding row. The problem is once a row is deleted, it throws of the table number of the remaining tables. I can't find a way to work around this?? Any...

Part and Inventory Search

Back
Top