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 Wanet Telecoms Ltd 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. littlewoman

    full screen disabled when workbook minimizes

    Greetings, Using: excel 2003 - vba with a little bit of knowledge Creation: I have created an "standalone" version of several interactive workbooks. With standalone I mean that, in workbook_open, all sheetfunctions (scrollbars, tabs, etc.) and commandbars are disabled, my commandbar is docked...
  2. littlewoman

    excel autofilter - check if activated/deactivated

    using excel 2003-vba since the autofilter is turned on and off by the same command I need to check if autofilter is activated on a sheet or not to subsequently activate it when it's not. is there a way to check this? tried: if selection.autofilter = false then selection.autofilter but...
  3. littlewoman

    deactivate 'commandbars'-shortcutmenu

    using excel 2003-vba I have a database with a lot of code behind it to automize all. To protect the database and the code behind it against userinterference I have gave excel a 'standalone' appearance by activating a fullscreen mode and disabling the active menubar and fullscreen-menubar...
  4. littlewoman

    excel how to get a customized commandbar.button.icon

    using excel 2003 I have made a customized commandbar. Now I like to add an customized icon to the buttons on this commandbar. Manually I can use Tools/Toolbars/Commands/Modify selection/edit button image to create an icon which excel 'remembers'. Yet I can't find a way to accomplish this in...
  5. littlewoman

    sendkeys - move cursor down on filtered row on sheet

    Using VBA - Excel 2003 in short: 1 worksheet, lots of records on rows. trying to get 1 or more records first I used: while activecell.value <> searchvalue then activecell.offset(1,0).select wend works perfectly but with a large database it becomes slow on the less...
  6. littlewoman

    Set object through variable?

    Using Excel 2003-vba, I have a userform with several textboxes for descriptions and named them tbxDescription1 to tbxDescription9 Now I need to loop through them in serveral occassions and tried to accomplish that by following code dim obj as object for cnt = 1 to 9 cnt$ = right(str(cnt),1)...

Part and Inventory Search

Back
Top