Custom Query (3922 matches)
Results (379 - 381 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #670 | No Bug | Listviews with checkboxes doesn't work "properly"....in my opinion | ||
| Description |
I'm too lazy right now to take apart my code to show an example, so hopefully what I say is understandable. I set up a listview in conjunction with a WM_Notify function. When the CELL of the checkbox is clicked, it registers but the box isn't checked, which throws off my function. I believe that if the surrounding cell is clicked the checkbox should be checked as well. If this is not a "bug" I think this should be how it functions...unless there is a specific reason why it isn't like that. Note: As a workaround I tried to put in the function to check if the checkbox is checked after there is a register on that item and then check it if it isn't checked...so if someone clicks the surrounding cell...but that doesn't work at all. |
|||
| #672 | Duplicate | _StringAddThousandsSep | ||
| Description |
_StringAddThousandsSep(-10) returns 10, should be prefixed with negative sign (-10)? _StringAddThousandsSep(123456789123456789123456789.) returns 1.23456789123457, should be appended with e+026 (1.234567891234567e+026)? Simple fix with some if's at the end of the function. |
|||
| #673 | No Bug | Wrong priority of logic operators | ||
| Description |
True Or True And False return False, but equivalent expression True Or (True And False) return True |
|||
