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 Mike Lewis 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. gabele

    Problem fetching text widget value on button click

    Hi Anirban, i understand You are looking for something like proc submit_details {} { set submit_data [string trim [f2.t2 get 1.0 end]] # do whatever you need with $submit_data puts "Submitted Data:" puts $submit_data } Tobias Gabele Bierwirth & Gabele SoftwareDesign GBR...
  2. gabele

    Read only text widget

    Hi Anirban, consider using a label instead of the text widget if you don't need text widget funcionality. Your code example doesn't work because the insert operation requires that widget state is not disabled. Change it to the following: text .f2.t1 -bd 1 -highlightbackground black...
  3. gabele

    create an excelsheet with table data

    Hi vignette1, if Your application runs on a sun solaris system, i see no easy way to generate the native excel file format. The tcom solution suggested by marsd is limited to windows platforms. Excel does however handle csv and HTML plain text formats reasonably well. Therefore i would suggest...
  4. gabele

    Curious setting variable problem

    sorry, correction first line in proc status_update must be: global ftpstatustext Tobias Gabele Bierwirth & Gabele SoftwareDesign GBR http://uni-sql.de/gabele/projects.html
  5. gabele

    Curious setting variable problem

    Hi, i would suggest splitting gui and statusupdate in two procs. The status_update proc calls itself after every 5 seconds set message(offline) "down :-(" set message(online) "up! :-)" set ftpstatustext "not determined" proc status_gui {} { catch {destroy...
  6. gabele

    sed question

    for performance reasons i would suggest to use tr here: the command tr &quot;\n&quot; &quot; &quot; < myinputfile.txt maps all newline characters (including the last one) to space characters. regards, Tobias Tobias Gabele Bierwirth & Gabele SoftwareDesign GBR...
  7. gabele

    Curious setting variable problem

    I tested your commands under RedHat 9 / Tcl 8.3 / vsftpd-1.1.3-8 and had no errors. Maybe there is something wrong with your installation? Alternative way to determine the username: set USER_NAME $::tcl_platform(user) to make sure a unix command is executed in a bash context, consider set...

Part and Inventory Search

Back
Top