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 gkittelson 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: jsbc
  • Order by date
  1. jsbc

    Hiding a line with activ combo box

    Thanks, it was the Shape, after changing it no further problems. Greatly appreciated Jochen
  2. jsbc

    Hiding a line with activ combo box

    As I said, the code works fine up to the point where any Combo Box is active and the row that it is in gets hidden. I included the Select option the activate a cell and then hide the rows, but that does not work. Hope this makes sense Jochen
  3. jsbc

    Hiding a line with activ combo box

    Here is the whole code for one input sheet Public Sub EXT_Activate_Cell() Sheets("External Footing").Range("IPEXTWidth").Select End Sub Public Sub CBEXTPilingGeoAdd_click() Sheets("Data").Range("EXTPilingGeoStandard") = False EXT_Geotech_Adjust_Case1 End Sub Public Sub...
  4. jsbc

    Hiding a line with activ combo box

    I think we are talking two different things here, I have done exactly what combo has suggested, the full code has not been displayed as it just caters for load cases and when rows need to be hidden or not. The above code is (one else function) for hiding most rows and setting up a button to add...
  5. jsbc

    Hiding a line with activ combo box

    Now I am confused (BTW English is not my first language) The problem still stands: Either the boxes stay in their appropriate cells and excel crashes, or the cells slide down and excel works fine (in this case, the row with the active box is not hidden, as the box is not anchored there). Now...
  6. jsbc

    Hiding a line with activ combo box

    Re Skip: Yes that is correct. What I see at the moment is my control sliding down the page when the rows get hidden and staying in this position relative to the cell the now occupy once unhidden. (Using anything but the move and size properties) Re Combo: This is essentially what I have done...
  7. jsbc

    Hiding a line with activ combo box

    Problem is, the top properties are variables according to which rows are hidden. The only way it actually works is by leaving the properties with Move and size and setting the placement to 2 However, that is the case where excel crashes :-) Might have to find another way of dealing with this...
  8. jsbc

    Hiding a line with activ combo box

    Hi Skip, got a new problem now, the combo boxes further down are not staying in their row anymore. The rows are changing in a random pattern, so there are only fixed locations for the topmost box any ideas what I can do? Jochen
  9. jsbc

    Hiding a line with activ combo box

    That solved the problem of crashing, thanks. However, I now have a visible combo box that stays until you refresh excel. That should be solved more easily though :-) Thanks again Jochen
  10. jsbc

    Hiding a line with activ combo box

    Problem with that is the amount of text and so on that will distract the user in those rows will need to be hidden as well. Hiding the rows results in a nice compact input sheet that adjusts itself to what is required and in the order it is required. (and it is not a single case in this...
  11. jsbc

    Hiding a line with activ combo box

    Sorry, I thought the word Combo Box was what you were looking for, its a Control Toolbox Jochen
  12. jsbc

    Hiding a line with activ combo box

    to replicate the problem: step one - insert combo box with two or more options step two - select combo box and change value (leave selected) step three - hide row step four - watch your excel crash This looks like an Excel problem to me. Without code all you have to do is selecting a...
  13. jsbc

    Hiding a line with activ combo box

    The code as i said works fine without the active combo box CBEXTPilingAdd.Visible = True CBEXTPilingRemove.Visible = False CBEXTPilingGeoAdd.Visible = False CBEXTPilingGeoRemove.Visible = False Shapes("CBEXTPileMassDia").Visible = False Shapes("CBEXTPileDia").Visible = False...
  14. jsbc

    Hiding a line with activ combo box

    Hi there, I have the following problem. I have a macro that hides certain lines to allow easier input when those lines are not required. Part of these lines are combo boxes. It all works fine until a special case arises: The combo box has been changed and the button to initiate the hide...

Part and Inventory Search

Back
Top