Search found 233 matches

by nimdays
May 09, 2020 5:14
Forum: Sources, Examples, Tips and Tricks
Topic: FLTK GUI without C wrapper
Replies: 8
Views: 2961

Re: FLTK GUI without C wrapper

I'll try later
by nimdays
Jun 30, 2019 3:48
Forum: Sources, Examples, Tips and Tricks
Topic: Open File Dlg with multiple selections
Replies: 4
Views: 6089

Re: Open File Dlg with multiple selections

The single selection is fine, however the multiple selection doesn't show the names after the dialog is closed
by nimdays
Jun 30, 2019 2:28
Forum: Libraries & Headers
Topic: FLTK-C-1.3.3 for FreeBASIC
Replies: 433
Views: 197977

Re: FLTK C for FreeBASIC Jan 09, 2017

Baptiste wrote: the example provided counts in tenth and I will wish to count in integers
is there anyone who can explain to me
thank you in advance
Baptiste, Add "Fl_ValuatorSetStep"

Code: Select all

...
var cnt1 = Fl_CounterNew(10,10,192,24,"counter 1")
Fl_ValuatorSetStep(cnt1, 1)
...
by nimdays
Jun 06, 2019 23:03
Forum: Sources, Examples, Tips and Tricks
Topic: Auto-complete input text [windows only]
Replies: 2
Views: 5188

Re: Auto-complete input text [windows only]

Could you provide a screenshot?
I typed "window" and nothing happened(winxp)
by nimdays
May 17, 2019 1:03
Forum: Sources, Examples, Tips and Tricks
Topic: Thorough search.
Replies: 3
Views: 4433

Re: Thorough search.

Nice one Searching . . . C:\FreeBASIC-1.06.0-win32\examples\manual\operator\is.bas C:\FreeBASIC-1.06.0-win32\examples\manual\udt\abstract1.bas C:\FreeBASIC-1.06.0-win32\examples\manual\udt\extends2.bas C:\FreeBASIC-1.06.0-win32\examples\manual\udt\override.bas C:\FreeBASIC-1.06.0-win32\examples\manu...
by nimdays
Dec 25, 2018 2:28
Forum: Community Discussion
Topic: Merry Christmas!
Replies: 11
Views: 2355

Re: Merry Christmas!

Merry Xmas ... Selamat Natal
by nimdays
Dec 06, 2018 0:15
Forum: Sources, Examples, Tips and Tricks
Topic: Get String Characters 4x Faster than Mid()
Replies: 83
Views: 9315

Re: Get String Characters 4x Faster than Mid()

dim as string * 32 z = "hello" dim as zstring ptr pz = @z[0] 'simpler: = @z pz[2][3]=asc("X") print z Just curious about acessing the index here. dim as string * 32 z = "hello" dim as zstring ptr pz = @z[0] 'simpler: = @z pz[2][3]=asc("X") print z ' and this ...
by nimdays
Dec 05, 2018 23:03
Forum: Community Discussion
Topic: Nominations for Forum Moderators
Replies: 70
Views: 15215

Re: Nominations for Forum Moderators

D.J.Peters

fxm

dodicat

MrSwiss


I think they are quite active around here.
by nimdays
Nov 19, 2018 23:49
Forum: Libraries & Headers
Topic: FLTK-C-1.3.3 for FreeBASIC
Replies: 433
Views: 197977

Re: FLTK C for FreeBASIC Jan 09, 2017

Nice to see visual FLTK
by nimdays
Nov 19, 2018 23:33
Forum: Beginners
Topic: About mod and then
Replies: 6
Views: 1635

Re: About mod and then

Thanks again Admin.
by nimdays
Nov 12, 2018 23:47
Forum: Beginners
Topic: About mod and then
Replies: 6
Views: 1635

Re: About mod and then

Thank you All, I read somewhere that it's not mathematically correct and the remainder should be positive The Then keyword should be separated by a space. You got away with it by enclosing it with a literal and a question mark. Probably a bug of sorts, but not worth fixing. (same as end if endif) Yo...
by nimdays
Nov 12, 2018 8:31
Forum: Beginners
Topic: About mod and then
Replies: 6
Views: 1635

About mod and then

Hello,I'm curious about this

Code: Select all

dim as integer x = -10
?x mod 3  ' -1
if x<0then?x
sleep
About the mod operator, the result should be negative or positive?
And about "then", No separator is fine, It's not an operator like "<,>,etc"

Thanks
by nimdays
Oct 21, 2018 2:36
Forum: Windows
Topic: please test my crappy owner-draw menu
Replies: 36
Views: 11281

Re: please test my crappy owner-draw menu

From the manual,RGB function returns an unsigned integer in the format &hAARRGGBB