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: *

  • Users: FJAY
  • Order by date
  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.
  16. FJAY

    printing 0 and 1

    I'm trying to print 0 and 1 in a range of cell but I can't get it work: I keep getting all 0 values Dim myRange As Range, i As Integer, b As Integer ActiveSheet.Range("A1:a10").Select i = 1 For Each myRange In Selection.Cells b = i - 1 myRange.Value = b...
  17. FJAY

    Error Controlsource property of the TEXTBOX

    The use of the controlsource property of the text box generates a run-time error 380: could not set the controlsource property. Invalid property value. 'this line of code was put in the initialize section of form module. frm1.txtCICM.ControlSource = Sheets("VAR").Range("L4").Text
  18. FJAY

    Problem with function

    Thanks...the function runs by itself as a procedure but when I make it a function and call it in the layout_input_sheet it runs into an infinite loop. What an trying to do is select a range. For example A1:a10 and look for some values and insert rows above the values. Thanks.
  19. FJAY

    Problem with function

    Good Morning - I have some problem with this function, it's running into an infinite loop. All I want is to insert rows based an a number. For example if: frmSAGE.txtConsolePorts.Text = 5. Insert 5 rows rngRefName = "EndNumCSLconsolports" Public Sub layout_input_sheet() Dim rngRefName...
  20. FJAY

    Renaming Worksheets

    Good Afternoon - I have a workbook with 20 worksheets and will like to re-name the worksheets with the values in a range i.e A1:A20 with the click of a command button. How do I do this? Code example: dim ws as worksheet, rng as range sheets("Sheet1").select...

Part and Inventory Search

Back
Top