Displaying 7 results from an estimated 7 matches for "cget".
Did you mean:
cet
2005 May 04
0
New win32-dir
...ERPROFILE\Local Settings\Application Data\Microsoft\CD Burning
CSIDL_CDBURN_AREA = 0x003b
# All Users\Start Menu\Programs\Administrative Tools
CSIDL_COMMON_ADMINTOOLS = 0x002f
# <user name>\Start Menu\Programs\Administrative Tools
CSIDL_ADMINTOOLS = 0x0030
def cget(const)
path = " " * 255
if SHGetFolderPath
result = SHGetFolderPath.call(0, const, 0, 1, path)
else
result = SHGetSpecialFolderPath.call(0, path, const, 0)
end
if result != 0
path = nil
else
pat...
2013 Sep 01
1
[PATCH] remove a duplicate tk function definition (and alphabetize)
.../tcltk/R/Tk.R (working copy)
@@ -493,12 +493,11 @@
tkbbox <- function(widget, ...) tcl(widget, "bbox", ...)
tkcanvasx <- function(widget, ...) tcl(widget, "canvasx", ...)
tkcanvasy <- function(widget, ...) tcl(widget, "canvasy", ...)
+tkcget <- function(widget, ...) tcl(widget, "cget", ...)
tkcompare <- function(widget, ...) tcl(widget, "compare", ...)
tkconfigure <- function(widget, ...) tcl(widget, "configure", ...)
tkcoords <- function(widget, ...) tcl(widget, &q...
2001 Sep 19
2
tcltk: Difficulties creating menus
...t;- tktoplevel()
tkpack(mb <- tkmenubutton(tt, text="Color"))
## does nothing
## tkradiobutton(mb, variable=color, text="blue", value="blue",
## command=set.bg)
##
## Error: Error in .Tcl(.Tcl.args(...)) :
## [tcl] bad option "add": must be cget or configure.
## tkadd(mb, tkcheckbutton, label="blue", variable=color)
##
## Dito
## tkcmd("add", tkcheckbutton, label="blue", variable=color)
tkpack(tkbutton(tt, text="Quit", command=function()tkdestroy(tt)))
Any pointers or examples would be greatly appre...
1998 Oct 12
0
session terminated
I have the 1.9.18p8 version on a unix machine HP-UX 10.20
I try to connect from a pc with NT4.0 SP3 where I'm logged in as "tec110"
On the samba server i have shared the fs /cadra/AB as [AB] and /cadra/AC as
[AC]
The user is able to cget the service from the pc with a tec110 and a pswd
but when i try to connect to the second service [AC] i have this msg :
"A specified logon session does not exist. It may already have been
terminated"
If I disconnect the first connection [AB] I'm able to connect the second
[...
2002 Jun 13
1
2nd release of my new-protocol testing app
...named
it "rzync" just for fun (a very confusing name, no?):
http://www.clari.net/~wayne/rzync.tar.gz
The new stuff in this release is that it can get/put an entire directory
tree of files via getd/putd, and it has conditional get/put commands
that handle both files and directories (cget/cput). (For those that
missed the first announcement, the program can be totally controlled by
an external application via a simple set of commands on stdin.)
I've included a perl script named "rs" that will take an rsync-like
command line (as long as the destination is a directory...
2007 Oct 09
1
misbehaviour of some tk windows, R 2.6.0 on SUSE 10.1?
I don't know whether this is specific to (my installation
of) SUSE 10.1, or is more general.
With R 2.6.0, I am finding that some widgets made through
the tcltk package are having problems which become evident
through scrollbar activity. An example is demo(tkfaq) --
see below. To reproduce the problem, I do the following:
after the tk window appears, hold down the
2015 Jan 08
4
RFC: getifexists() {was [Bug 16065] "exists" ...}
If we do add an argument to get(), then it should be named consistently
with the ifnotfound argument of mget(). As mentioned, the possibility of a
NULL value is problematic. One solution is a sentinel value that indicates
an unbound value (like R_UnboundValue).
But another idea (and one pretty similar to John's) is to follow the SYMSXP
design at the C level, where there is a structure that