Search found 140 matches

by GMKai
Wed Mar 27, 2024 7:30 am
Forum: RapaGUI
Topic: Input validation
Replies: 4
Views: 126

Re: Input validation

Thanks alot.

I was going to stick a red asteriks to a Label, but Label does not support textformating, right?

Isn't there a nicer way to hand over an object and get validation of missing required fields as a present, to avoid manually checking the attributes of an object to avoid empty/null values?
by GMKai
Tue Mar 26, 2024 6:14 pm
Forum: RapaGUI
Topic: Input validation
Replies: 4
Views: 126

Input validation

Is there a way to indicate required fields in a group of e.g.

could maybe look like this:

Code: Select all

<textentry id="mytextentry" maxlen="3" accept="0123456789"/>
But how to indicate the Textentry is required?
by GMKai
Fri Mar 22, 2024 9:33 am
Forum: RapaGUI
Topic: Pick date
Replies: 3
Views: 123

Pick date

Is there a nice way to let the user pick a date?

I searched forum and the way to go on AOS/MOS seems to be kind of old and dated (haha).

Of course an option is to setup a special string, or even 3 strings for YMD.

How do you guys let a user pick a date for input with RapaGui?
by GMKai
Tue Mar 19, 2024 8:19 am
Forum: General plugin questions
Topic: Setting up hurl correctly
Replies: 5
Views: 474

Re: Setting up hurl correctly

https://www.hollywood-mal.com/docs/html/hollywood/Execute_.html The documentation of the optional table seems to be misssing the hide-option? I tweeked the call a little bit, still the black window pops up. What else do I have to set in the .bat to have it working, or do I have to live with the pop...
by GMKai
Fri Mar 15, 2024 8:25 am
Forum: General plugin questions
Topic: Setting up hurl correctly
Replies: 5
Views: 474

Re: Setting up hurl correctly

Code: Select all

Execute("token_request.bat", "",{hide="True"})
works in a way to execute the request, but i still get to see an cmd-window?
In what way do I have to create the hide-parm?
by GMKai
Sat Mar 09, 2024 12:00 pm
Forum: General plugin questions
Topic: Setting up hurl correctly
Replies: 5
Views: 474

Re: Setting up hurl correctly

Got it working: Function p_getBearerToken() DebugPrint("p_getBearerToken()") Local e = hurl.Easy() e:setopt_ssl_verifypeer(True) e:setopt_cainfo("curl-ca-bundle.crt") e:setopt_sslcert("alias.cer") e:setopt_sslkey("alias.key") e:setopt_default_protocol("ht...
by GMKai
Tue Mar 05, 2024 12:58 pm
Forum: General plugin questions
Topic: Setting up hurl correctly
Replies: 5
Views: 474

Setting up hurl correctly

Currently I have this working command: curl.exe --cacert "curl-ca-bundle.crt" --cert alias.cer --key alias.key -X POST -H "Content-Type: application/x-www-form-urlencoded" -d "grant_type=client_credentials&client_id=BQFACI&client_secret=changeit&scope=Kundenmanag...
by GMKai
Mon Dec 18, 2023 5:13 pm
Forum: RapaGUI
Topic: You are the OS
Replies: 4
Views: 3057

Re: You are the OS

I am happy to go with Royale.

For now I try to hack the state with Area.BackgroundRGB.

I will let you know what strikes next...
by GMKai
Wed Dec 13, 2023 12:36 pm
Forum: RapaGUI
Topic: You are the OS
Replies: 4
Views: 3057

You are the OS

I have attempted to recreate this: https://drfreckles42.itch.io/youre-the-os My GUI: <?xml version="1.0" encoding="UTF-8"?> <application> <window id="mywindow" title="YouAreTheOS"> <vgroup> <vgroup id="MainGroup" hide="false"> <hgroup> <rec...
by GMKai
Tue Sep 26, 2023 7:02 pm
Forum: Newbie questions
Topic: Lists and duplicate keys
Replies: 3
Views: 2199

Re: Lists and duplicate keys

Could look like this: Local indextab = {} For Local i = 0 To 10 indextab[i]= i Next For Local i = 0 To 15 DebugPrint("i: "..i) DebugPrint("Have: "..HaveItem(indextab,i)) Next For Local i = 0 To 15 If(HaveItem(indextab,i)) DebugPrint("index filled") Else() DebugPrint(&qu...