Windows error 0x00001755, 5973

Detailed Error Information

CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS[1]

MessageThe Cluster Functional Level could not be increased because not all nodes in the cluster support the updated version.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80071755.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code5973 (0x1755)

Questions

1vote
4answers

TextView.setText() isn't working

My TextView.setText() isn't working. public class MainActivity extends ActionBarActivity { WorldGen earth = new WorldGen("Earth", 5973, 9.78);//Create a World Object @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); if (savedInstanceState == null) { getSupportFragmentManager().beginTransaction() .add(R.id.container, new PlaceholderFragment()) .commit(); } setStartUpWorldValues(); setStartUpScreenText();//ADDED } protected void setStartUpWorldValues(){ earth.setPlanetColonies(1); // Set Planet Colonies [...] read more
android
textview
settext
0votes
1answer

Several errors when running testing android application

I am trying to test a simple android application from an android development book and I reached a point when running the application gets me an error message. Unfortunately app has stopped. (When I take out setStarUpScreenText(); the application runs but the desired text does not appear. MainActivity package chaper.two.hello_world; [...] read more
java
android
xml
string
runtime-error

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0