quote:
Originally posted by SmokingCookie
I suppose you can add IntelliSense suport? (use GetCaretPos )
Well I would add IntelliSense but I would try and take it a step further.
I would take into consideration say you do something like
code:
var oArray = new Array();
When you would write
code:
oArray.
IntelliSense would be activated and would show you all possible functions that can't be performed and properties will be listed. I would do this for Memory Allocations as well so if you did
code:
var _MYMEMORY = Interop.Allocate(4);
When you would type
code:
_MYMEMORY.
it would populate a list of functions and properties available. So by doing this it would be taking intellisense to an entirely new possibility.
I think I will start maybe working on it tonight so if anyone has any suggestions or things they would like to see let me know.
quote:
Originally posted by SmokingCookie
Oh and congrats on REP 100
Thanks!