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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by FJAY

  1. FJAY

    Send Error Report

    Implemented the feedbacks but I'm still getting the send error report. Thanks.
  2. FJAY

    Send Error Report

    I keep getting a send error report when trying to delete some worksheets using the function or macros below: Public Sub delete_worksheet() Dim shtDelWorkSheet As Worksheet For Each shtDelWorkSheet In Application.Worksheets Select Case shtDelWorkSheet.Name...
  3. FJAY

    Removing all Hyperlinks in a worksheet

    Remove all the links and leave the cell contents in place. Thanks.
  4. FJAY

    Removing all Hyperlinks in a worksheet

    Good Morning - I have hundreds, may be thousands of hyperlinks spread across a worksheet. How do I remove this hyperlinks dynanmically? Thanks.
  5. FJAY

    Excel Keeps crashing on worksheet delete

    Excel seems to crash when I try to delete worksheets. The procedure seems to be working in previous release of my tool. Public Sub delete_worksheet() Dim shtDelWorkSheet, mySheets mySheets = Array("A", "B", "C" "D", "E") For Each...
  6. FJAY

    How to check if a cell have a comment

    Good Afternoon - I have a worksheet and I will like to autosize all the cells with comments. The code below works if the used range all have comments. ActiveCell.Comment.Shape.TextFrame.AutoSize = True
  7. FJAY

    Comments Boxes

    Good Afternoon - I have a workbook with about 30 worksheets. Each worksheets have numerous comments in it. When I created the comments boxes that sized to specific width and lenght based on the text contents. But, for some reason the comments boxes seems to have a mind of their own and shrink or...
  8. FJAY

    controls on worksheet

    The controls are checkbox object. Thanks.
  9. FJAY

    controls on worksheet

    Good Morning - I have a worksheet in excel with about 20 checkboxes and I will like to set the value of each checkboxes on the click of a button without having to spell out the name of each checkboxes. Is this possible. I know in Visual Basic I can create an array of checkboxes. But I don't know...
  10. FJAY

    Device I/O Error

    I keeo getting this error message Device I/O Error. What's the cause of this problem and how can I fix it. Thanks.
  11. FJAY

    excel error - too many different cell formats

    I have this problem and I can't open my file because of it. Anytime I try to open it, I get the error. How can I open the file again.
  12. FJAY

    excel error - too many different cell formats

    How can I fix or correct this error in Excel? too many different cell formats.
  13. FJAY

    Checkboxes

    It won't work because I've changed the names of the checkboxes from checkbox1 to i.e chkUSP, etc.
  14. FJAY

    Checkboxes

    Good Morning - I created a form userform in excel with about 20 checkboxes and I will like to set the value of each checkboxes on the click of a button without having to spell out the name of each checkboxes. Is this possible. I know in Visual Basic I can create an array of checkboxes. But I...
  15. FJAY

    printing 0 and 1

    Molby, it worked fine. What about of I want to print 0,0,1,1,2,2,3,3 and so on in the same range. Thanks.

Part and Inventory Search

Back
Top