Search found 37 matches

by menschmarkus
Thu Nov 12, 2020 2:07 pm
Forum: Coding Questions
Topic: resize() problem with ListIcon Gadget
Replies: 0
Views: 1648

resize() problem with ListIcon Gadget

Hi, in my actual project I have to handle approx 10 containers with a lot of gadgets inside. Controled by 10 buttons, 9 of 10 containers are always hidden and on is always visible. All containers have idetical position and size. Generally this is working find as long I do not resize browser window. ...
by menschmarkus
Tue Oct 13, 2020 1:40 pm
Forum: Coding Questions
Topic: scheduling calender with use of ListIcons
Replies: 10
Views: 2670

Re: scheduling calender with use of ListIcons

No offense, but to be honest, I do not find this kind of presentation very attractive. I confirm, Peter. This code surely will not win a design award. I tried this code because LI handling is easy and very functional particular in regard to handling filled items in this schedule. One Click on an it...
by menschmarkus
Fri Oct 09, 2020 12:02 pm
Forum: Coding Questions
Topic: scheduling calender with use of ListIcons
Replies: 10
Views: 2670

scheduling calender with use of ListIcons

Hi, this is furthermore a base for a discussion. I found in Forum scheduling calender ideas using Canvas. I tried it out but found using ListIcons is easier. Following my sample for the scheduling calender. ; ; Schedule Calender with use of ListIcons ; Created By: menschmarkus ; Creation date: 2020-...
by menschmarkus
Wed Sep 23, 2020 10:04 am
Forum: Coding Questions
Topic: convert structured list() to json string
Replies: 3
Views: 1157

Re: convert structured list() to json string

I am a fool :shock:
reading educates :oops:
by menschmarkus
Wed Sep 23, 2020 9:52 am
Forum: Coding Questions
Topic: convert structured list() to json string
Replies: 3
Views: 1157

convert structured list() to json string

Hi, converting a JSON string to a structure is easy. You just need to use ExtractJSON.... But how is about converting a structured list() into a JSON String? I did not find a similar command like ExtractJSON for converting JSON to structure. Do I really need to pass throug the complete list and buil...
by menschmarkus
Fri Aug 07, 2020 2:44 pm
Forum: Coding Questions
Topic: Cookies and SessionIds
Replies: 11
Views: 5074

Re: Cookies and SessionIds

Kurzer wrote:I meant the F5 key in the SpiderBasic IDE, not the F5 key in the browser.
Ah, this was the misunderstanding. ;)
by menschmarkus
Fri Aug 07, 2020 8:56 am
Forum: Coding Questions
Topic: Return Value of FileSaveWindow
Replies: 2
Views: 997

Re: Return Value of FileSaveWindow

I solve the problem with a timer. User now has 'n' minutes to start download. After 'n' minutes the file automatically will be deleted from my server. If he presses the download button after this time there will appear an error message. Bad luck for the user, but I have to keep my server clean from ...
by menschmarkus
Fri Aug 07, 2020 8:49 am
Forum: Coding Questions
Topic: Cookies and SessionIds
Replies: 11
Views: 5074

Re: Cookies and SessionIds

@kurzer I can't agree. As I know the PHPSESSIONID is kept until the browser is closed. In my tests the SESSIONID is always the same until I restart browser. By the way, you can restart the app with F5 but this keeps the cache. If you use STRG+F5 the cach is deleted. I always restart the app with STR...
by menschmarkus
Fri Aug 07, 2020 7:06 am
Forum: Coding Questions
Topic: Return Value of FileSaveWindow
Replies: 2
Views: 997

Return Value of FileSaveWindow

Hi,
I offer a file for download from my server. So far so good. Now does the appearing System Window ,which asks for saving the file, send a return value?
If yes, how can I catch this?
by menschmarkus
Fri Aug 07, 2020 6:54 am
Forum: Coding Questions
Topic: Cookies and SessionIds
Replies: 11
Views: 5074

Re: Cookies and SessionIds

Hi, I use SESSIONID information within my PHP script. Like <?PHP if(session_status() !== PHP_SESSION_ACTIVE) session_start(); $tfname = session_id(); echo $ftname; exit(); ?> You you can use $tfname as a variable which holds the ID wherever you want i your PHP script. You may run a httprequest() in ...