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!

Search results for query: *

  1. smugindividual

    invavalid command name "default"

    Make sure you havent accidentally closed the switch statement (ie: all braces match). Thats the same error you'd see if you type "default" into the interpreter.
  2. smugindividual

    Issues compiling tcl extension

    I've downloaded the ldap extenstion for tcl from http://www.sensus.org/tcl (ldap.tgz) I unpackaged it and configured with the following command(where /h/COTS?TCLTK is the location of th installed tcltk) (the error list is far worse without the flags): ./configure --enable-gcc --prefix...
  3. smugindividual

    interpretor not dying

    It doesnt see any interpreters, only the "grep wish". I've seen people running into the same issues, but no solutions yet. The very last block of code in this link is exactly the same problem. http://wiki.tcl.tk/1055
  4. smugindividual

    interpretor not dying

    A google search showed me that this isnt too uncommon but was still unable to locate a solution. Heres an experiment i tried, could shed some light. >> wish % winfo interps wish RQTSM % tk appname MOO MOO % winfo interps MOO RQTSM % send MOO "puts test" test % send RQTSM "puts test2" target...
  5. smugindividual

    interpretor not dying

    I am running UNIX I agree with you that the normal behavior results in only the zombie, "wish". I'm still at a loss for how it was left around. I've dug a little deeper and found that the rouge interpreter was named using the "tk appname" command and originates in a .tk file. But i'm not...
  6. smugindividual

    interpretor not dying

    in a brand new wish instance, the command [winfo interps] yields me a list of two things, "wish" and another interpreter . The other interpreter is mine but should not have been left hanging around. Firstly, i don't know how this interpreter was leftover. 2nd, I cant get rid of it. my...
  7. smugindividual

    PRINTERS issue

    printer - HP Laser Jet 2200 DN UNIX - Solaris 8 Documents are queueing up at the printer. If i send 2 documents, i have to press that lousy button twice, but not for every page in a given document, just once per document.
  8. smugindividual

    PRINTERS issue

    It doesnt have an LCD, just two dummy button. One for canceling a print job and the other is the button i press to print my pages. Am getting the same results with "Letter" and "A4
  9. smugindividual

    PRINTERS issue

    When i send a file to the printer via lp or glp i'm having to go press a button on the physical printer before a page will come out. We recently had an integration and these are brand new accounts. I remember dealing with this issue before but cant for the life of me remember what we did. I...
  10. smugindividual

    how to unbind all binds for a widget

    I'll have to play around with it. Still not removing the bind like i was hoping. But thank you for the help.
  11. smugindividual

    how to unbind all binds for a widget

    This makes sense to me. But i guess i dont understand what "trickybutton" is supposed to be. That argument is supposed to be a taglist. lets take the following example, one button that puts out "hello" when clicked: frame .f button .f.b -text hello pack .f .f.b bind .f.b <ButtonPress-1>...
  12. smugindividual

    how to unbind all binds for a widget

    I have a text widget and at some point it is being redrawn and for that instant i dont want the binds to be present, testers found a tcl error when they were able to click fast enough. I'm looking for something along the lines of $text bind <*> { } but obviously this doesnt work. Is there...
  13. smugindividual

    runaway scrollbar?

    Has anyone run into this annomaly? Clicking once on the arrow to advance the scrollbar and it takes off on its own to the end of the list. Once at the end, if you click on the arrow to scroll in the opposite direction has the same result, it just takes off till it can scroll no more...
  14. smugindividual

    Split question

    Since you know that you only want to split what comes before and after the first "=" you could do something like this. set props [ split $arg = ] set first_element [lindex $props 0] set second element [lrange $props 1 end] The lrange command is useful in these situations. It allows you to...
  15. smugindividual

    FTP question

    thanks for the quick response. My issue is that i'm trouble shooting an issue from the recieving end and have no access to the system that is sending the files. They ftp over groups of files that all follow a sequential order and on my end we process those files. Pretty basic, but we've been...
  16. smugindividual

    FTP question

    If I am FTPing files from machine A to machine B what happens if machine B is rebooted before the transfer is completed? Does it abort and leave a partial transfer? Does it keep trying until a timeout is reached?
  17. smugindividual

    want to bind all with Esc

    Never mind. All i needed was to use Escape instean of Esc
  18. smugindividual

    want to bind all with Esc

    One of my testers found that the openFile conveince functions offered by tcl/tk throws an error when the Esc key is pressed and the open dialog is on the screen. My problem is that "bind all <Esc>" gives me: Error in startup script: bad event type or keysym "Esc" any help would be appreciated.
  19. smugindividual

    issue with tk_getOpenFile

    Thanks for the responses guys, I've got some good ideas how to deal with it. Thanks again
  20. smugindividual

    issue with tk_getOpenFile

    Yes, sorry i am working on a UNIX platform. Sun Solaris Unfortunately our application isnt written to run on windows. But when attempting to create a similar situation with the tk_getOpenFile dialog itself, i received all kinds of windows permission messages.

Part and Inventory Search

Back
Top