thank you so much!
derek!

display a date from DateTimePicker1 inside Memo1

153

(9 replies, posted in FAQ)

how to make the calendar time coincide with the current time at the time of the OnShow?

154

(5 replies, posted in General)

hi Dimitry,
i'm happy to hear from you ... we missed you.

155

(5 replies, posted in General)

I think he was hacked

156

(1 replies, posted in General)

using the object panel

157

(4 replies, posted in General)

procedure Form1_TableGrid1_OnCellDoubleClick (Sender: TObject; ACol, ARow: Integer);
begin
        OpenFile('your file');
end;

thank you very much!

how to add a pop-up fade effect on a panel?

160

(5 replies, posted in General)

procedure Form1_Button1_OnClick (Sender: TObject; var Cancel: boolean);
begin
    OpenURL('https://translate.google.it/?hl=it&tab=wT');
end;

161

(6 replies, posted in Script)

clicking on a specific cell in a TableGrid1 shows me the image inherent in the cell

162

(6 replies, posted in Script)

clicking on a specific cell (example cell 0) opens the image

163

(6 replies, posted in Script)

click on a specific cell and open an image

164

(6 replies, posted in Script)

script a click event on a cell

how to translate this menu

Thanks so much Dmitrij.

I need scripts to export and import the whole database CSV

I use this and I have no problems

procedure TableGrid_OnChange (Sender: TdbStringGridEx);
var
   i,k,r,c: integer;
begin
     r := Sender.RowCount - 1;
     c := Sender.Columns.Count - 1;
     for i := 0 to r do
          begin
           if i mod 2 = 0 then
              begin
                for k := 0 to c do
                  begin
                    Sender.Cell[k,i].Color := $00FBFBFB;
                  end;
              end;
          end;
end;

169

(8 replies, posted in General)

Even if it is 64-bit the launcher is always in the System32 folder.
You can create windows commands by creating a bat file.

170

(8 replies, posted in General)

C:\Windows\System32\calc.exe

171

(8 replies, posted in General)

procedure Form1_Button1_OnClick (Sender: TObject; var Cancel: boolean);
begin
    OpenFile('C:\Program Files (x86)\Google\Chrome\Application\chrome.exe');
end;

172

(6 replies, posted in General)

Thanks a lot! it works great
Derek

173

(6 replies, posted in General)

I make 2 invoices of 50 apples per total invoice I have 100 apples, now how can I show the total of the 2 invoices in a TableGrid without showing me the same product twice, since it is the same ID?

174

(6 replies, posted in General)

does not work

175

(6 replies, posted in General)

example: in an invoice I have a product 100 pieces I make 2 discharges of 50 pieces, how can I sum 50 + 50 = 100 in a single product ID inside a calculated field?