Telegram_2020-01-28T10

<< Click to Display Table of Contents >>

Navigation:  Telegram > 2020 > 01 > 28 >

Telegram_2020-01-28T10

Telegram link

 

2020-01-28T10:39:52

 

Hello, is it possible to refresh only a region of a form?

 


 

Telegram link

 

2020-01-28T10:43:14

 

IWEdit := TIWEdit.Create(self);

 

IWEdit.Tag := gdVentiler.RowCount - 1;

 

IWEdit.Text := montant;

 

IWEdit.OnAsyncEnter := AsyncEnter2;

 

IWEdit.OnAsyncExit := MontantAnalytiqueAsyncExit;

 

IWEdit.Css := 'form-control number text-right';

 

gdVentiler.Cell[gdVentiler.RowCount - 1, 2].Control := IWEdit;

 


 

Telegram link

 

2020-01-28T10:46:20

 

This code is executed on the event onAsyncClick of a button but the IWEdit.OnAsyncExit is not triggered. Any ideas for this problem?