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 SkipVought 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. AcousticalConsultant

    trapping "insert row" event

    I think I'd prefer to go back to my initial approach (re-directing the commandbar actions), but I need it to be more robust for distribution on other computers. Anybody got some ideas?
  2. AcousticalConsultant

    trapping "insert row" event

    I've been working at creating a solution for my needs, but I've concluding that it's just not working this way. It makes it very difficult when the user selects "undo". If the user undoes an "insert row" event, and the selected cell when the undo is initiated happens to be above the inserted...
  3. AcousticalConsultant

    trapping "insert row" event

    That helps. Thanks Skip. It'll require some tweaking to suit my needs, but it's certainly a start, and it'll help make the code more compatible.
  4. AcousticalConsultant

    trapping "insert row" event

    Well, that was my initial concern - but it probably won't matter much. So if I were to explore that method, I know that I can track the target range, but how can I trace whether the change was an 'insert row' event?
  5. AcousticalConsultant

    trapping "insert row" event

    Hello, So essentially what I am trying to do it trap an "insert row" event so that I can prevent it on specific lines, but allow it on others. I know that there is no specific event to trap for insert rows, so we have to go about it another way. One way is to monitor the Worksheet_Change...
  6. AcousticalConsultant

    EnableEvents not working?

    Hi, I have a database in Excel with entries on single rows. I have developed a userform to display the content of individual entries and allow the user to make changes. There are some calculations involved in the display so when the user makes a change to one of the properties, the results...
  7. AcousticalConsultant

    Determine if a row is filtered or not?

    I thought I had tried that, but couldn't seem to get it to work. I tried it again after reading your post, and now it works... magic! I must be tired. Thanks Skip! For reference, here is the property: activesheet.rows(n).hidden
  8. AcousticalConsultant

    Determine if a row is filtered or not?

    Hi, I'm trying to find a property which lets me know if a row has been "hidden" by a filter or not. I know that I can check the autofilter mode to determine if the autofilter is active, but how do I verify individual rows? Thanks for the help! AC
  9. AcousticalConsultant

    Font formatting inside a comment box

    Sugarflux, Great! That's exactly what I needed. Works perfectly. Thanks! AC
  10. AcousticalConsultant

    Font formatting inside a comment box

    Hello, I was wondering if anyone knew how to format text (e.g. make bold) within a comment box in Excel using VBA. I want to make certain portions of the text bold. It's easy to do manually, but with the "Macro recorder" it doesn't write any code for the formatting. Unlike the 'cells'...
  11. AcousticalConsultant

    Excel 2000 - Moving object

    Skip, I had looked into that already, but I was only able to make every other gridline bold because I was using a line chart. Now I've changed it to an XY Scatter Plot and I realized that you could define the MAJOR and MINOR gridline spacings. The only thing now is that my x-values are bogus...
  12. AcousticalConsultant

    Excel 2000 - Moving object

    The reason for putting lines on the graph is because we need every third vertical gridline to be a thicker lineweight. In Excel you can configure all gridlines (horizontal or vertical) to a single lineweight, but not every individual gridline. Therefore, we superimpose a line on top of the...
  13. AcousticalConsultant

    Excel 2000 - Moving object

    We are using excel to plot graph; in the graph sheet we add some lines and text. (1) for the lines, in the "format autoshape menu - size" when correcting the width to 0 cm and clicking ok, the value for the width is still 0.01 cm (2)when ploting the graphs, the lines and text box are always...
  14. AcousticalConsultant

    Allowing control behind a userform

    Fumei, That's excellent! Thanks for the tip! Pascal
  15. AcousticalConsultant

    Controlling AutoCAD from Excel

    Works beautifully TCarpenter... Thanks!
  16. AcousticalConsultant

    Controlling AutoCAD from Excel

    Hi TCarpenter, I already tried the .WindowState property. While it does minimize and maximize the window, it still doesn't make it the window active. It simply minimizes or maximizes the window in the background, but if another window is on top of it, the user never even knows. Same sort of...
  17. AcousticalConsultant

    Allowing control behind a userform

    Hello, I am trying to make an interactive macro where the user is able to select cells while a userform is prompting him to do so. Similar to the way that Excel allows you to create a graph. When entering data, you can click and drag your mouse over the desired region and the formula will...
  18. AcousticalConsultant

    Controlling AutoCAD from Excel

    What I did was actually just make a few minor changes to my classes and I copied them directly into Excel. That way I can create objects of type "Graph" inside Excel, but it will actually create the graph inside AutoCAD. Works well! Thanks for the info though. However, while I'm at it, I...
  19. AcousticalConsultant

    Controlling AutoCAD from Excel

    Hello, I've created a VBA program within AutoCAD which creates a graph based on user input values. The program contains a class for the graph itself and a class for each curve that is plotted. It works great within AutoCAD, but I would like to extend the functionality to within Excel. That...

Part and Inventory Search

Back
Top