Search found 1324 matches
- Oct 20, 2019 12:07
- Forum: Community Discussion
- Topic: Audio library for FreeBasic - Features
- Replies: 77
- Views: 12765
Re: Audio library for FreeBasic - Features
And why make additional inclusions in the form of "# Include"? Why can not you make direct use of sound commands like in gfxlib? All of QB's gfx statements were added by default. And a few new gfx statements were added later. Even then it was noticed that global namespace pollution was go...
- Oct 13, 2019 17:24
- Forum: Community Discussion
- Topic: Audio library for FreeBasic - Features
- Replies: 77
- Views: 12765
Re: Audio library for FreeBasic - Features
But, for the fb dialect, requiring the #include is a good choice in my opinion. coderJeff! And why make additional inclusions in the form of "# Include"? Why can not you make direct use of sound commands like in gfxlib? And yes, I am very glad that you as a developer, finally paid attenti...
- Oct 10, 2019 10:29
- Forum: Linux
- Topic: window9.bi on Lubuntu
- Replies: 1
- Views: 277
Re: window9.bi on Lubuntu
On various Linux distributions, the installation is different the number (and sometimes name) of the installed librarys. With regard to the validity\\of the irregularity: if your code compiles , then all is set correctly. Extra installed library , if you installed, you can always remove. I try to pu...
- Oct 10, 2019 4:49
- Forum: Libraries
- Topic: FBGUI library for Windows 2
- Replies: 791
- Views: 141405
Re: FBGUI library for Windows 2
I've updated the help file as you requested and edited my post accordingly Thank you! ------------- I have updated the library. What was done: 1) Fixed a few bugs 2) Added English help file , courtesy of the translated user-RNBW. 3) Spent recompiling the library under the current version of the com...
- Oct 09, 2019 16:02
- Forum: Libraries
- Topic: FBGUI library for Windows 2
- Replies: 791
- Views: 141405
Re: FBGUI library for Windows 2
Hi all! @RNBW Thank you very much! I know that translation is very time-consuming operation, I'm glad you have the patience. Please make changes to english help file, to the page: "Information about the developers" . You must be referred there as a translator in the help file. I also forgo...
- Sep 22, 2019 4:39
- Forum: Libraries
- Topic: FBGUI library for Windows 2
- Replies: 791
- Views: 141405
Re: FBGUI library for Windows 2
RNBW wrote:====================================================
Edited 21 September 2019: Added Font, Help and Image.
The link below has been updated to access the updated file.
====================================================
Cool!
- Sep 03, 2019 13:11
- Forum: Community Discussion
- Topic: Audio library for FreeBasic - Features
- Replies: 77
- Views: 12765
Re: Audio library for FreeBasic - Features
I understand. I'll wait for your library will be included in the official delivery of the compiler. Good luck!
- Sep 02, 2019 5:06
- Forum: Community Discussion
- Topic: Audio library for FreeBasic - Features
- Replies: 77
- Views: 12765
Re: Audio library for FreeBasic - Features
Hi angros47! I tried the function "SOUND". Everything works, but strange to assign function to a signal. The usual syntax has always been: SOUND(freguency, duration), and you: SOUND(func, duration) --------------------- For those who are interested , simple example using "SOUND":...
- Aug 28, 2019 16:25
- Forum: Community Discussion
- Topic: Audio library for FreeBasic - Features
- Replies: 77
- Views: 12765
Re: Audio library for FreeBasic - Features
Try something like: SoundmidiSet () var Midi=CreateMidi() PLAY Midi,"T120<<e8e8f8g8g8f8e8d8c8c8d8e8e8d12d4" PLAY Midi,"e8e8f8g8g8f8e8d8c8c8d8e8d8c12c4" PLAY Midi,"d8d8e8c8d8e12f12e8c8d8e12f12e8d8c8d8p8" PLAY Midi,"e8e8f8g8g8f8e8d8c8c8d8e8d8c12c4" SaveMidi &qu...
- Aug 28, 2019 14:15
- Forum: Community Discussion
- Topic: Audio library for FreeBasic - Features
- Replies: 77
- Views: 12765
Re: Audio library for FreeBasic - Features
Hi angros47! I did not use never team PLAY , but tried to ready the listing notes (example took from here ): #include "sfx.bi" #inclib "fbsfx" SoundmidiSet () PLAY "T120<<e8e8f8g8g8f8e8d8c8c8d8e8e8d12d4" PLAY "e8e8f8g8g8f8e8d8c8c8d8e8d8c12c4" PLAY "d8d8e8...
- Aug 28, 2019 2:41
- Forum: Community Discussion
- Topic: FreeBASIC 1.07 Release Discussion
- Replies: 43
- Views: 6609
Re: FreeBASIC 1.07.0 Release Discussion
Thanks for the new version!
- Aug 16, 2019 4:39
- Forum: Libraries
- Topic: FBGUI library for Windows 2
- Replies: 791
- Views: 141405
Re: FBGUI library for Windows 2
I am providing a link to the conversion of Vanya's chm help file to English as far as I have got
Half the help is translated , great!
Windows9 Linux resizeWindowSub "cdecl" are missing !
Yes, it is a omission , thanks!
- Jul 24, 2019 17:41
- Forum: Libraries
- Topic: How to install and use IUP library in Linux
- Replies: 3
- Views: 3443
Re: How to install and use IUP library in Linux
Hi rnbas!
You're running a 32-bit version of Linux, but put yourself in the system is a 64-bit version IUP. The latest version of IUP for x86 was 3.21.
You're running a 32-bit version of Linux, but put yourself in the system is a 64-bit version IUP. The latest version of IUP for x86 was 3.21.
- Jun 14, 2019 4:26
- Forum: Libraries
- Topic: FBGUI library for Windows 2
- Replies: 791
- Views: 141405
Re: FBGUI library for Windows 2
RNBW wrote:At the moment I have both English and Russian versions in the help file. Would you prefer that I left it like that or keep them separate. It's easy either way. All I need do is delete the Russian version to make it all English.
Hi RNBW!
In my opinion, it is better separately.
- Jun 08, 2019 15:00
- Forum: Libraries
- Topic: FBGUI library for Windows 2
- Replies: 791
- Views: 141405
Re: FBGUI library for Windows 2
Hi enform! I see you have replaced Functions by Subs in the case of AddListBoxItem and SetItemLstBoxText , but AddListBoxItem returned the item number in the default mode AddListBoxItem(1,"String") and SetItemLstBoxText returned Zero in case of error , I think . A bit annoying in some case...