Posts: 451
Threads: 34
Likes Received:
359 in 246 posts
Likes Given: 178
Joined: Aug 2023
Reputation:
17
04-23-2024, 04:25 PM
(This post was last modified: 04-23-2024, 05:07 PM by litdev.)
I like bugs - lets have more!
This is tricky and due to the property edit box still active when the camnvas is clicked. Click on another property first to finish editing before clicking the canvas area.
EDIT
Think I found a way to fix it.
Posts: 451
Threads: 34
Likes Received:
359 in 246 posts
Likes Given: 178
Joined: Aug 2023
Reputation:
17
04-26-2024, 11:29 AM
(This post was last modified: 04-26-2024, 11:31 AM by litdev.)
ZS,
Yep this looks like an issue. SB-Prime does use xml for intellisense, but also the dll marks some methods as "HideFromIntellisense". This seemss to not be working correctly in SB-Prime.
The issue is that SB-Prime intellisense checks this for methods/properties/events but not at the object/type level.
Upload of SB-Prime hopefully fixes this!
Posts: 451
Threads: 34
Likes Received:
359 in 246 posts
Likes Given: 178
Joined: Aug 2023
Reputation:
17
04-26-2024, 04:06 PM
(This post was last modified: 04-26-2024, 06:48 PM by litdev.)
Yeah, it finds the name and thinks it is an object not a variable. Don't use keyworks as variable names - this is a quirk of compiler this is even allowed.
This would also probably confuse the debugger in reverse, showing the value of variable when hover over object of same name.
The mouse hover over some text doesn't do much to understand context, only the name and brings up intellisense accordingly (it can tell that a method is associated with an object by dot before to find the right intellisense).
I made a change (uploaded) to detect the dot after an object to determine if a string is a variable or object.
Thanks.
Posts: 317
Threads: 37
Likes Received:
108 in 85 posts
Likes Given: 214
Joined: Dec 2023
Reputation:
7
04-29-2024, 05:06 AM
(This post was last modified: 04-29-2024, 05:08 AM by z-s.)
I Am Getting A Bug In Aliase.
When I Use Aliase For FCXml As Xml And many other aliase name the Intellisense is not shown.
Then I Cleared Aliase And Restarted SB-Prime No Intelnise For FCXml Object Also.
ZS
Posts: 451
Threads: 34
Likes Received:
359 in 246 posts
Likes Given: 178
Joined: Aug 2023
Reputation:
17
Uploaded a new version where I have hopefully fixed a long term bug which I have been working on which has been quite tricky/fun. It is the reporting of compile errors when there are extensions. The difficulties were to do with injecting info about extensions to run the compiler exe as a dll method. Just running the compiler as an exe doesn't give any details about errors, just how many there were.