Search found 270 matches

by wallyg
Jan 18, 2022 23:08
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 981
Views: 346237

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.2.0 March 26, 2021)

This sounds like a very valuable addition. What about the situation where I have 10 files open and working on all 10 and something happens bad. The next time I start WinFBE will I get 10 separate questions? Maybe add a third/fourth button for "Save All" and "Ignore All" or some s...
by wallyg
Jan 14, 2022 6:54
Forum: Libraries & Headers
Topic: Last version of Gtk 3
Replies: 3
Views: 1098

Re: Last version of Gtk 3

Thank you. I downloaded the file you specified. It all seems to compile ok except for 2 errors Error 42: Variable not declared cairo_toy_font_face_create Error 42: Variable not declared cairo_font_face_destroy I have been using cario 1.16.0 which seems to be the latest version for a while. cairo_toy...
by wallyg
Jan 13, 2022 23:53
Forum: Libraries & Headers
Topic: Last version of Gtk 3
Replies: 3
Views: 1098

Last version of Gtk 3

GTK 3.24.13 is the last version that will ever be produced of GTK. Gtk 4.x is now the standard. I am not at the current time interested in 4.x and not sure if I ever will be. I am happy with 3.24.13. I have however run into a function call that was introduced in 3.22. It was not found in Gtk3.bi. I ...
by wallyg
Jan 13, 2022 22:14
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 981
Views: 346237

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.2.0 March 26, 2021)

A simple addition that would be nice is that on the Tool Bar that is at the top of the window, you have an Icon for SAVE of the current file. Would it be possible to add an additional Icon for File Menu's submenu SAVE ALL? As I have mentioned before I use GLADE all the time. It does have one nice fe...
by wallyg
Jan 12, 2022 23:22
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 981
Views: 346237

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.2.0 March 26, 2021)

Speaking of changes to WinFBE. I was wondering if, in the Explorer window, it was possible to create additional subsections so we have more than the 5 listed (Main, Resource, Header, Module, and Normal). It would be nice to be able to group sets of routines and only open one or two groups so the fil...
by wallyg
Jan 12, 2022 22:56
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 981
Views: 346237

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.2.0 March 26, 2021)

Hi Paul, I have tried to bring up two copies of WinFBE. The problem I have is that it comes up as FullScreen. Pressing the shrink window icon in the upper right corner makes the window only about 20 pixels smaller. I tried the Icon in the upper right corner of the Window title line and the "siz...
by wallyg
Jan 11, 2022 21:55
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 981
Views: 346237

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.2.0 March 26, 2021)

I was wondering if it was possible to have multiple source text windows visible at the same time. I use a 55" TV as a monitor and it would be nice to have several text files all open and visible on different areas of the tv. This way as I work on a routine, I could see the definition of the *.b...
by wallyg
Dec 24, 2021 5:55
Forum: General
Topic: New Feature Request: keyword parameters
Replies: 6
Views: 1046

Re: New Feature Request: keyword parameters

I appreciate the suggestion. But I have lots of routines with a lot fewer parameters that could use this feature. Making specific UDTs for every one of hundreds of routines just adds to the complexity and maintainability. This feature just makes it easier to use routines with even a couple of option...
by wallyg
Dec 23, 2021 22:44
Forum: General
Topic: New Feature Request: keyword parameters
Replies: 6
Views: 1046

New Feature Request: keyword parameters

I am sure we have all written procedures with long lists of parameters where most of them are optional and not used most of the time. I have one that has been around a long time and over time additional parameters have been added as options. The current version has 3 required parameters and 20 optio...
by wallyg
Dec 14, 2021 23:46
Forum: Windows
Topic: Newer version of SqlIte3
Replies: 2
Views: 994

Re: Newer version of SqlIte3

Thank you very much. I do not need the absolute latest, it was just something I wanted was not in the 3.8 version.

Wally
by wallyg
Dec 14, 2021 23:30
Forum: Windows
Topic: Newer version of SqlIte3
Replies: 2
Views: 994

Newer version of SqlIte3

The version of SqLite I have with FB 1.07 (WinFBE version) is #define SQLITE_VERSION "3.8.11.1" const SQLITE_VERSION_NUMBER = 3008011 #define SQLITE_SOURCE_ID "2015-07-29 20:00:57 cf538e2783e468bbc25e7cb2a9ee64d3e0e80b2f" On the SqLite website the current binaries are for 3.37.0 ...
by wallyg
Nov 16, 2021 18:24
Forum: General
Topic: Strange request for UDT constructor
Replies: 6
Views: 777

Re: Strange request for UDT constructor

Yes from a NEW operator. Type alpha As String nam . . . Declare Constructor(abc as string) End Type in Main program . . . dim as alpha ptr d = new alpha(expression returning "") . . . Constructor alpha(abc as String) . . . if abc = "" Then an error condition has been detected. Th...
by wallyg
Nov 16, 2021 17:19
Forum: General
Topic: Strange request for UDT constructor
Replies: 6
Views: 777

Strange request for UDT constructor

Within a Constructor for a UDT, I do some tests on the input arguments to the constructor. If I should find a problem or inconsistency with them, I would like to abort the construction, return any space allocated so far and return a NULL (0) pointer. Is this possible and if so what is the proper way...
by wallyg
Oct 19, 2021 20:44
Forum: General
Topic: Assembler error
Replies: 5
Views: 819

Re: Assembler error

I use gtk and gladetobac. It consists of over 250 files. A much smaller earlier version worked ok. If you are still interested, then when I get home tonight I will try to put together a zip file for you and email it to you.

Wally G
by wallyg
Oct 19, 2021 17:38
Forum: General
Topic: Assembler error
Replies: 5
Views: 819

Re: Assembler error

There is no -g. -g causes problems and makes debugger error abort. Late last night / early this morning, I retyped one line above, any line containing the phrase and one line after. I checked the strings and did not find any where wierd characters. It then compiled properly and now runs. I no longer...