여러 프로그램을 사용하다 갑자기 깨끗한 바탕화면을 보고 싶을 때가 있다.
빠른 실행 도구 모음에 "바탕 화면 보기"가 있으면 참 편리하다.
경우에 따라서는 "바탕 화면 보기" 아이콘이 없는 경우가 있다.

다음 사이트에 가면 친절하게 아이콘을 만드는 방법을 안내하고 있다.
http://support.microsoft.com/kb/190355/ko

바탕화면보기 아이콘은 아래와 같다.
사용자 삽입 이미지





사용자 삽입 이미지

Posted by solarview

2010/03/17 17:56 2010/03/17 17:56
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/291

Workstation 사용기 -2

사용자 삽입 이미지
- Window Live Messenger를 사용하고 있다.
- Windows XP 64bit에서는 설치가 안 된다.
- Windows Live Messenger 2009 on Windows XP 64bit에서 내려받은 프로그램으로 메신저 설치 프로그램을 패치하였다.
- 설치가 잘 되었다.
- 이렇게 패치해서 될 것이면, MS에서 지원해주는 것이 맞다는 생각이 든다.

Posted by solarview

2010/03/17 14:41 2010/03/17 14:41
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/290

Workstation 사용기 -1

- 윈도우 XP 64비트에는 프로그램 설치하는 곳이 두 군데이다.
- Program Files (x86)는 32비트용 프로그램 설치 위치
- Program Files은 64비트용 프로그램 설치 위치
사용자 삽입 이미지

- 어떤 프로그램은 자신이 32비트 연산을 하면서 , 습관적으로 "Program Files"폴더에 설치되기도 한다.
- 전자결재 프로그램이 이런 일을 하는 바람에 하루를 날렸다.

- 부팅할 때, 상당한 인내력이 필요하다. (하긴 맨날 켰다껐다 하는 컴퓨터가 아니다!)
- 최신 Windows messenger를 설치할 수 없다.

Posted by solarview

2010/03/17 08:54 2010/03/17 08:54
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/289

Workstation

워크스테이션이 하나 들어왔다. 사양은 다음과 같다.
HP Z800 Workstation
HP Z800 1110W 85% Efficient Chassis
HP Z800 Localization Kit
MS Windows 7 Downgrade to XP 64OS
Intel Xeon X5570 2.93 8MB/1333 QC CPU-1   X  2개
HP 24GB (12x2GB) DDR3-1333 ECC RAM
NVIDIA Quadro FX1800 768MB Graphics
HP 146GB SAS 15K 1st HDD
HP 1000GB SATA 7200 1st HDD
HP 16X DVD+-RW SuperMulti SATA 2nd Drive
No Floppy Disk Kit
HP Air Cooling Solution
HP USB Standard Keyboard
HP USB Optical Scroll Mouse
HP 1x Standard Heatsink Thermal Kit

운영체제 : Windows XP Professinal x64

사용자 삽입 이미지
이 워크스테이션을 위한 드라이버는 다음 사이트에서 구할 수 있다.
http://h50177.www5.hp.com/support/NZ238PA/drivers/os_2002.html

Posted by solarview

2010/03/15 11:38 2010/03/15 11:38
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/288

gbXML

사용자 삽입 이미지
gbXML이란?

The Green Building XML schema, referred to as "gbXML", was developed to facilitate the transfer of building information stored in CAD building information models, enabling integrated interoperability between building design models and a wide variety of engineering analysis tools and models available today. Today, gbXML has the industry support and wide adoption by the leading CAD vendors, Autodesk, Graphisoft, and Bentley. With the development of export and import capabilities in several major engineering modeling tools, gbXML has become a defacto industry standard schema. Its use dramatically streamlines the transfer of building information to and from engineering models, eliminating the need for time consuming plan take-offs. This removes a significant cost barrier to designing resource efficient buildings and specifying associated equipment. It enables building design teams to truly collaborate and realized the potential benefits of Building Information Modeling.


참고할 만한 사이트
공식사이트 http://www.gbxml.org/
http://thebuildingcoder.typepad.com/blog/gbxml/

Posted by solarview

2010/03/13 18:43 2010/03/13 18:43
,
Response
No Trackback , No Comment
RSS :
http://www.solarview.net/rss/response/287

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

Posted by solarview

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.
[code]
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);
    }
}[/code]

You need to use an XmlNamespaceManager because the
Template element is in a namespace:
[code]
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);
}[/code]

Posted by solarview

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