quote:
Originally posted by pollolibredegrasa
It didn't work at all for me on my Windows XP machine, I just got an "application has stopped working and needs to close" error. I'll look into it later to try find out why.
Make sure you are running the .Net 3.5 SP1 framework.
quote:
Originally posted by pollolibredegrasa
On my Vista installation it worked, and it looks good so far, although I find the "are you sure you want to close this tab" message kinda annoying (especially when you have a few open tabs and then try exit, meaning you have to click through a few message boxes before it actually quits)
Disable the Close Tab Confirmation in the options.
On a side note I can't get it to run at all on Vista Business 32Bit. Does it rely on having MP!L installed? If so that explains it as this is my work computer.
Suggestion:
Extend the intellisense feature. What exactly do I mean by this? What I mean is with Javascript we can create our own classes:
js code:
var hello = function () {}
hello.prototype = {
"world" : function () { Debug.Trace ( 'hello world ' );
}
var h = new hello();
h.world();
It would be nice to have a full list of these class functions. Also much like with the VB6 IDE if you type
var h = new it would populate a list of classes then each function/parameter when you try to access it. I think this would be a nice added feature.