176

(6 replies, posted in General)

how do I in a field calculated within the database, to have the sum of a quantity of a product in a single product id

thank you so much

hello! vovka3003
how can I adapt your script to my project?

don't go on this version of windows 10
Windows 10 pro - version 1903

it does not work

the SendMail function does not go on windows 10

182

(3 replies, posted in General)

+1

183

(7 replies, posted in General)

maybe you wanted this?

184

(3 replies, posted in General)

thank you Dmitrij.

185

(5 replies, posted in General)

+1

186

(3 replies, posted in General)

How to send an email (with sendMail) programmed, entering date and time of sending

187

(8 replies, posted in General)

he is very professional

188

(3 replies, posted in General)

Think about whether you could have a light or dark background

thank you

190

(4 replies, posted in General)

let me know when it's corrected

191

(2 replies, posted in Script)

already found the solution
thank you

192

(2 replies, posted in Script)

 TNxNumberColumn(Report.TableGrid1.Columns[4]).FormatMask := '€ #,##0.00';   

193

(4 replies, posted in General)

currently use - ORDER BY appuntamento.id DESC - ASC-

194

(4 replies, posted in General)

How can I get a progressive ID? Example 1,2,3,4,5,6,7,8,9,10,11 and etc.

195

(1 replies, posted in General)

When the last 2 lines are exported to Excel, the border is not displayed.

196

(6 replies, posted in General)

Thank you Dmitrij.

197

(6 replies, posted in General)

I was using this example

http://myvisualdatabase.com/forum/viewt … 375#p20375

198

(6 replies, posted in General)

complete script

procedure Acessi_Button3_OnClick (Sender: string; var Cancel: boolean);
var
   Char_Array: array of string;
   I,PW_Length,indx,Array_Length: Integer;
   Password,AlphaNum: String;
begin
   If Acessi.Edit1.Text = '' then
     Begin
        MessageBox('Nessuna cifra inserita','Error',MB_OK+MB_ICONERROR);
        Acessi.Edit1.SetFocus;
        Exit;
     End;
   AlphaNum := 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
   Array_Length := Length(AlphaNum);
   Setlength(Char_Array,Array_Length);
   For I := 0 to Array_Length - 1 do
     Begin
       Char_Array[i] := Copy(AlphaNum,I+1,1);
     End;
   Password := '';
   PW_Length := StrToInt(Acessi.Edit1.text);
   for I := 0 to PW_Length -1 do
     begin
      indx := Trunc(random * Array_Length);
      Password := Password + Char_Array[indx];
     end;
   Acessi.edPassword.Text := Password;
end; 

indx := Trunc(random * Array_Length);

solved, I was the script