Search found 1839 matches

by VANYA
May 23, 2023 3:15
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

Hi Down0901!

Yes, the complement after AS is always uppercase (type names are always uppercase).
by VANYA
May 15, 2023 17:49
Forum: Community Discussion
Topic: FreeBASIC 1.10.1 Release Discussion
Replies: 154
Views: 28206

Re: FreeBASIC 1.10.0 Release Discussion

Thank you for the continued work on the compiler! This is very hard work, I appreciate it and I think others too.
by VANYA
May 09, 2023 6:08
Forum: Projects
Topic: cedit (windows , linux , freebsd , dos)
Replies: 11
Views: 5403

Re: cedit (windows , linux , freebsd , dos)

Updated (actually it's 2 updates in one ad): from 05.03.2023 1) added key redefinitions for terminals rxvt, st 2) fixed key buffer full bug in Linux (appears on older machines) 3) on Linux, the editor is built with static libtinfo, and this allows you to work without the need to install libtinfo5 (i...
by VANYA
Apr 18, 2023 5:40
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

Update: 1) fixed jepalza plugin (thanks) 2) fixed Spanish localization file (thanks jepalza) 3) the functionality of auto-completion for the WITH statement has been added to the parser. That is: Type Q i as Long End Type dim p as Q with p ' when typing "." или "->" , there will b...
by VANYA
Apr 09, 2023 4:06
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

Ok, thanks jepalza!
by VANYA
Apr 07, 2023 7:41
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

Update: 1) fixed poseidonOutline plugin (when the plugin settings file did not exist, it led to CRASH) 2) added check in TQUEUE for the validity of the pointer just in case 3) on a Windows 7 Starter system, it was found that the linker could not link the plugin with libraries from the project root. ...
by VANYA
Mar 28, 2023 8:35
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

Another request to consider would be a way to move a line of code up and down? For instance in visual studio I often use the key combination "alt + up" or "alt + down" and it then moves the current line of code the caret is on to either the next or previous line. You could also ...
by VANYA
Mar 27, 2023 4:44
Forum: DOS
Topic: OPEN+KEYBOARD=CRASH
Replies: 5
Views: 3001

Re: OPEN+KEYBOARD=CRASH

Hi Jeff! At the beggining of the program, try putting: Code: Select all var dummy = multikey(1) sleep 1000, 1 It does not help. The program still crashes with an error. In my actual program, I had to throw out the file handling, delay, and key functions. I replaced them with C language functions. --...
by VANYA
Mar 27, 2023 4:23
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

Hi all! I also look often on your website ( https://users.freebasic-portal.de/freebasicru/ ), using the Google translation into English. Great work, a really rich source for FreeBasic programmers. For me, the article series "FreeBasic + API" is the best Windows API tutorial I found up to n...
by VANYA
Mar 26, 2023 6:30
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

@jepalza Can be made easier: 1) Create a settings file for your plugin in the plugins folder, and this will become the ability to change the color settings and the timer delay. This can be done directly in your plugin (in the InitPluginProc procedure). Sample code template: function InitPluginProc ....
by VANYA
Mar 26, 2023 3:16
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

@Lothar Schirm , I'm glad you like it
by VANYA
Mar 25, 2023 6:02
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55392

Re: IUP_FB_EDITOR (simple development environment)

Hi jepalza! You can write a plugin and I will add it to the editor distribution. There are examples in the plugins folder, everything is pretty simple there. Kuan Hsu created 1 plugin SARG created 2 plugins And they are in the editor's distribution. In your case, you just need to start the timer in ...
by VANYA
Mar 18, 2023 4:24
Forum: Linux
Topic: STATIC and SHARED Libraries linking problem
Replies: 5
Views: 2845

Re: STATIC and SHARED Libraries linking problem

I'm talking about the fact that it would be good to get rid of unnecessary dependencies for both the compiler and the programs created in it. You can get rid of libtinfo 5 or 6 at least for the compiler. Maybe it can be done even for rtlib. But as I understand it, the issue of getting rid of unneces...
by VANYA
Mar 17, 2023 2:43
Forum: Linux
Topic: STATIC and SHARED Libraries linking problem
Replies: 5
Views: 2845

Re: STATIC and SHARED Libraries linking problem

I won't be able to list the distributions that don't contain libtinfo5 now, because I did the tests 1-2 years ago, but at least the guys listed some of them here: https://www.freebasic.net/forum/viewtopic.php?t=31416 Yes, I saw your answer in this thread that the libraries can be found on third part...
by VANYA
Mar 16, 2023 6:39
Forum: Linux
Topic: STATIC and SHARED Libraries linking problem
Replies: 5
Views: 2845

STATIC and SHARED Libraries linking problem

Many people have noticed that the compiler requires libtinfo.so.5 On some distributions this can be installed from the repository, but on others it is not, and sometimes hard to find. What do compiler developers do? Build the compiler with libtinfo.so.6? But then it won't work on older distributions...