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

How to change display server in procedures

Status
Not open for further replies.

kmamk

Technical User
Feb 20, 2003
1
KR
I want to use differenct display servers in procedures.

for example,

##################
proc procA {} {
wm ...
...
}
proc procB {} {
wm ...
...
}
proc changeDisplay {} [
???
}
proc returnDisplay {} {
???
}
-----------
#
procA
# from procB, I wish that procedure B be displayed on other machine X window.
changeDisplay
procB
returnDisplay

exit
#######################3


 
It is not possible, so far i know. If you want to display a widget on other mashine, you mast start a remote tcl process on this mashine and access on it per soket.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top