Devin Might Be Fake, Yet AI's Threat to Jobs Is Real. Community Center by Johannes C. … of programming duties, potentially rendering vast segments of the workforce obsolete. Software developers and programmers are responding with a blend of… Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by toneewa … running consistently. jQuery simulates the non-existent DOMContentLoaded event on obsolete browsers like Internet Explorer, using deferred execution, that fires later… Obsolete attribute NDepend Programming Software Development by khiemkim.xuan 0 down vote favorite Does anyone know a simple way to get the attribute of an obsolete marked methods with NDepend? Obsolete["This is outdated"] //TODO, I want the string!! So any ideas on how to get the string using NDepend? Re: Obsolete attribute NDepend Programming Software Development by Begginnerdev Don't forget to [mark as solved!](http://stackoverflow.com/questions/17484113/obsolete-attribute-ndepend) obsolete binding at `a' error C++ Programming Software Development by Nicanor … for new ISO `for' scoping accounts.cpp:234: error: using obsolete binding at `a' here's the code bool cAccount::IsOnline… Re: obsolete binding at `a' error C++ Programming Software Development by Dave Sinkula … for new ISO `for' scoping accounts.cpp:234: error: using obsolete binding at `a'[/quote]here's the code [code]bool… Obsolete software registry entries Hardware and Software Microsoft Windows by kincumber Every time I run a registry cleaner I get a number of obsolete software items. "Search" does not show them and Regedit will not allow me to delete the entries. Although they don't seem to be doing anything bad I am tired of seeing them, deleting them from the Registry only to see them back next time. How can I get rid of them? obsolete binding of variable in for loop Programming Software Development by cmutzel02 … lookup of 'pixel_number' changed for new ISO 'for' scoping error: obsolete binding at 'pixel_number' I understand that I cannot use the… VB.Net equivalent of VB6 code which are obsolete. Programming Software Development by Simran Kaur … VB.Net equivalent for the below code as they are obsolete and have the same warning sign(***): "Warning: 'Microsoft.VisualBasic….Compatibility.VB6.***' is obsolete: 'Microsoft.VisualBasic.Compatibility.* classes are obsolete." -> VB6.ToPixelsUserX Eg. pctSupport.Left = VB6… show Obsolete warnings in winform and have timestamp? Programming Software Development by khiemkim.xuan …way to apply date when marking a method as obsolete? What I mean about a date is that … class Form1 : Form { public Form1() { InitializeComponent(); } [Obsolete("This class is obsolete; use class B instead")] class A { public… Re: Vectors Obsolete? Programming Software Development by Annuate … but my IDE is saying that it is an obsolete Collection. I need to use Vector because it can…collection. thanks[/QUOTE] Your IDE is saying it is obsolete because [URL="http://download.oracle.com/javase/6/docs…stack overflow about the Vector class and why it is obsolete [URL="http://stackoverflow.com/questions/1386275/why-java… Re: show Obsolete warnings in winform and have timestamp? Programming Software Development by Ketsuekiame … the comment and in your documentation that the method is obsolete and will be removed after X date. After that date… retain true backwards compatibility, then retain the methods, mark them obsolete, but include a reference to the new method that should… Re: show Obsolete warnings in winform and have timestamp? Programming Software Development by ChrisHunter … (Exception ex) { MessageBox.show("" + ex); } } As for the obsolete problem can you not add DateTime.Now.ToString() to the… Re: Vectors Obsolete? Programming Software Development by ceyesuma … java.util.Hashtable. While still supported, these classes were made obsolete by the JDK1.2 collection classes, and should probably not… Api did not mention anything about Vector being depreciated or obsolete. I guess my IDE is out dated. Thank god. I… Re: WinForms obsolete attribute on partial class Programming Software Development by Ketsuekiame I would do a little re-design there. Whilst `const` ought to be flagged by Obsolete, I would redesign and make a public property that returns your const. Mark the property as obsolete and it should flag it. Using Obsolete Binding Problem Programming Software Development by silverwulffe … lookup of 'x' changed for new ANSI 'for' scoping using obsolete binding at 'x'" Did I do something wrong? Or… Re: Using Obsolete Binding Problem Programming Software Development by VernonDozier … goes out of scope here. "Binding" is now obsolete. if (x < numStudents) { courseGrade[x] = grade; } } [/code] Do you… Thread.suspend and thread.resume is obsolete Programming Software Development by GeekByChoiCe … thread.suspend but it tells me that this function is obsolete. Is there a simmilar method to achieve this? I've… Re: Thread.suspend and thread.resume is obsolete Programming Software Development by nmaillet …, for backwards compatability. The reason for it being marked as obsolete is because when suspending a thread, you cannot determine where… java developer: code to delete obsolete files in a directory Programming Software Development by Felikim … the following piece of code which is meant to delete obsolete files in a directory in an sms server. It runs… asp technology is not obsolete, I still need to learn to do, I need to learn php, ple Programming Web Development by achinaseller asp technology is not obsolete, I still need to learn to do, I need to learn php, please tell me Re: asp technology is not obsolete, I still need to learn to do, I need to learn php, ple Programming Web Development by ArtistScope No ASP is not obsolete and is still the preferred language when writing applications that can be easily customised. Best way to learn is by finding something like a custom written web application like a shopping cart for the web (they usually include most functions) and customising it little by little. Vectors Obsolete? Programming Software Development by ceyesuma I was reading some code that encouraged the use of vectors but my IDE is saying that it is an obsolete Collection. I need to use Vector because it can does not need to be a set size. and I would like to have a Vector of Vectors. Is there some other way to do this? Maybe an example of a list of list or some other kind of collection. thanks Re: Vectors Obsolete? Programming Software Development by pbl ArrayList are not synchronized while Vector are. No way Vactor will become obsolete. And yes you can use Vector of Vector. JTable use them Re: Vectors Obsolete? Programming Software Development by ~s.o.s~ Vector class *has* become obsolete. If you need a synchronized List, just wrap the plain … The datasrc attribute on the select element is obsolete Programming Web Development by xbat I'm a bit lost on this with html5 - The datasrc attribute on the select element is obsolete. Use script and a mechanism such as XMLHttpRequest to populate the page dynamically.. Does this mean that I will have to change everything into a ajax format? Re: The datasrc attribute on the select element is obsolete Programming Web Development by xbat I found a differnet way to do this jquery which is not obsolete according to the new html5. I will mark this solved. Thanks for everyones help. WinForms obsolete attribute on partial class Programming Software Development by pritaeas I've got some winforms partial classes marked `[Obsolete]`. Unlike when applying this to methods, I get no warning … Re: WinForms obsolete attribute on partial class Programming Software Development by ddanbe You normally should at least get a warning if some code from obsolete code is used. Is the main partial form part missing? Re: WinForms obsolete attribute on partial class Programming Software Development by deceptikon > I can't set it in the designer too, because that code can/will be regenerated. If the class is obsolete, why would you be changing it such that the generated code is updated? Last I checked, generated code was only updated when you changed the form from the designer.