hola estimada familia CsEntry
estoy usando el siguiente codigo para escribir un campo de observaciones
string dialog_output;
string display_options;
if length(strip(OBSERVACION_1))=0 then
display_options = maketext('{ "width": %d, '
' "height": %d, '
' "resizable": %d }'
, int(tonumber(getproperty("MaxDisplayWidth")) * 0.8)
, int(tonumber(getproperty("MaxDisplayHeight")) * 1.8)
, true);
dialog_output = CS.UI.showDialog(path := "Basic-Output-Dialog.html", displayOptions := @object display_options);
else
string dialog_input = prompt("Editar 2da Observacion", OBSERVACION_1, multiline);
string input_data = maketext('{ "Observacion": %s }', encode(JsonString, dialog_input));
//alpha(990) input_data = maketext('{ "Observacion": %s }', encode(JsonString, dialog_input));
dialog_output = CS.UI.showDialog(path := "Basic-Output-Dialog.html", inputData := @object input_data);
endif;
if dialog_output <>"" then
string obsprueba;
obsprueba.updateValueFromJson(dialog_output);
observacion_1=obsprueba;
errmsg("OBS: %s-CONTINUA %s-", observacion,observacion_1);
endif;
sin embargo cada vez que lo uso una ventana de permiso le sale al usuario y quisiera eliminarlos como lo logro??
permisos de cssenttry en android
-
odette.robleto
- Posts: 5
- Joined: May 8th, 2025, 12:08 am
permisos de cssenttry en android
You do not have the required permissions to view the files attached to this post.
-
Gregory Martin
- Posts: 1946
- Joined: December 5th, 2011, 11:27 pm
- Location: Washington, DC
Re: permisos de cssenttry en android
Take a look at Action Invoker access tokens: https://www.csprousers.org/help/CSPro/a ... token.html
You can specify an access token to use in your application, or you can disable the need for tokens: https://www.csprousers.org/help/CSPro/l ... s%20token)
You can specify an access token to use in your application, or you can disable the need for tokens: https://www.csprousers.org/help/CSPro/l ... s%20token)