In my project I have to include some folder or no it depending of what the user Want
In the setup Types Pane I added a new Setup Type, and I check the folder that the user can install or no
I declare in my code a global variable(szSection) to ask the user if he want to add or no the Section Folder
if the user want to install the folder so: szSection = 0
But my problem is that who can I join between my variable and the folder that I checked into the Setup Types pane
this is my code for the dialog
function DialogShowSectionAskOptions()
NUMBER nResult;
STRING szTitle, szMsg;
STRING szText1;
BOOL bvCheck1;
STRING szTYPESTATION;
begin
szTitle = @SECTION_MODEL_TITLE;
szMsg = @SECTION_MODEL_MSG;
szText1 = "Sections";
bvCheck1 = TRUE;
SetDialogTitle ( DLG_ASK_OPTIONS , szTitle );
nResult = AskOptions (NONEXCLUSIVE, szMsg , szText1 , bvCheck1);
if( bvCheck1 == TRUE ) then
nSectionsMobiles = 0;
endif;
return nResult;
Thanks for help
