var str = new c_str();
str.setvalue("456");
str.setabc("789");
alert(str.getvalue() + "\r\n" + str.getabc());
//------------
function c_str()
{
this.value = "xyz";
this.abc = "123";
this.getvalue = function () { return this.value; }
this.setvalue = function (s) { this.value = s; }
this.getabc = function () { return this.abc; }
this.setabc = function (s) { this.abc = s; }
//...
}
String.prototype.xyz = c_xyz;
var str = new String("123");
function c_xyz()
{
return "<h1>" + this.valueOf() + "</h1>";
}
alert(str.xyz());
Autoanmeldung von Benutzer unter XP / Automatische Anmeldung (Autologin)
hrhr 28.12.2008 - 38512 Hits - 10 Antworten
Scannen als Benutzer nein, als Administrator ja
dudarfst 26.10.2006 - 3064 Hits -
Benutzerdefinierte Netzwerkfreigaben ohne Domäne
fireflyer 20.10.2006 - 3827 Hits -
Hilfe! Mist gebaut!
Moradhim 16.02.2007 - 136 Hits - 5 Antworten
XP: Mehrere Benutzer > Standardmäßg mit einem bestimmten Benutzer anmelden?
snailhouse 22.11.2007 - 129 Hits - 2 Antworten