Search found 19 matches

by Jarlve
Sat Jun 30, 2018 10:42 am
Forum: Showcase
Topic: AZdecrypt Lite
Replies: 0
Views: 3871

AZdecrypt Lite

AZdecrypt Lite is a substitution solver app that runs in your web browser @ http://jarlve.vdm-service.be

Thanks to everyone who helped me out in the last couple of weeks. SpiderBasic rules. See the main project page for more information: http://www.zodiackillersite.com/viewtop ... =81&t=3953
by Jarlve
Sat Jun 30, 2018 9:15 am
Forum: Coding Questions
Topic: How to change color of CreateMenu items?
Replies: 0
Views: 2594

How to change color of CreateMenu items?

Hey,

I want to add light/dark theme to my program but cannot figure out how to change the color of CreateMenu. Is that possible and how?

Thanks.
by Jarlve
Thu Jun 28, 2018 10:46 am
Forum: Coding Questions
Topic: Ways to read a string one character at a time
Replies: 4
Views: 3618

Re: Ways to read a string one character at a time

Hey Peter,

My program needs to load and read a self structured ASCII/UTF8 file which has multiple lines. I do not understand what HTTPRequest does. I think it joins the lines together while adding a space between the strings of each line.

Furthermore it may seem that Mid is behaving strangely with ...
by Jarlve
Thu Jun 28, 2018 8:38 am
Forum: Coding Questions
Topic: Ways to read a string one character at a time
Replies: 4
Views: 3618

Ways to read a string one character at a time

Hello,

I am trying to resolve a HTTPRequest issue.

For that I wonder if there are other ways to read a string one character at a time besides using Mid:

Code: Select all

string$="SpiderBasic1 2 3"

For i=1 To Len(String$)
  Debug Mid(String$,i,1)
Next i
Thanks.
by Jarlve
Tue Jun 26, 2018 11:01 am
Forum: Coding Questions
Topic: CompilerIf
Replies: 2
Views: 2535

Re: CompilerIf

Thanks Peter.
by Jarlve
Tue Jun 26, 2018 8:55 am
Forum: Coding Questions
Topic: AddWindowTimer question
Replies: 0
Views: 2479

AddWindowTimer question

Hey all,

AddWindowTimer freezes when the SpiderBasic web app is not viewed in the browser's current open tab. This is an issue for my app as it relies on it to do its calculations periodically. And preferably also in the background. Any workaround?

Thanks.

Specifies the amount of time (in ...
by Jarlve
Tue Jun 26, 2018 7:26 am
Forum: Coding Questions
Topic: Web page link
Replies: 5
Views: 4103

Re: Web page link

Peter, my app uses a EditorGadget and it is possible to drag the HyperLink into the gadget which removes all of the buttons and shows this text in the Editor: http://127.0.0.1:9081/SpiderBasic_Compilation0.html
by Jarlve
Tue Jun 26, 2018 7:17 am
Forum: Coding Questions
Topic: CompilerIf
Replies: 2
Views: 2535

CompilerIf

This code is in my program and does not seem to be needed to make it work. Is it needed in some cases? What does it do?

Code: Select all

CompilerIf #PB_Compiler_OS<>#PB_OS_Web
Repeat
Event=WaitWindowEvent()
Until Event=#PB_Event_CloseWindow
CompilerEndIf
by Jarlve
Tue Jun 26, 2018 7:11 am
Forum: Coding Questions
Topic: Web page link
Replies: 5
Views: 4103

Re: Web page link

Okay, thank you for the explanation.

The color of the HyperLink text remains black. Or is that because it was already clicked? Though it does not change back to its supposed color after restarting the webpage.

Using "SetGadgetColor(5,#PB_Gadget_FrontColor,RGB(0,0,255))" as workaround.