Search found 136 matches
- May 02, 2018 0:43
- Forum: General
- Topic: Сonsole polling
- Replies: 32
- Views: 2391
Re: Сonsole polling
See InKey() - and possibly MultiKey() used together with InKey().
- May 02, 2018 0:36
- Forum: Beginners
- Topic: It's a long way
- Replies: 25
- Views: 4066
Re: It's a long way
. BasicCoder2, how do we get a message to someone real at Google... "Hey Google! How about a translator for source code whose variable names, labels, and comments are written in a different language from our native language... (people languages)? You folks must already have an internal tool for...
- May 01, 2018 15:38
- Forum: Beginners
- Topic: It's a long way
- Replies: 25
- Views: 4066
Re: It's a long way
. Please, MrSwiss... it sounds to me like this is just a misunderstanding. I thought that Tourist Trap was only telling us that he would be of very little help if someone were to ask him to aid in documenting, a very technical project, where the discussion of the documentation was only in English. I...
- May 01, 2018 15:15
- Forum: Community Discussion
- Topic: Treasures lost or sleeping in old discussions
- Replies: 4
- Views: 759
Re: Treasures lost or sleeping in old discussions
. I'm with Roland on this one!!! I think we should probably start a new forum specifically for: "Does anyone have a copy of .... ?" Just starting at the very beginning of Tourist Trap's "the big review"... almost every post by 1000101 included a download link to his code - and th...
- May 01, 2018 14:50
- Forum: Community Discussion
- Topic: Rewriting code from scratch
- Replies: 8
- Views: 1886
Re: Rewriting code from scratch
. It's just the same as everything else that has a creative process... it's a *process*... and the process gets in the way of the process itself. It follows the theory that every moment of decision is a *cusp* in time. If I choose left, the future is left-oriented. If I choose to use doubles in the ...
- May 01, 2018 14:02
- Forum: Tips and Tricks
- Topic: Binary data visualization with OpenGL
- Replies: 5
- Views: 1243
Re: Binary data visualization with OpenGL
Nice... thanks! I just put that one in my toolbox.
- May 01, 2018 2:38
- Forum: General
- Topic: L (l) suffix Bug, not always "Long", WIN-FBC64
- Replies: 24
- Views: 1817
Re: L (l) suffix Bug, not always "Long", WIN-FBC64
. Hmmm... How to fix the issues may be an even bigger task than you thought coderJeff... these folks have done it... but *WOW*! Interesting reading. ACCU :: Correct Integer Operations with Minimal Runtime Penalties https://accu.org/index.php/articles/2344 ------------------------------- Solution: Th...
- Apr 30, 2018 20:13
- Forum: Tips and Tricks
- Topic: Binary data visualization with OpenGL
- Replies: 5
- Views: 1243
Re: Binary data visualization with OpenGL
. Interesting... I guess you inspected the binary files to figure out where the location of the data was that was being rendered, so that you could tell "what is what" in the image. Might be even more interesting to have the program inspect the data while it was reading it and create a key...
- Apr 30, 2018 19:37
- Forum: General
- Topic: performance - two types versus one combined type?
- Replies: 0
- Views: 810
performance - two types versus one combined type?
. Working on the PRNG. I have (3) ULONGINT members in a TYPE lcg32 - and a TYPE lcg64 that holds (2) instances of that lcg32 TYPE. type lcg32_dataset_t multiplier as ULongInt seed as ulongint increment as ulongint end type ' ' 32-bit x 2 ganged LCG type structure... type lcg32x2_dataset_t gen(1 to 2...
- Apr 26, 2018 5:10
- Forum: Tips and Tricks
- Topic: Ever box
- Replies: 17
- Views: 1889
Re: Ever box
.
Sorry BasicCoder2... I was going for funny... [smile]
Sorry BasicCoder2... I was going for funny... [smile]
- Apr 26, 2018 1:44
- Forum: Tips and Tricks
- Topic: Ever box
- Replies: 17
- Views: 1889
Re: Ever box
I think there's something wrong... it seems to go on for ever.
- Apr 26, 2018 1:36
- Forum: Projects
- Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.1.8 November 19, 2020)
- Replies: 722
- Views: 146932
Re: WinFBE FreeBASIC Editor for Windows (Updated April 19, 2018)
.
Is there a way to get the actual fbc.exe compiler command line that WinFBE is generating to compile my program?
I don't think there is an existing option anywhere for that is there?
Thanks!
.
Is there a way to get the actual fbc.exe compiler command line that WinFBE is generating to compile my program?
I don't think there is an existing option anywhere for that is there?
Thanks!
.
- Apr 26, 2018 1:33
- Forum: Projects
- Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.1.8 November 19, 2020)
- Replies: 722
- Views: 146932
Re: WinFBE FreeBASIC Editor for Windows (Updated April 19, 2018)
. kcvinu, WinFBE's autocomplete is not intellisense... WinFBE will autocomplete a block structure for you... type: DO<enter> ...and an indented blank line and the closing "LOOP" gets entered automatically for you, etc. It will also show you a parameter list for built-in FB functions as you...
- Apr 25, 2018 17:21
- Forum: General
- Topic: TYPEs with nested arrays of TYPEs - size?
- Replies: 5
- Views: 412
Re: TYPEs with nested arrays of TYPEs - size?
Aargh!!! I've been over-allocating every array I've ever defined in FB! I'd rather just learn everything I ever needed at once... instead of learning something new every day! [grin]
Thanks guys!
Thanks guys!
- Apr 25, 2018 17:05
- Forum: General
- Topic: TYPEs with nested arrays of TYPEs - size?
- Replies: 5
- Views: 412
Re: TYPEs with nested arrays of TYPEs - size?
Brain is passing gas... Isn't times(2) just times(0) and times(1)?