getPassword: getPassword

Description Usage Arguments Author(s) Examples

View source: R/getPassword.r

Description

getPassword

Usage

1
getPassword(remote = F)

Arguments

remote

Author(s)

ivanhanigan

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
## Not run: 
function (remote = F) 
{
    if (remote == F) {
        require(tcltk)
        tt <- tktoplevel()
        pass = tclVar("")
        label.widget <- tklabel(tt, text = "Enter Password")
        password.widget <- tkentry(tt, show = "*", textvariable = pass)
        ok <- tkbutton(tt, text = "Ok", command = function() tkdestroy(tt))
        tkpack(label.widget, password.widget, ok)
        tkwait.window(tt)
        return(tclvalue(pass))
    }
    else {
        pass <- readline("Type your password into the console: ")
        return(pass)
    }
  }

## End(Not run)

swish-climate-impact-assessment/swishdbtools documentation built on May 21, 2020, 1:03 a.m.