안드로이드 개발 준비

필요사항

JDK

Android SDK

eclipse IDE


1. JDK   SE  최신버전 설치

2. Android SDK 최신버전 설치

   SDK Setup에서 최신 플랫폼 다운로드 받기
    - install anyway

3. 최신 eclipse 설치
   Available Software 검색 설치
     - 위치 : http://dl-ssl.google.com/android/eclipse/
   eclipse restart
   환경설정에서 Android SDK 위치 설정


4. 가상디바이스 설정

  

.....

Posted by 태해

2010/03/04 12:54 2010/03/04 12:54
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/144

Trackback URL : http://taehae.injece.net/trackback/144

Leave a comment

Visual studio 2003에서 만든 asp.net 프로그램을 visual studio 2005 나 2008로 업그레이드시 input box 의 내용중 변경된 내용이 프로그램에 반영이 안되는 경우가 발생 했습니다.

input box의 속성은 readonly 였고 javascript에 의해 값이 변경되는 프로그램이 였는데
visual studio 2003에서는 정상적으로 작동이 되었지만 업그레이드후에는 변경 이전 값이 계속 반영이 되는 현상이였습니다.

원인은 asp.net에서는 readonly가 true 이거나 enabled가 false인 항목에 대해서 클라이언트 변화값을 더이상 반영안한다는 것입니다.

보안상 맞는 내용인것 같지만 여간 불편하지 않네요.
문제 걸리신분 잘 해결 하시길 바랍니다.

가령 이부분을 읽으려할때 readonly 속성을 false하면 안될까 싶습니다.
그럼

Posted by 태해

2009/09/15 09:16 2009/09/15 09:16
, , , ,
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/139

Trackback URL : http://taehae.injece.net/trackback/139

Leave a comment

ASP.NET AJAX Control Toolit 빌드시 에러


VS 2008에서 ASP.NET AJAX Control Toolit 빌드시 TemplateVSI에서
아래와 같은 에러가 발생 할 경우

Could not load file or assembly 'vjslib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.


Visual J# Redistributable Packages 를 설치하세요.

http://msdn.microsoft.com/en-us/vjsharp/bb188598.aspx

Download the Visual J# 2.0 Redistributable Package-Second Edition (x86)
For use with the Microsoft .NET Framework (x86) version 2.0 and 3.0.
Download the Visual J# 2.0 Redistributable Package-Second Edition (x64)
For use with the Microsoft .NET Framework (x86) version 2.0 and 3.0.


 


Posted by 태해

2009/02/10 11:37 2009/02/10 11:37
,
Response
No Trackback , a comment
RSS :
http://taehae.injece.net/rss/response/136

Trackback URL : http://taehae.injece.net/trackback/136

Comments List

  1. blissful.joon 2009/03/05 09:41 # M/D Reply Permalink

    이고 땜시 고생 했는데.. 좋은 정보 감사여..

Leave a comment

keyboard problem with kde

I use Fedora 8 with kde. but I can't use my keyboard without reason.
finally,  I solve the probelm.

fix by under

in ~/.kde/share/config/kaccessrc

SlowKeys=true -> false


Posted by 태해

2008/07/28 09:24 2008/07/28 09:24
,
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/133

Trackback URL : http://taehae.injece.net/trackback/133

Leave a comment

mstsc command

Microsoft has made some changes to the mstsc command.

mstsc option "/console" switch to "/admin" 

Posted by 태해

2008/07/03 09:39 2008/07/03 09:39
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/132

Trackback URL : http://taehae.injece.net/trackback/132

Leave a comment

Qtopia Debugging

Build the Application with Debug Symbols

To build an application with debug symbols:

  • pass -debug to configure or add debug to the .pro file CONFIG settings as follows:
        CONFIG += debug
  • build the application and install the application binary into the /opt/Qtopia/bin directory using the following commands:
        $ make clean
        $ make
        $ make install

Run the Debugging Environment

The runqtopia script supports running Qtopia in several different debugging environments. To run Qtopia in using gdb:

    runqtopia -runmode gdb

Posted by 태해

2008/06/03 01:21 2008/06/03 01:21
,
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/131

Trackback URL : http://taehae.injece.net/trackback/131

Leave a comment

Application build modes

Qtopia applications can be built in one of four ways:

  1. quicklaunch
  2. non-quicklaunch
  3. singleexec (quicklaunch)
  4. singleexec (non-quicklaunch)

To facilitate switching between build modes, Qtopia provides two macros which are used as follows:

    #include "myheader.h"
    #include <QtopiaApplication>

    QTOPIA_ADD_APPLICATION(QTOPIA_TARGET, MyMainClass)
    QTOPIA_MAIN

The first argument to QTOPIA_ADD_APPLICATION() must be a literal string that matches the binary name that is, the value of TARGET from the .pro file. The build system defines QTOPIA_TARGET with the value of TARGET and it is recommended to use this macro.

The second argument to QTOPIA_ADD_APPLICATION() should be the name of your class. If you use the wrong value you will get a compile failure.

Building for either quicklaunch or singleexec (quicklaunch) requires these macros but the build system cannot easily determine if you have used them and the penalty for a wrong guess could be disastrous. Therefore you must use the qtopia_main CONFIG value if you use these macros or the build system will assume your application is not quicklaunch-compatible. If your application does not handle quicklaunch or is singleexec you can use the no_quicklaunch or no_singleexec CONFIG values.

