Search found 76 matches

by AZJIO
Sat Jun 21, 2025 8:13 am
Forum: General Discussion
Topic: SpiderBasicIDE + TabBarGadget
Replies: 0
Views: 1988

SpiderBasicIDE + TabBarGadget

Due to the fact that the source code is open, I compiled SpiderBasic with black tabs and made changes to the Language.pb file to make the window menu and compiler settings in my native language. See here
by AZJIO
Tue Oct 15, 2024 11:42 pm
Forum: General Discussion
Topic: Why this forum is lightyears far from PureBasic forum?
Replies: 15
Views: 38524

Re: Why this forum is lightyears far from PureBasic forum?

Now you can search on two forums

Code: Select all

word site:forums.spiderbasic.com site:purebasic.fr
by AZJIO
Mon Mar 25, 2024 2:17 am
Forum: Coding Questions
Topic: Scaling png (?)
Replies: 6
Views: 6427

Re: Scaling png (?)


how can ?
is it a spidebasic "app" ? hwo do you display image ? in a image gadget ?

An image on an html page that is open in WebGadget. The files are located in the "Data" resource folder.
You can follow the links and download several files as an example. One of the archives (PB_User) contains ...
by AZJIO
Tue Mar 19, 2024 11:15 pm
Forum: Coding Questions
Topic: Scaling png (?)
Replies: 6
Views: 6427

Re: Scaling png (?)


if its an image inside YOUR app("website") then its easy to add controls, like + button next to it to do whatever you want

I've been trying to do what I want all day, but nothing has worked out.
I was given other ideas that could well replace my idea, that is, scaling the entire window and we ...
by AZJIO
Sun Mar 17, 2024 1:07 pm
Forum: Coding Questions
Topic: Scaling png (?)
Replies: 6
Views: 6427

Re: Scaling png (?)

This is not exactly what I want. I'm displaying HTML pages in a webgadget. Many people immediately want to enlarge it, but nothing happens, the text and pictures remain in their original size. One person who liked the idea of ​​a help file decided to look for these features himself and found some ...
by AZJIO
Mon Mar 04, 2024 9:30 pm
Forum: Coding Questions
Topic: Scaling png (?)
Replies: 6
Views: 6427

Scaling png (?)

At work, I have electrical circuit diagrams for equipment. Can I create an application where I can select a schema and scale it? Nowadays, copying an archive of files is not convenient for everyone; everyone needs an application to press buttons.
by AZJIO
Mon Feb 19, 2024 6:28 pm
Forum: Coding Questions
Topic: TreeGadget Font & Color
Replies: 2
Views: 2718

Re: TreeGadget Font & Color


Custom fonts work, but line spacing seems fixed (see example). Is there a way to change line spacing with big fonts?

Non-standard solution - many things can be solved by customizing the theme. In the compiler settings ("Compiler options") you can select a theme. Initially there are two themes ...
by AZJIO
Mon Feb 19, 2024 7:11 am
Forum: General Discussion
Topic: Translating Regular Expression Errors
Replies: 2
Views: 7644

Re: Translating Regular Expression Errors

PCRE uses an error code
Error return values from pcre_exec()

If pcre_exec() fails, it returns a negative number. The following are
defined in the header file:

PCRE_ERROR_NOMATCH (-1)

The subject string did not match the pattern.

PCRE_ERROR_NULL (-2)

Either code or subject was passed as ...
by AZJIO
Thu Feb 15, 2024 7:42 pm
Forum: Coding Questions
Topic: ExtractRegularExpression, but only groups (?)
Replies: 0
Views: 11162

ExtractRegularExpression, but only groups (?)

How to transform the code to get only words matching a regular expression.
The first code works correctly.
var re = /^.*?([a-zа-яё\d_]*bi[a-zа-яё\d_]*).*?\|.+?\|.+?$/mgi;
var str="_arraybin|_ArrayBin|func\_ArrayBin\n_arraycom|_ArrayCom|func\_ArrayCom\n_arrayconc|_ArrayConc|func\_ArrayConc";
var ...