The 1C:Enterprise developers forum
Hi everyone,I am developing mobile configuration. I need to know what I can do in gui. I mean, Which skills can used by me? I want to say to yes no question to user in some where of my configuration, how can I do that?
Hello, Mehmet Tuğrul SARIÇİÇEK.Here is a working code:
&AtClient Procedure Ask() Mode = QuestionDialogMode.YesNo; Notify = New NotifyDescription("AfterQueryClose", ThisObject); DoQueryBox("Do you want to continue?", Mode, 0); EndProcedure &AtClient Procedure AfterQueryClose(Answer, Parameters) Export If Answer = DialogReturnCode.No Then Return; EndIf; //... EndProcedure
Samir Muqimov, Thank you Samir, Thank you very much