목록소스코드 (93)
도전2022
private Brush resourceToBitmap(string p) { //Bitmap img = TJ01B.Properties.Resources.BkFullHd; var bitmap = new BitmapImage(); if (!File.Exists(p)) return null; var source = File.OpenRead(p); bitmap.BeginInit(); bitmap.CacheOption = BitmapCacheOption.OnLoad; bitmap.StreamSource = source; bitmap.EndInit(); source.Close(); source.Dispose(); ImageBrush berriesBrush = new ImageBrush(); berriesBrush...
http://msdn.microsoft.com/en-us/library/windows/desktop/bb762181(v=vs.85).aspx TCHAR szPath[MAX_PATH]; if(SUCCEEDED(SHGetFolderPath(NULL, CSIDL_PERSONAL|CSIDL_FLAG_CREATE, NULL, 0, szPath))) { PathAppend(szPath, TEXT("New Doc.txt")); HANDLE hFile = CreateFile(szPath, ...); } http://process3.blog.me/20027884274 98에서는 지원되지 않는다. http://blog.naver.com/ahnshy?Redirect=Log&logNo=110008912467 특수 폴더 얻는 방법
블랙박스 소프트웨어를 다음의 코덱을 이용하고 있음. 빠른데, 리소스를 많이 잡아먹는거 같음. http://sourceforge.net/projects/ffdshow/ http://ffdshow-tryout.sourceforge.net/ What is ffdshow tryouts?ffdshow tryouts is a DirectShow and Video for Windows codec with support for a wide range of audio and video formats, such as Xvid, DivX, and H.264. It includes a powerful filter set that can enhance the video quality - with filters for resiz..
qt에서 javascript를 연동하는데, 다음과 같은 에러가 발생한다. 원인을 찾자. JavaScript ProblemThe script on this page appears to have a problem. do you want to stop the script? debug에서는 발생하지 않고, release에서는 발생한다. ㅠㅠ 원인을 찾기가 힘드네요.. 예외처리를 추가하는 방법으로 진행해야 할듯 함. ㅠㅠ
http://www.codeguru.com/cpp/w-p/dll/article.php/c3641/Whos-Locking-v13.htm 다른 곳에서 파일을 사용중이여서 열수 없는 경우가 발생..ㅠ.ㅠ그러다 찾은 프로그램. 코드 Who's Locking? v1.3Posted by Emmanuel KARTMANN on August 7th, 20010.250.500.751.001.251.501.752.002.252.502.753.003.253.503.754.004.254.504.755.00Vote!inShareEnvironment: VC6 SP3, NT4 SP5, Windows 95, Windows 98Have you ever tried to copy a DLL and had an "Access Denied" ..