Tagged Questions

0
votes
2answers
75 views

Is the ol’ Win32 API on its way to the grave? [closed]

Or has it any means of competing with .NET if we look 3-5 years into the future? And lets leave the "legacy maintenance" argument out, since we should focus on benefits rather tha …
8
votes
1answer
121 views

How can I mark Perl code as deprecated?

In my project I'm currently preparing a step-by-step move from legacy code to new, properly-designed and tested modules. Since not every fellow programmer follows closely what I do …
1
vote
2answers
50 views

When, if ever, would you expect classes marked as obsolete to be removed from the .NET framework?

As we approach the 4th major release of the .NET framework we are likely to see an increase in the number of classes and methods marked as obsolete (to indicate they are deprecated …
8
votes
4answers
605 views

Why Java Vector class is considered obsolete or deprecated?

Why Java Vector is considered a legacy class, obsolete or deprecated? Its use isn't valid when working with concurrency? And if I don't want to manually synchronize objects and j …
1
vote
3answers
52 views

Public Overrides Function GetBytes() As Byte() is obsolete

What does the poet try to say? Public Overrides Function GetBytes() As Byte() is obsolete: Rfc2898DeriveBytes replaces PasswordDeriveBytes for deriving key material from a passwo …
0
votes
4answers
97 views

How obsolete is “Creating Applications with Mozilla”? (the book)

I have the book "Creating Applications with Mozilla", though I haven't read it yet. According to the book's web site at http://books.mozdev.org/, It is "very out of date." How out …
7
votes
10answers
849 views

Are IFrames (HTML) obsolete?

Gettting contradictiory messages about that, hope they're not. I cannot imagine support for it would stop, since a gazillion sites use them. Some additional questions about that : …
4
votes
17answers
493 views

What obsolete programming techniques are you glad to see go?

G'day, Inspired by this article here, what programming techniques are you glad to see the back of? Has anything arisen to replace them? For example: I had to learn Miditran in …
-1
votes
3answers
237 views

Soon-to-be obsolete or restrictive programming langauges? [closed]

I'm planning to have a web application developed for me. Whoever does the development will be choosing the programming language, since I'm not a developer. The problem is that I'm …
1
vote
1answer
94 views

What should I use instead of LoadWithPartialName()?

I'm loading an assembly with LoadWithPartialName(), but VS tells me that it's obsolete and to use Load() instead. However, I can't find any convenient overload. There is a Load(st …
4
votes
2answers
428 views

Suppressing obsolete warnings in VB.Net

I have VB.Net code in VS 2008 using an obsolete method, and would like to suppress the warning. Unfortunately, following the recommendation is not a good solution, because it requi …
8
votes
3answers
570 views

Why are C# collection-properties not flagged as obsolete when calling properties on them?

I tried to flag a collection property on a class as Obsolete to find all the occurances and keep a shrinking list of things to fix in my warning-list, due to the fact that we need …
2
votes
2answers
148 views

ObsoleteAttribute confusion

I would like to apply ObsoleteAttribute to a property, but it seems that compiler generates warnings/errors only for direct usage of attribute, any indirect usage is silently ignor …
3
votes
7answers
229 views

Are you forced to develop for old web browsers? [closed]

I always wondered why people are still running older web browsers until I started at my current job. Here I am forced to use IE6 to develop all of our internal applications, as our …
2
votes
3answers
99 views

Database schema changes needed yearly. Which Strategy should be used?

Hello, Every year our company holds a conference/stand where participants can show their products. We have a web-application which let the participants sign up for the confere …