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 dencom 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. vsdpsingh

    issues with expr

    Thanks for reply. I will add check for the same. :-)
  2. vsdpsingh

    issues with expr

    Hi, tclsh % expr 0.2+0.2 0.4 % expr 0.2+0.1 0.30000000000000004 % Can anyone please explain me the logic, that if i add 0.2 with 0.2, it will give 0.4 but, if i add 0.2 with 0.1, it will give 0.30000000000000004 and not 0.3 Am i missing some thing. thanks in advance.
  3. vsdpsingh

    in tk entry box, configure of cursor for hovering

    Perfectly works. Thanks.
  4. vsdpsingh

    in tk entry box, configure of cursor for hovering

    In tk entry box, i have good amount of text, but some are internet web adresses. i had added a tag to them as "hyperlink", but how can i configure cursor, so that on hovering these web addressed should become hand and for rest of the text it should be xterm. Thanks in advance
  5. vsdpsingh

    Export TkZinc Canvas as Image

    In an application, We have big zinc canvas which have lot of items. Exporting them to image is taking lot of time, scrolling to each grid of item and capturing data image create photo ${image}_tmp -format window -data $canvas and passing it to main image $image copy ${image}_tmp -to $image_x...
  6. vsdpsingh

    Can we call any event (fileevent) if file is modified at any moment through any process id

    Please help me out. If particular file is modified, at any moment, through any process ID, can we call any event. I could not use any while loop for regular check. Basic idea is, when application is on, and user is working on it, and base file is modified using other process, then suddenly...
  7. vsdpsingh

    Linux machine got log off, if used raise command for Bwidget TAB

    Thanks for your help! [smile] I will try some more hit and trial. Thanks for your patience and Concern.
  8. vsdpsingh

    Linux machine got log off, if used raise command for Bwidget TAB

    I dont know its very weird friend. I could not trace back the real sequence. From NoteBook::_select proc --> _draw_page proc till _draw_area proc, machine is getting log off randomly. Last time when i was working, it got log off on _draw_area proc thrice, but now i figured out it can be on...
  9. vsdpsingh

    Linux machine got log off, if used raise command for Bwidget TAB

    Nope. It did not helped me. I tried giving hard coded values, like $path.c coords "window" 2 22 $path.c itemconfigure window -width 1318 -height 585 -window $path.f$sel but results are same. :(
  10. vsdpsingh

    Linux machine got log off, if used raise command for Bwidget TAB

    NO.. i traced back more in same procedure of "_draw_area" .... $path.c itemconfigure "window" -width [expr {$w-3}] -height [expr {$yo-3}] -window $path.f$sel Here BWidget code is configuring the canvas width and height.... These are the main culprit lines which are causing the Log-Off of the...
  11. vsdpsingh

    Linux machine got log off, if used raise command for Bwidget TAB

    Hi, i am very sorry for replying you late. Very thanks for you reply. I tried changing the code, but could not help. Apart from Close Tab, i am NOT facing any issues regarding BWidget I traced back the whole issue. And finally got stuck to the one line. STEP 1. I was tracing back for closing...
  12. vsdpsingh

    Linux machine got log off, if used raise command for Bwidget TAB

    Hi, I am using Bwidget code for Tab in my application. These tab also has close tab button also. When user close tab, then current tab is destroyed and net tab is raised. When i am raising tab, the machine is getting logged off! If i use the same in the machine having graphics card, then it...
  13. vsdpsingh

    Can i change the value of variables of other running script by other?

    thanks. I will start looking under suggested options. If face any issue, will ask for help. thanks once again.
  14. vsdpsingh

    Can i change the value of variables of other running script by other?

    This is just a thaught, but may be helpful for me in many scenarios. Is it possible to change the variables of one running script, using or invoking other script. OR we can say like that.. Can i access variables of other script using mine script. Operating System : Linux Scenarios where it...
  15. vsdpsingh

    how to connect to internet through tcl like Perl LWP

    exactly what i need.. Thank you :)
  16. vsdpsingh

    how to connect to internet through tcl like Perl LWP

    i need to download some files using tcl. i cannot use wget/lwp(perl) due to some limitations. Is there any tcl module to connect to internet and download files? Please help Thanks in advance
  17. vsdpsingh

    take record of all kind of application errors from GUI

    thanks for your support. :) I did it in another way. If anyone need it. Please try sourcing bgerror.tcl file again with all your editions. It will override the previous bgerror.tcl and easiely you can catch these errors.
  18. vsdpsingh

    take record of all kind of application errors from GUI

    please if anyone can tell any way of keeping record of all the application errors flagged during usage. I tried using tk/bgerror.tcl But this way will help on my machine only. If i install my application on other system, then i need to change tk binary accordingly. which is currently no...
  19. vsdpsingh

    take record of all kind of application errors from GUI

    I need to catch all kind of application errors, and put a record of it, But, code is that much huge, i cannot put catch on every procedure. So there must be one gateway for all the application errors. Hence if any procedure got any application errors, i will record the data and keep for further...

Part and Inventory Search

Back
Top