Vincent de Lachaux, 4D iNug Technical, 18. Sep 2015 When 4D Quit, all processes are called and you can do something like closing your dialogs: Case of //… : (Form event=On Outside Call) If (Process aborted) //4D wants to quit SET TIMER(0) //Do something (rapidly, you have 3 seconds). CANCEL //close dialog End if //… […]
Beiträge vom September 2015
UUID query
Keisuke Miyako, 4D iNug Technical, 18 Sep 2015 Just to be clear, a UUID field is not string, so the „@“ will not work as a wildcard in comparison. (it will simply be considered a literal „@“ sign) the following will yield nothing: (exception below) QUERY ([Table_1];[Table_1]UUID=“@“) but the following will return everything: QUERY ([Table_1];[Table_1]UUID#“@“) […]