Questions tagged [obsolete]

Methods and ideas that are no longer used in the current versions of various technologies.

190 questions
0
votes
1 answer

Changing a deprecated code piece in Unity (BoxCollider2D)

I am trying to use the box collider functionality in Unity, however it seems to be deprecated. I get the message: "UnityEngine.BoxCollider2D.center" is obsolete. BoxCollider2D.center has been deprecated. Use BoxCollider2D.offset instead…
0
votes
0 answers

VB.net warning with VB6 code: how to fix it?

How can I use this code: VB6.LoadResString(i) without getting this warning: Public Function LoadResString(ID As Integer) As String is obsolete: 'Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes…
Piero Alberto
  • 3,823
  • 6
  • 56
  • 108
0
votes
0 answers

How can I modernize this obsolete code and "query for window layout sizes directly"?

Prior to calling a FilePicker API, I call this: async internal static Task EnsureUnsnapped() { // FilePicker APIs will not work if the app is snapped var unsnapped = ApplicationView.Value != ApplicationViewState.Snapped; if…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
1 answer

What does is obsolete mean?

My batch build has a project, lets call it 'My.Project'. That project got up-reved to .NET 3.5 (from .NET 1.1) in its own standalone project (meaning its not part of this batch build). Most of it is the same, there are calls that were upgraded,…
dangerisgo
  • 1,261
  • 3
  • 16
  • 28
0
votes
1 answer

Why does silverstripe set my page tables as obsolete one

Hello, I have a big problem with silverstripe. Everything was okay until i flushed my site and suddenly i got some errors with this on the dev/build : Table Page: renamed to _obsolete_Page Table Page_versions: renamed to…
tomzi
  • 1,215
  • 1
  • 12
  • 23
0
votes
1 answer

Replace obsolete FormsAuthentication.Authenticate

Visual studio 2012 is warning that the first line of this class is obsolete: if (FormsAuthentication.Authenticate(UserName.Text, Password.Text) == true) public void LoginClass(object s, EventArgs e) { if…
Nullbyte
  • 231
  • 1
  • 6
  • 16
0
votes
2 answers

mongo db remove json objects

I have a mongo json object as follows { "_id" : new BinData(3, "RDHABb22XESWvP83FplqJw=="), "name" : "NEW NODE", "host" : null, "aet" : null, "studies" : ["1.3.12.2.1107.5.99.3.30000008061114424970500000589"], "testcases" : [new…
Goks
  • 9
  • 1
  • 5
0
votes
1 answer

ObsoleteAttribute and Generic Methods

I'm adding a new generic Serialize method for my Serializer class. And old one must be obsolete. [XmlRoot("a")] public class A { [XmlElement("field")] public string Field; } class Program { static void Main(string[] args) { …
0
votes
1 answer

Old PhotoRate 2.0 designed to work on PHP 4 Does not now work

I have built a much larger script off this original script called PhotoRate 2.0 it was originally designed for php 4 and has worked up until my provider recently upgraded their php version. I have the original Script here. The first part is the…
Silhouett
  • 77
  • 1
  • 7
0
votes
2 answers

Trying to print a optimum array: "Name lookup of 'k' changed for new ISO 'for"

I'm working doing a planificatin for a company that makes car parts. I need to loop among a lot of things that are maybe a bit difficult to explain by text. The aim is to get a final optimum order of the parts to have the biggest profits. This is…
Avión
  • 7,963
  • 11
  • 64
  • 105
0
votes
2 answers

How to use .htaccess to redirect obsolete browsers

I tried all of the suggestions on this page (Using .htaccess to redirect obsolete browsers) but none work. I've googled but did not find a working example. None of these work when dealing with browsers with two digit version numbers. For example,…
Jeff
  • 495
  • 1
  • 5
  • 18
0
votes
1 answer

Programmatically calling a PHP page and needing client-side Javascript to execute

I have a PHP page that grabs a variable via GET and then pulls in some information from a database based on that variable. Once finished with the server-side stuff, there is some javascript that runs and takes the data supplied and creates a .png…
user16565
  • 1
  • 2
0
votes
1 answer

How to compile the linux kernel with an obsolete option?

OK, so I have this embedded kernel whose network card used to work fine with the LLTEMAC option. The new one with LL_TEMAC doesn't. I still see the code with LLTEMAC in the source, but not in the available option in the .config file: $ ack-grep…
dargaud
  • 2,431
  • 2
  • 26
  • 39
0
votes
2 answers

Trying to make a very outdated Baan system more accessible for the users with C# and Excel via interop

Upon suggestion this question has been amended to the following; Does anyone here know about Baan as a system and if so how compatible (if at all) is it with Excel from a developer's point of view? I need to pull reports from Baan to populate Excel…
JamesDev
  • 223
  • 2
  • 4
  • 16
0
votes
1 answer

Preventing a propertyGrid from binding to certain properties

I am binding a properties Grid to a bunch of custom Objects that are being written by other developers. These objects are constantly being changed and updated, so they include properties that just throw NotImplemented Exceptions. Sometimes they…
jth41
  • 3,808
  • 9
  • 59
  • 109
1 2 3
12
13