The IDE will only allow references to dll’s while the command line will allow references to exe’s.
Since the command-line tools do allow this this seems to be a pointless restriction.
Random outpourings of a software developer
Since the command-line tools do allow this this seems to be a pointless restriction.
Greasemonkey is a site customization utility.
You alter the browser’s behaviour for the specific site.
This allows massive customization.
What the hell are microsoft thinking of?
Intellectual Property is the vague cover for the merging of the distinct areas of
Intellectual Property Theft is a meaningless concept. The actual crime would be a Copyright/Patent/Non-Disclosure agreement violation which is not theft.
This would be great for C# shops that have to take over maintenence of VB.NET code.
While it is great that .NET allows cross language work life is much easier if a shop sticks to one language. It would be a different matter if the two langauges were different in their expressiveness (say a functional language versus an OO one) but having two similar languages adds nothing to the mix.
I have nothing against VB.NET itself (Visual Fred), as it has finally gained the language features (inheritance, sane error handling) that Delphi has had since version 1 (10 years ago). The problem is the 3 million claimed VB (VBA) programmers. While the top few percent of those are likely to be decent devlopers the vast majority have the programming experience of record macro then (possibly) edit. This leads to unmaintainable code. I have worked alongside professional VB developers whose idea of code reuse within a project consisted of cut-and-paste at best and the creation of reusable routines was a novelty.
They include decompilers, resource editors and games.
ALTER TABLE MYTABLE ALTER COLUMN TIMESTAMP varbinary(8) NULL
The following error is raised:
Cannot alter column ‘TIMESTAMP’ because it is ‘timestamp’.
You have to do the following:
ALTER TABLE MYTABLE DROP COLUMN TIMESTAMP
ALTER TABLE MYTABLE ADD TIMESTAMP varbinary(8) NULL