bonjour,
je cherche un moyen de savoir si une form f_1 est ouverte au moment ou j'ouvre ma form f_2.
quelqu'un aurit une solution?
merci d avance.
Version imprimable
bonjour,
je cherche un moyen de savoir si une form f_1 est ouverte au moment ou j'ouvre ma form f_2.
quelqu'un aurit une solution?
merci d avance.
Sans doute avec Find_Form():
Code:
1
2
3
4
5
6
7
8
9
10
11 DECLARE fm_id FormModule; LC$Form VARCHAR2(60) := 'ma_forme'; BEGIN fm_id := Find_Form(:System.Current_Form); If id_null(fm_id) then -- y'a pas ! -- message('forme : ' || LC$Form || ' non trouvée'); End if ; END;
SheikYerbouti, je ne voudrais pas te reprendre mais ce ne serait pas plutôt :
[/QUOTE]Code:
1
2
3
4
5
6
7
8
9
10
11 DECLARE fm_id FormModule; LC$Form VARCHAR2(60) := 'ma_forme'; BEGIN fm_id := Find_Form(LC$Form); If id_null(fm_id) then -- y'a pas ! -- message('forme : ' || LC$Form || ' non trouvée'); End if ; END;
Oui, c'est ça ;)