문제

alt text http://img63.imageshack.us/img63/5726/screenshot20100125at124.png

I keep getting multiple error windows for an app i'm developing asking for ._libpal_bullet.dll when it should really be just libpal_bullet.dll. The weird thing is after I get all the error messages, the app runs anyway using the correct dlls that exist in the same directory.

How can i get rid of these errors?

도움이 되었습니까?

해결책 2

다음과 같이 foreach를 수정합니다.

foreach (string kontraktyListText in kontraktyGrupagreat.Cast<SPListItem>().Select<SPListItem,string>(source => source["nazwisko"] as string).Distinct())
{
    DropDownList4.Items.Add(kontraktyListText);
}
.

시도해보십시오.

환호!

다른 팁

You can use Dependencies Walker to step through the code to see who is invoking the call to the DLL. Maybe you have the ._libpal_bullet.dll included in your release configuration.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top