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

    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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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?
  7. 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.
  8. smugindividual

    issue with tk_getOpenFile

    A tester has found a situation were tk_getOpenFile raises and exception: error getting working directory name: Error 0 while execution "pwd" (procedure "::gti::dialog::file2:Update" line 34) invoked from within "::gti::dialog::file2::Update .__tk_filedialog" ("after" script)...
  9. smugindividual

    pwd returns &quot;Error 0&quot;

    What the heck does it mean. I'm accustomed to seeing: "no such file or directory".
  10. smugindividual

    question about destroy

    I'm destroying a text widget with around 20,000 lines of text in it. When my user goes to close the file, the destroy command takes forever to finish. Is there anything better than destroy? Or a quicker way to kill the widget. No, deleting 1.0 end does not speed anything up.
  11. smugindividual

    just getting back into java, have easy question

    import java.io.*; public class lab { public static void main (String[] args) { System.out.print("Hello"); } } Above is my nothing of a program. It compiles, but when i run it, i keep getting: Exception in thread "main" java.lang.NoClassDefFoundError: lab/java Whats the deal...
  12. smugindividual

    bind question

    whats the identifier for the mouse wheel? I need to remove its binding. I know its not 1 or 3, and have tried with 2, 4, and 5. have also tried: bind all <MouseWheel> {} thanks in advance
  13. smugindividual

    tk_chooseDirectory issue

    Hey guys, I have a wierd problem. tk_chooseDirectory is creating differnet widgets on different machines, each running the same versions of tcl/tk. Both machines are solaris and both have tclsh8.3 and wish8.3 installed. My testers found an issue when running on thier machine, and when i...
  14. smugindividual

    compile error

    First time jumping back into java in a long time. Must have really lost the touch. Any help would be appreciated. compile error: lab6.java:42: Method parseDouble(java.lang.String) not found in class java.lang.Double. salary = Double.parseDouble(salaryField.getText())...
  15. smugindividual

    FTP issue

    I have run into a situation where a polling application is seeing and processing a file that have been FTPed but has not completed yet. The polling app is seeing these as incomplete transactions and is discarding them. Meanwhile on the sending side, ftp will hang with no explanation. Is...
  16. smugindividual

    Question for managing menu

    I have a menu with three items, we'll call them A, B, and C. Each of these has a cascading menu.(Note that the cascading menu is the same for A, B, and C. Built by the same routine) Heres my problem: A, B, and C each have a little triangle indicator on the far right to show which menu item...
  17. smugindividual

    removing tab bind from widget

    I dont want my user to use Tab at all on a few screens. Shouldnt the following line take care of removing the Tab bind for that widget? bind $top <Key-Tab> {} where top is the toplevel widget.
  18. smugindividual

    text widget and the -activeborderwidth option

    Why do I get unknown option when i try to set this? Using tcl 8.3. Is there an existing problem with this option? Thanks in advance
  19. smugindividual

    Anyone with TKGeoMap experience

    When removing and adding points on a GeoMap. Does a function exist that tells why a point is &quot;in use&quot;? I use catches on all calls to [GeoPlace remove xxxxx]. The catches show that my point is &quot;in use&quot;, a scenario i was hoping to avoid. So with no lines using the point...
  20. smugindividual

    question about scope of bgerror (override)

    I have overriden bgerror in a .tcl file. All tcl errors that occur in that file hit the override properly. The same .tcl file calls functions from numerous .htk files. Tcl errors that occur in these files never hit the override. To me, this looks correct. My coworker believes that the...

Part and Inventory Search

Back
Top