« Previous : 1 : 2 : 3 : 4 : 5 : ... 34 : Next »

Visual Studio .NET 2005에서 설치용 프로그램 만들기

프로그램을 개발한 다음, 사용자가 설치해서 사용할 수 있도록 하기 위해서는 '설치용 프로그램'(일명 setup 프로그램)을 만들어야 한다.
Visual Studio .NET 2005에서는 솔루션에 '설치 프로젝트'를 추가하여 개발 프로그램을 설치가능하게 할 수 있다.
다음의 사이트는 이것을 잘 설명하고 있다.
http://www.nohungry.net/tt1/tag/110
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by 솔라뷰

2010/03/10 09:24 2010/03/10 09:24
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/286

xpath와 namespace

Hey all,

Simple question, I just want to select the text from the <Template> tag. Here's what I have, but the Xpath doesn't match anything.

public static void TestXPath()
{
string xmlText = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>";
xmlText += "<Properties xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">";
xmlText += "<Template>Normal</Template> <TotalTime>1</TotalTime> <Pages>1</Pages> <Words>6</Words>";
xmlText += "</Properties>";

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(new System.IO.StringReader(xmlText));

foreach (XmlNode node in xmlDoc.SelectNodes("//Template"))
{
Console.WriteLine("{0}: {1}", node.Name, node.InnerText);
}
}


You need to use an XmlNamespaceManager because the
Template element is in a namespace:

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(new System.IO.StringReader(xmlText));
XmlNamespaceManager manager = new XmlNamespaceManager(xmlDoc.NameTable);
manager.AddNamespace("ns",
"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties");

foreach (XmlNode node in xmlDoc.SelectNodes("//ns:Template", manager))
{
Console.WriteLine("{0}: {1}", node.Name, node.InnerText);
}

크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by 솔라뷰

2010/03/02 13:09 2010/03/02 13:09
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/285

MatLAB 7.2를 Windows7에 설치하기

MatLAB 7.2를 Windows7에 설치하려다 에러가 발생해서 아래 웹페이지에서 해결책을 찾았다.
웹페이지 : http://www.4kg.net/node/12339

Q. Matlab 7.4를 windows7에 설치하려고 했는데 에러를 하나 밷어내고 멈춰버립니다. or Matlab이 Windows7에서 실행되지 않습니다.

A-1. Windows 테마를 "Windows 고전"으로 변경하면 됩니다. 다만 이 경우 Windows7의 자랑인
       Aero peek을 사용할 수 없습니다.

A-2. Matlab 내부의 Java를 최신버전으로 교체합니다. 방법은 다음과 같습니다.

1) Java 최신 버전을 다운받고, 인스톨합니다.
2) \sys\java\jre\win32에 가보면  jre1.5.0_07 혹은 비슷한 이름의 폴더를
    볼 수 있습니다. 그 폴더의 이름을 Original_jre1.5.0_07으로 변경합니다.
3) C:\Program Files\Java 위치에 가서 jre6 폴더를 \sys\java\jre\win32로
   복사/붙여넣기 합니다.
4) jre6 폴더의 이름을 jre1.5.0_07과 같이 2)에서의 원래 폴더 이름으로 변경합니다.


   ( A-2 내용 출처 : Matlab 7 under Windows 7 )

<주의!> A-1, A-2의 두 방법을 모두 이용해서 Matlab을 구동해도
             "HELP창에 내용이 나타나지 않는 문제"가 발생합니다.
그러니까, 결론적으로 '구식테마로 전환한 다음 매트랩을 설치하라'는 말이 되겠다.

이때 사용한 구글의 검색어는 "matlab 7 under windows7"이었다.
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by 솔라뷰

2009/11/23 10:31 2009/11/23 10:31
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/281

[웹페이지]FireFox 활용팁

FireFox 활용팁

http://www.choboweb.com/62?category=23
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by 솔라뷰

2009/10/14 20:11 2009/10/14 20:11
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/279

거리측정기

제품종류 : 거리측정기
상표명 : 라이카 DISTO™ D8모델명 : D8
제조사 : 라이카 지오시스템즈
제품정보 : 회사 웹페이지
가격 :
제품개요/용도 : 레이저를 발사하여 닿는 지점까지의 거리를 측정함
 
이미지 :
사용자 삽입 이미지

Disto D8 (출처 : 제조사 웹페이지)


사용법 :
가운데 전원 스위치 겸 레이저 발사 단추를 누르면 레이저가 닿은 곳까지의 거리가 표시된다.
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by 솔라뷰

2009/09/03 17:09 2009/09/03 17:09
, , ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/278

도시형 풍력


도시형 풍력발전원천기술센터
http://www.koenergy.co.kr/news/articlev ··· %3D48264
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by 솔라뷰

2009/09/01 01:12 2009/09/01 01:12
, , , ,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/276

일조권 침해한다. 아파트 층수 반으로 줄여라.

보호된 글 입니다. 비밀번호를 입력하세요.

« Previous : 1 : 2 : 3 : 4 : 5 : ... 34 : Next »