Windows error 0x00002024, 8228

Detailed Error Information

DS_ADMIN_LIMIT_EXCEEDED[1]

MessageThe administrative limit for this request was exceeded.
Declared inwinerror.h

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

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 Code8228 (0x2024)

Questions

3votes
0answers

Xamarin.iOS Crashs Without Any Exception

I'm using xamarin.iso indie version and xamarin studio to develop a small application. At begining, everything gos well, but after I add the search function which involves the UISearchDisplayController and UISearchDisplayDelegate, then I always get the application crash. everytime, if I search for the firs time, then it works, and [...] read more
xamarin.ios
uisearchbar
uisearchdisplaycontroller
2votes
5answers

App crash when UITableView Scrolls up

I wonder why my app crashes when i scroll my UITableView up. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; NSArray *arrayForNames=[[NSArray alloc]initWithArray:[objContentManager getDuasNamesByGroupName:[arrayDuaGroups objectAtIndex:indexPath.section]]]; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } // implementation on [...] read more
iphone
objective-c
xcode
ios4

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