문제

Is there a way to apply consistent visual appearance for multiple Windows Forms applications? So that the same color scheme is used, etc? Or you have to do it manually?

(I apologize for this question, but I have googled it without any real answer - a couple of pointers in the right direction or a few links would be enough. I have also searched here, so if it is a repost please close it)

도움이 되었습니까?

해결책

여기에 우리 측면에서 새로운 결과가 있으므로이 질문에 답변 할 것입니다.

여기에 또 다른 유사한 게시물이 있습니다 : http://adammcewen.wordpress.com/2012/12/10/reporting-services-sleepingand-wont-wake-up/ 이렇게 도메인 사용자 계정과 관련된 임시 정보와 관련된 것 같습니다. SharePoint 서비스를 실행하는 데 사용되는 것은 긴 비활성 시간 후에 언로드됩니다.

COM 오류 코드의 경우, 유감스럽게도 현재 인터넷 검색에 기반한 의미를 정확히 찾을 수 없었습니다 (MS는 COM 오류 코드에서 좋은 작업을 수행하지 않았습니다). 때로는 COM 오류 코드가 낮은 레벨 Win32 오류 코드를 그 안에 래핑합니다.

800703fa의 경우 Win32 오류 코드는 10 진수에서 0x3fa가 0x3FA 일 수 있으므로 액세스 할 때 일부 레지스트리 키가 삭제됩니다 (도메인 사용자와 관련된 일부 레지스트리 정보는 언로드되는 경우). 이 시점에서.

// messageId : error_key_deleted

// messageText :

// 삭제를 위해 표시된 레지스트리 키에서 잘못된 작업을 시도했습니다.

error_key_deleted 1018L

실제로 SharePoint 사용자 프로필 서비스가 사용하는 Env의 SecurityToKenserviceApplication 풀의 SecurityToKenserviceApplication 풀의 사용자 프로필은 false이었습니다.이 기능은 true로 변경되었으며 Iisreset을 수행했습니다.

이 시점에서 우리가 여전히 눈을 지키고 있음에도 불구하고 "LoadUserporfile"이 여전히 근본 원인 것 같습니다.

다른 팁

If you want a consistent appearance that is different from the standard Windows appearance, then you have to do it by hand - possibly with the assistence of some sort of 3rd party skinning library.

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