For example, games do not need the speed benefits of quicklauncher (and there is a size penalty for using quicklauncher) but they do work with singleexec. So use CONFIG+=qtopia_main no_quicklaunch to indicate this.

Some applications, such as those using a custom application class, cannot use the macros. Tis prevents the use of quicklauncher but you can still work with singleexec if you make some changes to your code. You need to use the singleexec_main CONFIG value and have a main.cpp similar to the following:

    #include "myheader.h"
    #include <QtopiaApplication>

    #ifdef SINGLE_EXEC
    QTOPIA_ADD_APPLICATION(QTOPIA_TARGET, MyMainClass)
    #define MAIN_FUNC main_MyMainClass
    #else
    #define MAIN_FUNC main
    #endif

    int MAIN_FUNC( int argc, char **argv )
    {
        MyApplication a( argc, argv );
        MyWidget w;
        w.show();
        return a.exec();
    }

Posted by 태해

2008/04/28 17:24 2008/04/28 17:24
,
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/128

Trackback URL : http://taehae.injece.net/trackback/128

Leave a comment

Add new program in qtopia phone edition

Manually running qmake is no longer supported. All application development must be enabled via configure or qtopiamake.


When editing source files and shadow building (that is, build tree != source tree) you may be interested in depot hopping. Simply set QPEDIR to the location of your build tree and the Makefiles that qtopiamake puts in the source tree will call through to those in the build tree. For example:

    cd /path/to/build
    export QPEDIR=$PWD
    cd /path/to/source/examples/application
    $QPEDIR/bin/qtopiamake # sets up shadow build to $QPEDIR/examples/application
    make # build in $QPEDIR/examples/application

Posted by 태해

2008/04/28 16:43 2008/04/28 16:43
,
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/127

Trackback URL : http://taehae.injece.net/trackback/127

Leave a comment

VS2003에서 디버깅 안될때...

여러 웹사이트를 개발할 경우 디버깅시 에러가 나는 경우가 종종 발생합니다.

오류내용  :
프로젝트를 실행하는 동안 오류가 발생했습니다. 웹 서버에서 디버깅을 시작할 수 없습니다. 서버를 디버깅할 권한이 없습니다. 서버의 'Debugger Users' 그룹의 멤버인지 확인하십시오.


루프백 확인 비활성화

 1. 레지스트리 편집기에서 다음 레지스트리 키를 찾은 다음 선택
     HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
 2. Lsa를 마우스 오른쪽 단추로 누르고 새로 만들기를 가리킨 다음 DWORD 값 선택
 3. DisableLoopbackCheck를 입력
 4. DisableLoopbackCheck를 마우스 오른쪽 단추로 누른 다음 수정
 5. 값 필드에 1을 입력

 호스트 이름 지정

 루프백 주소에 매핑되며 사용자 컴퓨터에 있는 웹 사이트에 연결할 수 있는 호스트 이름을 지정한다
 1. 레지스트리 편집기에서 다음 레지스트리 키를 찾은 다음 선택
     HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0
 2. MSV1_0에서 새로 만들기를 가리킨 다음 다중 문자열 값 선택
 3. BackConnectionHostNames를 입력
 4. BackConnectionHostNames를 마우스 오른쪽 단추로 누른 다음 수정
 5. 값 필드에 로컬 컴퓨터에 있는 사이트의 호스트 이름을 하나 또는 여러 개 입력

레지스트리 편집기를 종료하고 컴퓨터를 다시 시작합니다.

만약 위와 같이 해도 안될경우 아래 두가지를 체크하세요.
 1. 소스 디렉토리에 asp.net , debugger 사용자 권한
 2. 방화벽 설정 해제
 

Posted by 태해

2007/10/19 09:56 2007/10/19 09:56
, ,
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/121

Trackback URL : http://taehae.injece.net/trackback/121

Leave a comment
증상 : /var/log/message 로그 내용

Oct 15 02:57:14 charterbn named[9931]: starting BIND 9.3.3rc2 -u named -t /var/named/chroot
Oct 15 02:57:14 charterbn named[9931]: found 1 CPU, using 1 worker thread
Oct 15 02:57:14 charterbn named[9931]: loading configuration from '/etc/named.conf'
Oct 15 02:57:14 charterbn named[9931]: listening on IPv4 interface lo, 127.0.0.1#53
Oct 15 02:57:14 charterbn named[9931]: listening on IPv4 interface eth0, 203.###.###.####53
Oct 15 02:57:14 charterbn named[9931]: /etc/named.conf:101: configuring key 'ddns_key': bad base64 encoding
Oct 15 02:57:14 charterbn named[9931]: loading configuration: bad base64 encoding
Oct 15 02:57:14 charterbn named[9931]: exiting (due to fatal error)

네임서버 구동시 필요한 기본 셋팅에서 구동시 위와 같은 에러가 발생!

문제의 원인은 named.conf 와 rndc.key의 secret 값이 동일하지 않아서 발생하는 것!

생성된 rndc.key의 secret 값을 named.conf 설정에 복사하면 문제는 해결된다!

Posted by 태해

2007/10/18 18:54 2007/10/18 18:54
,
Response
No Trackback , No Comment
RSS :
http://taehae.injece.net/rss/response/119

Trackback URL : http://taehae.injece.net/trackback/119

Leave a comment