반응형
IE8 설치후 VisualStudio에서 Visual C++ 스마트장치 프로젝트 생성시 "프로젝트를 만들지 못했습니다."라는 에러와 함께 프로젝트 생성에 실패하는 경우 이렇게 해결한다.

1. 레지스트 편집기를 연다.
2. "HKEY_CURRENT_USER\Software\Microsoft]Windows\InternetSettings\Zones" 로 이동한다.
3. 해당 경로의 하위에 "1000"이름의 키를 생성한다.
4. 생선된 키에 "1207"이름의 DWORD값을 생성, 값은 기본값인 "0"으로 한다.
5. VisualStudio를 재 실행하여 정상 동작 여부를 확인한다.

참고글 : http://blogs.msdn.com/vcblog/archive/2009/03/28/some-vs2005-and-vs2008-wizards-pop-up-script-error.aspx

'Programming' 카테고리의 다른 글

WOL c++ 다른 소스코드  (0) 2009.10.29
WOL c++ sourcecode  (0) 2009.10.29
컴포넌트의 종류  (0) 2009.08.28
Flex Builder 3  (0) 2009.08.28
직각삼각형 출력  (0) 2009.08.12
반응형

rm -r 디렉토리  
요건 메세지가 매번 뜸

rm -rf 디렉토리
요건 메세지 안뜨고 지움
반응형
비주얼 컴포넌트(Visual Component)
  • 컨트롤 컴포넌트
  • 레이아웃 컨테이너 컴포넌트
  • 네비게이터 컴포넌트
  • 커스텀 컴포넌트
  • 차트 컴포넌트


넌비주얼 컴포넌트(Non-visual Component)
  • <mx:Script>
  • <mx:Model>
  • <mx:XML>
  • <mx:Array>

'Programming' 카테고리의 다른 글

WOL c++ sourcecode  (0) 2009.10.29
IE8설치 후 VS에러 패치  (0) 2009.10.14
Flex Builder 3  (0) 2009.08.28
직각삼각형 출력  (0) 2009.08.12
FLEX + 네이버 API 연동 예제  (0) 2009.08.09
반응형
http://ideebee.com/filekey=101665-9059


sn : 1377-4661-8899-1132-5313-5858

'Programming' 카테고리의 다른 글

IE8설치 후 VS에러 패치  (0) 2009.10.14
컴포넌트의 종류  (0) 2009.08.28
직각삼각형 출력  (0) 2009.08.12
FLEX + 네이버 API 연동 예제  (0) 2009.08.09
PHP의 미래  (0) 2009.08.09
반응형


Review
HTTP Debugger is a full-scale tool for developers for viewing and analyzing all outgoing and incoming HTTP protocol traffic between a web browser, or any other Internet related program, and the Internet.

Each HTTP request and/or response can be examined to see the HTTP header parameter values, cookies, query strings and error codes etc. All captured network traffic can be saved either in a RAW network format or in a decoded (how browsers see it) format.

HTTP Debugger works with all today's alternative browsers and their plugins, as well as with your own software. You can even monitor and debug ICQ, MSN, Yahoo Messenger and other popular Internet programs.

* Monitor and debug all outgoing HTTP requests from a browser (or any other Internet related program) and the corresponding responses from a server.
* See the full HTTP header and HTTP content data of both: HTTP requests and responses.
* Catch when the browser performs automatic redirects.
* Capture requests from all of the installed plugins (Flash, ActiveX, etc,) in addition to requests sent by a browser directly.
* View all the captured images, HTML or XML code, etc in the built-in web control.
* Simultaneously analyze the same page in all popular browsers.
* Measure the size and downloading time of your web pages to optimize the performance of your web site.
* The gzip and chunked encodings will be automatically processed by the program.
* View information supplied by each web browser or any program when you visit a site.
* Analyze how other sites work and how they implement certain features.
* Learn about how HTTP works (useful for when programming and web designing).

Supports Internet Explorer 7 Protected Mode in Windows Vista.

Changelog:
Version: 1.2(30 Aug 2007)
The program's documentation has been updated.
The bug has been fixed with the incorrect trial version expiration on Microsoft Windows Vista.
The bug has been fixed with leaving partially deleted groups in the Start menu of Microsoft Windows Vista.
Version: 4.3(05 Apr 2007)
Added the ability to detach the SoftX HTTP Debugger from a running program.
Version: 4.2

'Web' 카테고리의 다른 글

웹분석 도구의 분류  (0) 2009.12.15
KBS 실시간 방송 보기  (0) 2009.10.25
Google Dork part 1, 2  (0) 2009.08.07
Web 2.0  (0) 2009.08.07
What is Web 2.0?  (0) 2009.08.07
반응형

public class Exam_01 {
 public static void main(String[] ar){

 for(int t=1; t<6; t++){
  for(int a=5; t<a; a--){

   System.out.print(" ");
  }
  for(int b=0; b<t; b++){
   System.out.print("*");
  }
  
  System.out.println();
 }
 }
}

/*결과물
    *
   **
  ***
 ****
*****
*/

항상 프로그래밍 공부하면서 느낀거지만, 난 좀 멍청한것 같다.

'Programming' 카테고리의 다른 글

컴포넌트의 종류  (0) 2009.08.28
Flex Builder 3  (0) 2009.08.28
FLEX + 네이버 API 연동 예제  (0) 2009.08.09
PHP의 미래  (0) 2009.08.09
PHP3 와 PHP5의 차이점  (0) 2009.08.09

+ Recent posts