Help for this page

Select Code to Download


  1. or download this
    # Fork it into two process's
        my $kidpid;
    ...
            # Display response from server
            &show($line);
            print "<< $line\n";
    
  2. or download this
    sub show {
        my $line = $_;
    ...
            print "<< $line\n";
        $scrolledText -> insert('end',"<< $line");    # Insert the text in
    +to the Listbox $scrolledText
    }