Search found 48 matches

by WQ1980
Nov 28, 2021 21:21
Forum: Beginners
Topic: lists,vectors,dictionaries
Replies: 9
Views: 1916

Re: lists,vectors,dictionaries

FreeBasic containers (map , vector , list , queue , stack)
viewtopic.php?f=8&t=29320
by WQ1980
May 09, 2020 23:46
Forum: Projects
Topic: IUP_FB_Editor+ - fork of IUP_FB_Editor
Replies: 8
Views: 6371

Re: IUP_FB_Editor+ - fork of IUP_FB_Editor

Dear WQ1980; Thanks for your quick reply. 1. In Options -> Fonts, I can't select a font. 2. In Options -> Colors, I can't change the color. My operating system is Windows 10 64bit. I am able to select and set items using arrow keys and Enter key. I would like to select with the mouse click. Thanks ...
by WQ1980
May 09, 2020 11:45
Forum: Projects
Topic: IUP_FB_Editor+ - fork of IUP_FB_Editor
Replies: 8
Views: 6371

Re: IUP_FB_Editor+ - fork of IUP_FB_Editor

1. In Options -> Fonts, I can't select a font. 2. In Options -> Colors, I can't change the color. Very strange What operating system? Windows or Linux? x32 or x64? 3. I want the help to be displayed when I place the cursor on a keyword in the editor and press F1. "Settings" -> "Path ...
by WQ1980
May 08, 2020 12:19
Forum: Projects
Topic: IUP_FB_EDITOR (simple development environment)
Replies: 175
Views: 54736

Re: IUP_FB_EDITOR (simple development environment)

Dear VANYA; I want the first letter of the keyword to be uppercase and the second and subsequent letters to be lowercase. Thank you for your consideration. In IUP_FB_EDITOR+ (fork of IUP_FB_EDITOR, https://www.freebasic.net/forum/viewtopic.php?f=8&t=28375) In file \keywords\autocase_list List o...
by WQ1980
May 08, 2020 12:06
Forum: Projects
Topic: IUP_FB_Editor+ - fork of IUP_FB_Editor
Replies: 8
Views: 6371

Re: IUP_FB_Editor+ - fork of IUP_FB_Editor

Version 0.1.2

- fixed several bugs.

Same links:
Download all version + source code:
https://www.mediafire.com/folder/hxhjklo3hft0h/fbnp%2B
https://cloud.mail.ru/public/WyWt/3CPm8wAPk
by WQ1980
Apr 24, 2020 14:56
Forum: Linux
Topic: Short linux program to download files from the internet
Replies: 4
Views: 1934

Re: Short linux program to download files from the internet

Helium5793 wrote:Today I am trying to locate a simple program in fb in linux to download files from the internet. I searched the linux section here but found nothing. Anybody have something like this they would share?
Thanks,
John
viewtopic.php?f=7&t=23421&p=207304
by WQ1980
Mar 07, 2020 19:53
Forum: Projects
Topic: IUP_FB_Editor+ - fork of IUP_FB_Editor
Replies: 8
Views: 6371

IUP_FB_Editor+ - fork of IUP_FB_Editor

Another IDE for Freebasic, IUP_FB_Editor+ IUP_FB_Editor+ is a fork of old version of IUP_FB_Editor from 2017 Differences between IUP_FB_Editor+ 0.1.1 from IUP_FB_Editor (2017): - mechanism for saving and loading settings has been redone - the program will be able to load and work even if there is no...
by WQ1980
Jul 23, 2019 21:43
Forum: Beginners
Topic: Advantages of different GUI libraries
Replies: 18
Views: 12394

Re: Advantages of different GUI libraries

IUP + CD http://webserver2.tecgraf.puc-rio.br/cd/
cross-platform, 64bit + 32bit, static binding
by WQ1980
Feb 02, 2019 18:13
Forum: Libraries Questions
Topic: iup+cd crash, how to fix?
Replies: 3
Views: 1708

Re: iup+cd crash, how to fix?

oyster can destroy canvas can erase canvas Function redraw_cb Cdecl (ByVal ih As Ihandle Ptr) As Long Dim As cdCanvas Ptr cdcanvas=cdCreateCanvas(CD_IUP, ih) Dim As Integer ccw, cch ''cdCanvasActivate(cdcanvas) cdCanvasGetSize(cdcanvas, @ccw, @cch, NULL, NULL) cdCanvasForeground(cdcanvas, cdEncodeC...
by WQ1980
Jan 14, 2019 17:32
Forum: Libraries Questions
Topic: No german umlauts with libcurl
Replies: 25
Views: 7151

Re: No german umlauts with libcurl

In my libcurl examples url with https does not work
url with http work

Maybe
https://en.wikipedia.org/wiki/Punycode

converter url to punycode:
https://www.punycoder.com/
by WQ1980
Jan 14, 2019 16:51
Forum: Libraries Questions
Topic: No german umlauts with libcurl
Replies: 25
Views: 7151

Re: No german umlauts with libcurl

libcurl in general works fine here, but if I call a URL containing german umlauts (eg. https://de.wikipedia.org/wiki/Spezial:Zuf%C3%A4llige_Seite ) the receive buffer remains empty (seems to be a general problem with UTF-8-coded URLs). Does anyone know how to get it working? Or maybe another librar...
by WQ1980
Dec 13, 2018 11:30
Forum: Sources, Examples, Tips and Tricks
Topic: Insert/Replace String procedures
Replies: 38
Views: 5770

Re: Insert/Replace String procedures

Code: Select all

Dim Content As String
Dim ContentNew As ZString Ptr
Content="D:\Desktop\0.bmp"

ContentNew=ReplaceAllJ(Content, "0", "1")
?*ContentNew '' -> D:\Desktop\1.bmp#Щkи6
returns a damaged string
if len(searchstring) = len(replacestring) ...
by WQ1980
Dec 13, 2018 11:24
Forum: Projects
Topic: FreeBasic IDE-poseidonFB(Update 2024.03.03)
Replies: 1283
Views: 361020

Re: FreeBasic IDE-poseidonFB(Update 2018.10.27)

Kuan Hsu wrote: Done at rev0.407, "Preference" -> "Editor" -> "Auto en-Keyboard Layout" -> "ON"(Windows only), next time start poseidonFB will force english layout~
Thanks!
by WQ1980
Dec 08, 2018 16:28
Forum: Projects
Topic: FreeBasic IDE-poseidonFB(Update 2024.03.03)
Replies: 1283
Views: 361020

Re: FreeBasic IDE-poseidonFB(Update 2018.10.27)

Haha, my system language is "Traditional Chinese", I use ctrl+space to change between different language. Let me check how "LoadKeyboardLayout" and "ActivateKeyboardLayout" work. freebasic code example: #Include Once "IUP/iup.bi" #Ifdef __FB_WIN32__ #Include ...