Search found 2888 matches
- Feb 19, 2019 1:41
- Forum: Community Discussion
- Topic: Building FreeBASIC 1.06 Release
- Replies: 32
- Views: 1897
Re: Building FreeBASIC 1.06 Release
The direct download link is http://www.godevtool.com/Gorc.zip and in theory should give you the same issue, unless the file was compromised by its brief visit to my build system. Thanks for the link, this worked without problems (no message from Avira). It seems, it's related to the build process, ...
- Feb 18, 2019 22:27
- Forum: Community Discussion
- Topic: Building FreeBASIC 1.06 Release
- Replies: 32
- Views: 1897
Re: Building FreeBASIC 1.06 Release
Does Avira remove it during a scan? Or just when it gets executed? No, the removal is instant, when extracting the .7z (with 7zip File Manager). It says, it's been put into "quarantine" ... Last time IIRC, I've sent it to manufacturer, who confirmed "false positive" and, adjuste...
- Feb 18, 2019 20:28
- Forum: Community Discussion
- Topic: Building FreeBASIC 1.06 Release
- Replies: 32
- Views: 1897
Re: Building FreeBASIC 1.06 Release
Avira (anti virus) removes GoRC.exe, in both WIN32/WIN64, due to (probably) false positive.
Had that IIRC, with FBC's 1.04.0 too ...
(Probably works also, with the GoRC version from 1.05.0, as workaround.)
Had that IIRC, with FBC's 1.04.0 too ...
(Probably works also, with the GoRC version from 1.05.0, as workaround.)
- Feb 09, 2019 15:59
- Forum: Beginners
- Topic: How to reset the value when using input
- Replies: 22
- Views: 406
Re: How to reset the value when using input
Leave it, as is ... (aka: no need for change)
Reason: the only person here, that has mastered the Art of complexifying everything,
instead of keeping simple things the way they are, should not be the "yardstick" ...
Reason: the only person here, that has mastered the Art of complexifying everything,
instead of keeping simple things the way they are, should not be the "yardstick" ...
- Feb 09, 2019 15:14
- Forum: Beginners
- Topic: How to reset the value when using input
- Replies: 22
- Views: 406
Re: How to reset the value when using input
To get back OT (... when using input), by leaving it to input, to deal with it: Function main_menu() As String Dim As String choice, room = "" While room = "" ' run until we have a useful answer Cls choice = "" ' assure a empty string Print "welcome to this thing&q...
- Feb 07, 2019 14:10
- Forum: Tips and Tricks
- Topic: Image Painting Demos [Windows only]
- Replies: 22
- Views: 626
Re: Image Painting Demos [Windows only]
UEZ wrote:Please do not reply such comments in my topic anymore.
No problem, provided that you in future, keep your "Libraries code" out of all threads,
that are not your own ... because that's become very, very annoying!
- Feb 07, 2019 13:37
- Forum: Documentation
- Topic: Windows bug for small screens / fullscreen
- Replies: 24
- Views: 554
Re: Windows bug for small screens / fullscreen
Well then, that seems to confirm the issue being related to: high DPI settings ...
- Feb 07, 2019 13:27
- Forum: Tips and Tricks
- Topic: Image Painting Demos [Windows only]
- Replies: 22
- Views: 626
Re: Image Painting Demos [Windows only]
You may want to become a "Programmer" and, not just stay put as "Library Linker".UEZ wrote:Why?
- Feb 07, 2019 13:21
- Forum: Documentation
- Topic: Windows bug for small screens / fullscreen
- Replies: 24
- Views: 554
Re: Windows bug for small screens / fullscreen
Try 100% (M$'s recommendations are quite useless sometimes) because:
you can, at any later stage change back, if you don't like what you see ...
you can, at any later stage change back, if you don't like what you see ...
- Feb 07, 2019 13:04
- Forum: Tips and Tricks
- Topic: Image Painting Demos [Windows only]
- Replies: 22
- Views: 626
- Feb 07, 2019 12:36
- Forum: Documentation
- Topic: Windows bug for small screens / fullscreen
- Replies: 24
- Views: 554
Re: Windows bug for small screens / fullscreen
Seems to me, to be a "high DPI" issue, rather than a bug.
Check Windows settings ... (if NOT set to: 100%)
Never had it in 1920 x 1080 (100%), but with 3200 x 1800 display.
(setting here, is 150%)
Check Windows settings ... (if NOT set to: 100%)
Never had it in 1920 x 1080 (100%), but with 3200 x 1800 display.
(setting here, is 150%)
- Feb 04, 2019 15:29
- Forum: Hardware Interfaces / Communication
- Topic: How can I listen and serve information over a TCP port? [Windows]
- Replies: 4
- Views: 238
Re: How can I listen and serve information over a TCP port? [Windows]
However, I've found whatever it does can be unreliable on some machines, and fail to return anything. Well, the first thing I'd investigate, whould be: "are my assuptions" regarding the way, the agent is "expected" to react, correct? (may not be the case) Before that, I'd not ev...
- Feb 04, 2019 12:33
- Forum: Libraries
- Topic: libtcc 0.9.26 dynamic Windows Linux 32/64-bit.
- Replies: 7
- Views: 1407
Re: libtcc 0.9.26 dynamic Windows Linux 32/64-bit.
@gothon, your criticism below, in point 3) has the facts 'the wrong way around' , because: C's 'int' = FB's 'Long' (both 32 bit, fixed size) and, C's 'long' = FB's 'Integer' (both dynamic sizing, aka: Ptr size), exception is: WIN64 (API) See also: (data-type) comparison table, in the FB-Manual
- Feb 03, 2019 0:19
- Forum: General
- Topic: RND breadth
- Replies: 38
- Views: 650
Re: RND breadth
You'll just have to realize, that it in fact does, nothing to be fixed, therefore.
Btw. the max. value of ULongInt = 2 ^ 64 - 1 or,
ULongInt = &hFFFFFFFFFFFFFFFF
Btw. the max. value of ULongInt = 2 ^ 64 - 1 or,
ULongInt = &hFFFFFFFFFFFFFFFF
- Feb 03, 2019 0:05
- Forum: General
- Topic: RND breadth
- Replies: 38
- Views: 650
Re: RND breadth
if a do 512 loops of Int( RND * 256 ) it should chose each of 256 values , at least once.. No, this now relates to the randomizers randomness, meaning, you cannot know when a certain number appears. The only guaranteed fact is, that it eventually will appear ... provided, you run the randomizer for...