빠른 실행 도구 모음에 "바탕 화면 보기"가 있으면 참 편리하다.
경우에 따라서는 "바탕 화면 보기" 아이콘이 없는 경우가 있다.
다음 사이트에 가면 친절하게 아이콘을 만드는 방법을 안내하고 있다.
http://support.microsoft.com/kb/190355/ko
Posted by 솔라뷰
Posted by 솔라뷰
Posted by 솔라뷰
Posted by 솔라뷰
| 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 |
Posted by 솔라뷰
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.
Posted by 솔라뷰
Posted by 솔라뷰
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);
}
}
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);
}Posted by 솔라뷰
군산대학교 건축환경연구실 / 김용이 교수
- 솔라뷰