Hello!
source code:
l=100
Debug (l>192)
Debug (100>192)
Result:
192
Is it a bug?
How it can be used in expressions?
For example:
a=a+(b>100)*30
This expression doesn't work.
Is it bug?
Re: Is it bug?
It's not a bug - it's an unsupported expression.
Search for "boolean expression" to get more infos about this.
A workaround:
Search for "boolean expression" to get more infos about this.
A workaround:
Code: Select all
Macro Is(boolean)
(#False Or (boolean))
EndMacro
l=100
Debug Is(l > 192)
Debug Is(100 > 192)
Debug Is(220 > 170)[Dynamic-Dialogs] - create complex GUIs the easy way
[DeFlicker] - easily deflicker your resizeable Windows
[WinFX] - Window Effects (incl. 'click-through' Window)
[DeFlicker] - easily deflicker your resizeable Windows
[WinFX] - Window Effects (incl. 'click-through' Window)
Re: Is it bug?
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Re: Is it bug?
He doesn't seems to remember Verry Verry Well about his own questions than.c4s wrote:exactly the same was asked a few hours ago: http://www.purebasic.fr/english/viewtop ... =4&t=44520
[Dynamic-Dialogs] - create complex GUIs the easy way
[DeFlicker] - easily deflicker your resizeable Windows
[WinFX] - Window Effects (incl. 'click-through' Window)
[DeFlicker] - easily deflicker your resizeable Windows
[WinFX] - Window Effects (incl. 'click-through' Window)
-
VeryVeryWell
- User

- Posts: 35
- Joined: Sat Jun 19, 2010 1:41 pm
Re: Is it bug?
It is question of my friendPureLust wrote:He doesn't seems to remember Verry Verry Well about his own questions than.c4s wrote:exactly the same was asked a few hours ago: http://www.purebasic.fr/english/viewtop ... =4&t=44520
He asked me - I asked you and he asked you too
perfect.... thanks

