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 IamaSherpa 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: saw
  • Order by date
  1. saw

    Excel macro to operate on selected range

    Oh yes!! Thank you Tony, that is exactly what I wanted to do and its the right shade of grey too! That is so slick. Nice, simple and just right. Thanks again Tony! Scott
  2. saw

    Excel macro to operate on selected range

    Yep, tried the macro recorder and actually made a macro that does the alternate shade idea, but it only does in on a set range. I'd like to have the macro read the range I manually select each time, then apply the light-grey background to every other row. thanks, Scott
  3. saw

    Excel macro to operate on selected range

    Hi everyone, I would like to be able to select a range in an excel spreadsheet, then run a macro that would change the background color to light gray on every other row (of the selected range). How can I do this in an excel macro? thanks for any help, Scott
  4. saw

    Program to selectively "du -sk" directories

    Thanks PH, too cool! Here's what I ended up doing: du -sk * | while read SIZE DIR do echo "$SIZE $DIR" if [ "$SIZE" -gt 800000 ] then du -sk $DIR/* | while read SUBSIZE SUBDIR do echo " $SUBSIZE $SUBDIR" done fi done I apologize for this not ending up being...
  5. saw

    Program to selectively "du -sk" directories

    Thanks Vlad and PH! Both ways work great. Hey Vlad, how did you post your code in that cool "CODE" box? thanks again, Scott
  6. saw

    Program to selectively "du -sk" directories

    I'm would like to do a "du -sk *" of a directory and for each line that produces, if the size of the directory is greater than 800MB, do a "du -sk" of that directory, then continue. Since this seems to be something that needs to be "line-based" rather than "word-based", I thought that maybe AWK...
  7. saw

    One-Click Desktop Refresh

    I would like to create a shortcut or program to run that would simply refresh the active desktop. Is there a way to do this in one click? I have the desktop set to single-click and would like to be able to refresh the desktop without having to right-click it and select refresh; just refresh...
  8. saw

    Move local file in Javascript

    Is there a way in Javascript to move or rename local files? I'd like to put some javascript into a link in IE Favorites that would swap between two different sets of Links. Basically I'd like to have a HomeLinks directory and a WorkLinks directory and be able to copy/move/rename one or the...
  9. saw

    Open more than one small window at a time w/javascript

    Thanks jarednn. Only I'll need to be more than one window on top and side by side. Now that I think more about it, it probably shouldn't be fixed to stay on top, since I would need to click on the parent page again to bring up another window. Thanks for everyone's help! saw
  10. saw

    Open more than one small window at a time w/javascript

    Thanks PepperPepsi, that works great! Now I just need to make the window that is brought up stay on top. Is there a handy way to do that? thanks, saw
  11. saw

    Open more than one small window at a time w/javascript

    The &quot;_blank&quot; didn't seem to help. Here's a clipping of the code. Its using an &quot;onClick&quot; event to run a function that pops up a new window with the info in it. This is all done on an image mapping. ******************************************************* <script> <!--...
  12. saw

    Open more than one small window at a time w/javascript

    I have a web page in which one can click on an item and a small window opens to show info on that item, but when I try to click another item to compare with the first, it only fills the original window with the new item's info. How can I open multiple small windows with javascript? thanks for...
  13. saw

    javascript to search on highlighted word

    That will work! Thank you very much! saw
  14. saw

    javascript to search on highlighted word

    Javascript gurus, I had found some javascript code somewhere that you put in the location URL of a Netscape Personal Toolbar Button. When you highlight an address and press the toolbar button, it pulls up a MapQuest map of that address, or if nothing is highlighted, it prompts the user for an...

Part and Inventory Search

Back
Top