One thing that stumped me for about an hour today is 'optional' parameters. I was trying to call the Navigate method for the web browser control. In VB I would have ignored the optional parameters as they are optional (cunning eh?). C# doesn't think this is a good idea, and after a little digging I found you need to do:
object o = null;
webbrowser.Navigate(url, ref o, ref o, ref o, ref o);
Which looks plain dumb. Oh well.
I should also motivate myself to file some Komodo bug reports, but I feel these should have been stomped on before release. Ho Hum.
GUI support (Score:1)
Visual Perl. If you're using the Visual Studio software, Visual Perl is very nice. You can get it at activestate.com. I think it's about $100.
PerlBuilder at solutionsoft.com. Pretty good, aimed somewhat at CGI programmers. About $150 for the standard version, $250 for the pro version.
Your free option is OpenIDE [sourceforge.net]. Better than Komodo by a long shot, but then it
Re:GUI support (Score:1)
Re:GUI support (Score:1)
"Perl users are the Greatful Dead fans of computer science." --slashdot comment
Lack of GUI goodness? (Score:1)
There is enough GUI goodness for Perl!
Re:Lack of GUI goodness? (Score:1)
wxPerl looks promising but the lack of documentation is a factor. I'm also not sure if I'm that keen on creating forms without a GUI. The Visual Studio .NET GUI is very slick
Re:Lack of GUI goodness? (Score:1)
Re:Lack of GUI goodness? (Score:1)
You need Tk::DirSelect [kristi.ca] (follow the link to downloads and screenshots)
Re:Lack of GUI goodness? (Score:1)