Windows error 0x000020F9, 8441

Detailed Error Information

DS_DRA_DN_EXISTS[1]

MessageThe distinguished name specified for this replication operation already exists.
Declared inwinerror.h

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

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 Code8441 (0x20f9)

Questions

1vote
2answers

UITableViewCell unrecognized selector

I have a UITableView with a ViewController as its datasource and delegate. In the same XIB I have a custom cell for my search bar. The first cell in the table view is this cell. Sporadically, I'm getting a crash with the following exception: *** Terminating app due to uncaught [...] read more
iphone
uitableview
0votes
1answer

provide case- insensitive search of DB (core data)

I am a starter in iPhone. I wanted to do case-insensitive search. Database helper used: Core Data. Following is my code: -(WebAttendee *) FindAttendeeBy:(NSString *) badgeID_ { AppDelegate_Shared *delegate1 = [[UIApplication sharedApplication]delegate]; badgeID_=[badgeID_ stringByReplacingOccurrencesOfString:@"\\" withString:@"\\\\"]; badgeID_=[badgeID_ stringByReplacingOccurrencesOfString:@"'" withString:@"\\'"]; self.managedObjectContext = delegate1.managedObjectContext; return (WebAttendee *)[self FetchManagedObject:@"WebAttendee" :[NSString stringWithFormat:@ "Barcode LIKE [c] [...] read more
iphone
case-sensitive

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