Displaying 1 result from an estimated 1 matches for "export_button".
2007 May 30
0
checking for "viability" of a GUI component
...(is.matrix(inputtext)) {
for (i in 1:nrow(inputtext))
tkinsert(logtext, "end",paste(paste(inputtext[i,],collapse="
"),"\n",sep=""))
}
else tkinsert(logtext, "end",paste(inputtext,"\n",sep=""))
export_button <- tkbutton(logwin, text = "Export Log",
command=savelog)
tkgrid(export_button)
}
}
-- I understand I should bind a function to remove the varialbe with a
close button, however, we can't stop users from closing window just by
clicking on the upper right corner.
How...