5. Oktober 2007 13:43
IF ISCLEAR(PWD) THEN
CREATE(PWD);
IF ISCLEAR(Catalog) THEN
CREATE(Catalog);
Pos := STRPOS(Customer.Name,' ');
Vorname := COPYSTR(Customer.Name,1,Pos-1);
Name := COPYSTR(Customer.Name,Pos+1);
GUI := Customer."Kundennr. Shop";
password := Customer.Passwort;
REPEAT
CLEAR(GUI);
CLEAR(password);
password := PWD.CreatePassword(Customer.Passwort);
GUI := Catalog.CreateUserProfileUserObject('C:\Dokumente und Einstellungen\alle\Desktop\Pending\',
GUI,password,'',Customer."E-Mail",'','',Customer."Fax No.",Customer."Phone No.",Vorname,Name,'');
Catalog.CreateUserProfileAddress('C:\Dokumente und Einstellungen\alle\Desktop\Pending\',
GUI,Customer."Phone No.",Vorname,Name,Customer.Address,Customer."Country Code",Customer."Post Code",
Customer.City,Customer.Geburtsdatum,'');
WITH Customer DO BEGIN
VALIDATE("Kundennr. Shop",GUI);
VALIDATE(Passwort,password);
MODIFY;
END;
UNTIL Customer.NEXT = 0;
5. Oktober 2007 14:50
Pos := STRPOS(Customer.Name,' ');
Vorname := COPYSTR(Customer.Name,1,Pos-1);
Name := COPYSTR(Customer.Name,Pos+1);
GUI := Customer."Kundennr. Shop";
password := Customer.Passwort;
5. Oktober 2007 14:52
5. Oktober 2007 14:54
WITH Customer DO BEGIN
VALIDATE("Kundennr. Shop",GUI);
VALIDATE(Customer.Passwort,password);
MODIFY;
END;
5. Oktober 2007 14:56
5. Oktober 2007 15:04
5. Oktober 2007 15:14
5. Oktober 2007 15:44
WITH Customer DO
VALIDATE("Kundennr. Shop",GUI);
VALIDATE(Customer.Passwort,password)
MODIFY;
5. Oktober 2007 15:47
5. Oktober 2007 15:56
5. Oktober 2007 16:10
Da Säbeln wir bestimmt nirgendswo dann rumm.
5. Oktober 2007 16:37
5. Oktober 2007 16:47
IF ISCLEAR(PWD) THEN
CREATE(PWD);
IF ISCLEAR(Catalog) THEN
CREATE(Catalog);
GUI := Customer."Kundennr. Shop";
password := Customer.Passwort;
REPEAT
Name := Customer.Name;
Vorname := Catalog.SplitName(Name,0);
Nachname := Catalog.SplitName(Name,1);
CLEAR(GUI);
CLEAR(password);
password := PWD.CreatePassword(Customer.Passwort);
GUI := Catalog.CreateUserProfileUserObject('C:\Dokumente und Einstellungen\alle\Desktop\Pending\',
GUI,password,'',Customer."E-Mail",'','',Customer."Fax No.",Customer."Phone No.",Vorname,Nachname,'');
Catalog.CreateUserProfileAddress('C:\Dokumente und Einstellungen\alle\Desktop\Pending\',
GUI,Customer."Phone No.",Vorname,Nachname,Customer.Address,Customer."Country Code",Customer."Post Code",
Customer.City,Customer.Geburtsdatum,'');
WITH Customer DO BEGIN
VALIDATE("Kundennr. Shop",GUI);
VALIDATE(Passwort,password);
MODIFY;
END;
UNTIL Customer.NEXT = 0;