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: *

  • Users: Arepi
  • Content: Threads
  • Order by date
  1. Arepi

    cant open serial port with [open /dev/ttyS0 r+]

    Hi, When I try to open a serial port like this: set serial [open /dev/ttyS0 r+] I get: " couldn't open "/dev/ttyS0": no such file or directory" When I use this form: set serial [open COM1: r+] It works properly. It might be importent to know why is it as i would like open USB connection like...
  2. Arepi

    Run Tcl script in command prompt with Active Tcl and Win

    Hi, I'm just getting started with Tcl. When i try to run my simple script in command prompt like this C:\script.tcl a window appears and there is no output in command prompt When I try like this(as i know this is the right way for this) c:\tclsh script.tcl I get a message that system could...
  3. Arepi

    display a DICOM image

    Hi, It's possible to display in PERL a DICOM format image? Besides might importent also that embedding the image in a GUI like Tk. Thanks a lot! Arepi
  4. Arepi

    Tk display image path

    Hi, I tryed this example from Tk FAQ to display en image. use strict; use Tk; my $main = new MainWindow; my $canvar = $main ->Canvas; $canvar->pack; my $file = 'demos/images/earth.gif'; my $img = $canvar->Photo( 'IMG', -file =>...
  5. Arepi

    Detecting hit from keyboard

    Hi! I try monitoring the keyboard in perl tk(non blocked read) I tryed use TermReadKey but that read just from prompt shell(STDIN) I need something to non blocked read in tk(in a subrutin what i called from mainwindow) (like in C kbhit(); function) Thanks!

Part and Inventory Search

Back
Top