Search found 4 matches

by AmkSoft
Sun Apr 30, 2017 8:13 am
Forum: examples
Topic: Webserver serving multiple connections simultanous
Replies: 2
Views: 32203

Webserver serving multiple connections simultanous

[quote author=303F3F34373C3E2334510 link=1464453903/1#1 date=1479459070]Making multiple HTTP requests concurrently hurts the performance. To understand why, we should first understand briefly about how web servers are architected. Firstly, servers (whether it’s a physical box in your office or a VPS...
by AmkSoft
Sat Mar 11, 2017 5:21 pm
Forum: General category
Topic: Is there a StringList object in fnxbasic?
Replies: 3
Views: 26038

Is there a StringList object in fnxbasic?

What do you mean by "String list"?
Can`t you use a string array?
by AmkSoft
Tue May 31, 2016 2:59 pm
Forum: General category
Topic: Set Focus On CheckListBox after Running Exe File
Replies: 1
Views: 15066

Set Focus On CheckListBox after Running Exe File

Hi Darren,thats right, the form loosen focus because you are giving the focus to an other program usung the RUN command.What you could do is in the method where you do the run:first store/remember what form/checkbox has the fosus now,then do the RUN command.After the RUN command has finnised set the...
by AmkSoft
Sat May 28, 2016 4:45 pm
Forum: examples
Topic: Webserver serving multiple connections simultanous
Replies: 2
Views: 32203

Webserver serving multiple connections simultanous

Hi,Is it possible in FnxBasic to create a Webserver serving multiple connections simultanously (using the "ServerSocket")?As far i can see it can handle multiple connections at the same time (there is an index on a socketconnection). This works fine as the client does the connect+disconnec...