Search found 1839 matches

by VANYA
Mar 02, 2023 5:33
Forum: Projects
Topic: cedit (windows , linux , freebsd , dos)
Replies: 11
Views: 5465

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

Updated:

Code optimization mainly on Windows. But on other platforms, this partially affected.
Now in Win9x the program works without braking and jerking. I found a solution in the FAR sources on how to solve this problem on older systems.
by VANYA
Feb 28, 2023 7:13
Forum: Windows
Topic: How to catch SIGPIPE
Replies: 7
Views: 1337

Re: How to catch SIGPIPE

signal(SIGSEGV, handler)
Does it work on Windows? I thought this could only work on Linux

For Windows, maybe this SetUnhandledExceptionFilter will work?
by VANYA
Feb 09, 2023 8:28
Forum: Projects
Topic: cedit (windows , linux , freebsd , dos)
Replies: 11
Views: 5465

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

Update:

Fixed bug Comments+UNDO|REDO in DOS
fixed incorrect save behavior for some operations (didn't display the save file dialog after changing the code using commenting and UNDO|REDO)
by VANYA
Feb 08, 2023 18:40
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55710

Re: IUP_FB_EDITOR (simple development environment)

Hi Roland! Another thing. This afternoon I played with the Windows version. I wonder if the relative path for the compiler is really supported: I didn't manage to make it work. Maybe I made a mistake in the path. But I have not seen any error message. Relative paths are only supported if $A is in th...
by VANYA
Feb 08, 2023 16:46
Forum: Community Discussion
Topic: FreeBASIC 1.09.0 Release
Replies: 256
Views: 53171

Re: FreeBASIC 1.09.0 Release

fxm wrote: Feb 08, 2023 15:07 or outright FreeBASIC-1.09.0-win32-gcc-5.2.0
Oh, I'm completely blind. After all, I looked at the existing archives, but missed the right one. Yes, this archive is suitable for Win98.

srvaldez , fxm
thank you very much!
by VANYA
Feb 08, 2023 12:16
Forum: Community Discussion
Topic: FreeBASIC 1.09.0 Release
Replies: 256
Views: 53171

Re: FreeBASIC 1.09.0 Release

@coderJeff! The latest compiler versions 1.08 and 1.09 can no longer work with old win95 , win98 , winME systems. Is this already a verdict? Because of the full linkage to new versions of GCC? If you did not know about it, then when compiling an example error: libwinpthread-1.dll linked with kernel3...
by VANYA
Feb 07, 2023 17:48
Forum: General
Topic: RETURN mixed with FUNCTION =
Replies: 3
Views: 538

Re: RETURN mixed with FUNCTION =

Thanks for the clarification fxm!
by VANYA
Feb 07, 2023 14:49
Forum: General
Topic: RETURN mixed with FUNCTION =
Replies: 3
Views: 538

RETURN mixed with FUNCTION =

Hi All! Please tell me why such a limitation in the compiler? type A extends object i as Long End Type function Test() as A dim p as A p.i = 10 if 1 then p.i = 20 function = p EndIf return p End function dim p as A = Test() ? p.i error 178: RETURN mixed with 'FUNCTION =' or EXIT FUNCTION (using both...
by VANYA
Feb 06, 2023 8:50
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 55710

Re: IUP_FB_EDITOR (simple development environment)

Update: 1) Added an update event when the code is collapsed (works correctly only with the vb lexer; the fb lexer still requires editing and recompiling IUP_SCINTILLA) 2) Fixed an error when loading a file (when it is on the disk, but access to it is closed for various reasons) 3) Added highlight th...
by VANYA
Feb 06, 2023 6:12
Forum: Projects
Topic: cedit (windows , linux , freebsd , dos)
Replies: 11
Views: 5465

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

Update: Added checks for pointers when allocating memory Improved UNICODE support: ---a) in linux|freebsd all characters should be displayed and there should be correct cursor indexing ---b) on windows it's hard to tell because the console has limited support for UNICODE. At least "Chinese Simp...
by VANYA
Jan 13, 2023 6:08
Forum: Projects
Topic: FreeBasic IDE-poseidonFB(Update 2024.03.03)
Replies: 1284
Views: 365004

Re: FreeBasic IDE-poseidonFB(Update 2022.11.01)

Kuan Hsu wrote: Jan 12, 2023 6:44 DONE
Thank you!
by VANYA
Jan 11, 2023 11:53
Forum: Projects
Topic: FreeBasic IDE-poseidonFB(Update 2024.03.03)
Replies: 1284
Views: 365004

Re: FreeBasic IDE-poseidonFB(Update 2022.11.01)

Hi Kuan Hsu! How is your health? I have a question: did you post the latest version of the modified Scintilla? I compiled libiup_scintilla.so from source codes with your changes from the link: https://bitbucket.org/KuanHsu/poseidonfb/downloads/modifed_scintilla.7z But the behavior is different when ...
by VANYA
Jan 05, 2023 11:30
Forum: Projects
Topic: cedit (windows , linux , freebsd , dos)
Replies: 11
Views: 5465

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

For some reason it's nice to use hahaha Please add an option to set the fbc path, I guess with something like this in the ini file would be fine compiler86 =path compiler64 =path and some shortcuts to use fbc in cedit ( compile/run/quick run ) an option to switch between x86 and x64 compiler? some ...
by VANYA
Jan 04, 2023 8:51
Forum: Projects
Topic: CHMVIEW
Replies: 19
Views: 7396

Re: CHMVIEW

Updated:

1) UNDO | REDO reworked because webkit internals didn't always work as they should. Made my implementation
2) Fixed a bug with encoding when the program is built with GTK3
by VANYA
Jan 01, 2023 7:04
Forum: Beginners
Topic: Simple GUI example ?
Replies: 17
Views: 3084

Re: Simple GUI example ?

You have to be sure that you follow the instructions exactly in the first posting for the library. It should then compile. Page dedicated to the library with some examples and screenshots: https://users.freebasic-portal.de/freeb ... start.html The installation of the library: Windows: 1) Put files ...