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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mucklow

  1. mucklow

    How to obtain username / hostname

    I'm just using IIS. I got around the problem by having the user click a link that runs a batch file and obtains the local hostname and runs the scripts I need. Probably not the ideal solution but it gets me what I need. Thanks
  2. mucklow

    How to obtain username / hostname

    I'm a newbie to Dreamweaver but I can't seem to find how to obtain the computer's hostname and/or username that is accessing my page (I want to display it on the page). Any ideas?
  3. mucklow

    How to determine if anothather app is running

    You can use the Windows PSTAT utility (http://support.microsoft.com/kb/927229). You would need to write some code to parse the output though. You can also use PSINFO (http://www.microsoft.com/technet/sysinternals/systeminformation/psinfo.mspx) which might be a little easier to use. Good luck...
  4. mucklow

    Where to share TCL programs

    Is there a good site for users to share programs? I have created several programs (wrapped into .exes for Windows) that may be useful to other system admins, also I am interested in seeing what else is out there available. Thanks, Travis
  5. mucklow

    Iwidgets progress bar not showing

    wow, that was easy all I did was put an 'update' right before my .feedback step and it worked thanks Bong!
  6. mucklow

    Iwidgets progress bar not showing

    Thanks, I'll try that. Whats wierd is the feedback bar appears at the end, when it is complete, but its in the background (not the focus). It just doesn't want to display as it updates... Its not hiding in the background somewhere because I run it with no windows open.
  7. mucklow

    Iwidgets progress bar not showing

    Hey guys - I have a simple program to monitor a folder's size increase, using the iwidgets::feedback. I used prowrap to make a standalone .exe so I could transfer it to a network where I dont have TCL installed (not allowed). The problem is for some reason the progress bar does not want to...
  8. mucklow

    Problems creating a list of directories on windows

    You can also use cmd dir... set your_var [exec cmd /C dir /B "$dir"]
  9. mucklow

    how to create a file in tcl

    You can also do it on the fly with the command prompt (on Windows), exec cmd /C echo "Whatever $var or text" > C:\\your_file and append to the file with double >> exec cmd /C echo "Whatever else" >> C:\\your_file
  10. mucklow

    tk_getOpenFile question

    What if you tried dumping the name of the directory selected into a file somewhere, like C:\Temp or someplace, then the next time you fire off your program check if that file exists and grab the value from it
  11. mucklow

    How to avoid run a script that is already running?

    Try looking into using pstat, a Microsoft freeware program. Its basically the Windows equivalent to UNIX's ps command
  12. mucklow

    Samba 3.0.13 - only owner can delete files

    We just recently upgraded to Samba 3.0.13 on an AIX system. We use extended ACLs heavily. The reason for the upgrade was we migrated to a new domain, and the old version of Samba would not support it. Now since the upgrade, only the owner of a file can rename or delete the file, regardless if...
  13. mucklow

    Placing buttons inside a canvas GIF image

    Hello, I'm using Tcl\TK 8.4 on Windows and I'm trying to create a GUI with buttons, pulldowns, etc... but what I want to do is have my GIF logo as the entire background and have the buttons placed inside the logo. I've tried several variations but can't seem to get the buttons to pack inside...
  14. mucklow

    TCL 8.4 Binaries for AIX?

    Ive only been able to find version 8.2 for AIX, no 8.4...
  15. mucklow

    TCL 8.4 Binaries for AIX?

    Will there be or is there a version 8.4 release available for AIX operating systems?

Part and Inventory Search

Back
Top