'2009/06'에 해당되는 글 3건
- 2009/06/30 MCP : OCS 자격시험
- 2009/06/29 Visual C++ 6 Unleashed
- 2009/06/23 Silverlight Custom control
OCS MCP 자격증..
흠 봐야할게 많구나..
언제 공부하지 ㅠㅠㅠ
http://www.microsoft.com/learning/en/us/certification/cert-ocs.aspx#tab3
Microsoft Office Communications Server 2007 – Configuring
Demonstrate that you possess the knowledge and skills that are required to deploy and administer an enterprise communications environment with Microsoft Office Communications Server 2007 R2.
Candidates for this certification should have a minimum of one year of experience installing, managing, deploying, configuring, monitoring, and maintaining Office Communications Server 2007 or Office Communications Server 2007 R2 and related technologies. In addition, candidates should have experience using and configuring Active Directory and network infrastructure components that support the deployment and ongoing management of Office Communications Server 2007 versions.
The best way to prepare for Microsoft Certification exams is to spend time with the technology. Review the exam preparation guides, and work with Microsoft Office Communications Server 2007 R2 and related tools as much as you can. To earn the Microsoft Certified Technology Specialist (MCTS) certification for Microsoft Office Communications Server 2007 – Configuring, you must pass one exam.
Required exam
|
TS: Microsoft Office Communications Server 2007, Configuring |
Note This certification will be retired when Microsoft discontinues mainstream support for the related technology.
Microsoft Office Live Communications Server 2005
The MCTS in Microsoft Office Live Communications Server 2005 is ideal for individuals who possess a deep and broad understanding of all aspects of the Office Live Communications Server infrastructure, including deployment of additional Active Directory and network infrastructure components and services to support the deployment and ongoing management and operations of Office Live Communications Server.
Candidates for this certification should have a minimum of one year of experience deploying and managing ongoing issues with Office Live Communications Server infrastructures. One exam is required.
Required exam
|
TS: Microsoft Office Live Communications Server 2005 – Implementing, Managing, and Troubleshooting |
Note This certification will be retired when Microsoft discontinues mainstream support for the related technology.
'Microsoft > OCS' 카테고리의 다른 글
| MCP : OCS 자격시험 (0) | 2009/06/30 |
|---|---|
| Using WMI to Configure New OCS Users – WMI를 이용한 OCS 사용자 설정 (0) | 2009/04/22 |
| Recently released OCS R2 binaries download (0) | 2009/04/21 |
| OCS R2 - SRTP / Protocol List (0) | 2009/04/09 |
| Dial Plan 기본 위치 프로필 설정 - OCS Translation Service ID47020 (0) | 2009/03/05 |
| OCS 서버 제거 순서 - Remove OCS Server (0) | 2009/03/03 |
간만에 정말 유용한 사이트를 찾은 것 같다.
뭐 자주 볼일은 없는 C++ 이지만,
Visual C++ 6 관련된 내용을 보게 된다면 거의 바이블이나 마찬가지인 사이트이다.
정말 내용이 방대한 -_ -;;
책을 안가지고 계시다면!!
여기를 한번 보면 좋을듯 후훗~
(아래 링크들은 Shift + Click 으로 봐주시길 ^ ^)
http://www.informit.com/library/
http://www.informit.com/library/library.aspx?b=Visual_C_PlusPlus
Visual C++ 6 Unleashed
Visual C++ 6 Unleashed provides comprehensive coverage of the core topics for Visual C++ 6 programming. This book skips the beginning level material and jumps right in to Visual C++.
Table of Contents
Copyright
About the Authors
About the Contributors
Acknowledgments
Tell Us What You Think!
Introduction
How to Use This Book
What You Need to Use This Book
What's New in Visual C++ 6.0
Contacting the Main Author
Part I: Introduction
Chapter 1. The Visual C++ 6.0 Environment
Part II: MFC Programming
Chapter 2. MFC Class Library Overview
Chapter 3. MFC Message Handling Mechanism
Chapter 4. The Document View Architecture
Chapter 5. Creating and Using Dialog Boxes
Chapter 6. Working with Device Contexts and GDI Objects
Chapter 7. Creating and Using Property Sheets
Chapter 8. Working with the File System
Chapter 9. Using Serialization with File and Archive Objects
Part III: Internet Programming with MFC
Chapter 10. MFC and the Internet Server API (ISAPI)
Chapter 11. The WinInet API
Chapter 12. MFC HTML Support
Part IV: Advanced Programming Topics
Chapter 13. Using the Standard C++ Library
Chapter 14. Error Detection and Exception Handling Techniques
Chapter 15. Debugging and Profiling Strategies
Chapter 16. Multithreading
Chapter 17. Using Scripting and Other Tools to Automate the Visual C++ IDE
Part V: Database Programming
Chapter 18. Creating Custom AppWizards
Chapter 19. Database Overview
Chapter 20. ODBC Programming
Chapter 21. MFC Database Classes
Chapter 22. Using OLE DB
Chapter 23. Programming with ADO
Part VI: MFC Support for COM and ActiveX
Chapter 24. Overview of COM and Active Technologies
Chapter 25. Active Documents
Chapter 26. Active Containers
Chapter 27. Active Servers
Chapter 28. ActiveX Controls
Part VII: Using the Active Template Library
Chapter 29. ATL Architecture
Chapter 30. Creating COM Objects Using ATL
Chapter 31. Creating ActiveX Controls Using ATL
Chapter 32. Using ATL to Create MTS and COM+ Components
Part VIII: Finishing Touches
Chapter 33. Adding Windows Help
Part IX: Appendix
'Program' 카테고리의 다른 글
| Your files are always in sync - DropBox.com (0) | 2009/10/10 |
|---|---|
| Visual C++ 6 Unleashed (0) | 2009/06/29 |
| Visual Studio에서 " " 따옴표로 묶은 문자열만 잡기 (0) | 2009/02/13 |
| Editplus의 정규표현식 사용 문자열 바꾸기 (1) | 2009/02/13 |
| Visual Studio Add-in CopySourceAsHtml (0) | 2008/04/15 |
| Windows RSS Platform (0) | 2008/04/07 |
이번에는 Silverlight의 컨트롤을 정의해서 만들어봅니다.
예전에 강의들을 때 작성하고 다시보니 무슨소린지 모르겠네요.. ㅋㅋㅋ
그래도 전혀 무지한 것 보단 캡쳐라도 약간 있으니 ㅠㅠ 나중에 약간이라도 도움될 듯..
부족하지만 1%라도 얻을게 있을지 모르니 정리 안된 상태로 등록합니다... ㅋㅋ
Generic.xaml
-
Custom Control의 기본 모양을 정의하는 파일
-
Xmlns와 xmlns:x는 page.xaml에서 가져온다
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
</ResourceDictionary>
public class MyControl : Control
{
public MyControl()
{
this.DefaultStyleKey = typeof(MyControl);
}
}
Control을 상속 받고
기본 스타일 키를 현재 형식의 타입을 지정한다.
재정의할 메소드가 있는데, OnApplyTemplate 을 override 하여 메소드를 만든다
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
}
이제 Generic.xaml에서 내가 작성하는 control의 네임스페이스를 지정한다.
my로 prefix를 주었으므로 my를 앞으로 사용하게 된다
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:my="clr-namespace:CustomControlTest2"
>
<Style TargetType="my:MyControl">
</Style>
</ResourceDictionary>
이제 컨트롤의 템플릿을 만든다
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:my="clr-namespace:CustomControlTest2"
>
<Style TargetType="my:MyControl">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="my:MyControl">
<Grid>
<TextBlock x:Name="MyText" Text="안녕?" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
이제 기본적인 내용은 끝났고 Grid 안에 내용을 지정한다.
이제 컨트롤에서 속성을 노출할 수 있도록 작성해보자.
propdp를 입력하면 인텔리센스로 작성할 수 있다.
마지막에 UIxxxxxxx(0) 라고 나오는 부분은 지워주고 PropertyMetadata 로 변경해야한다.
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace CustomControlTest2
{
public class MyControl : Control
{
TextBlock _tb = null;
public string Text
{
get { return (string)GetValue(TextProperty); }
set { SetValue(TextProperty, value); }
}
// Using a DependencyProperty as the backing store for Text. This enables animation, styling, binding, etc...
public static readonly DependencyProperty TextProperty =
DependencyProperty.Register(
"Text",
typeof(string),
typeof(MyControl),
new PropertyMetadata(new PropertyChangedCallback(
// e는 보낸쪽
(d, e) =>
{
MyControl myControl = d as MyControl;
if (myControl != null && myControl._tb != null)
{
myControl._tb.Text = e.NewValue.ToString();
}
})
)
);
public MyControl()
{
this.DefaultStyleKey = typeof(MyControl);
}
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
// 컨트롤에 들어 있는 TextBlock을 가져온다.
_tb = GetTemplateChild("MyText") as TextBlock;
if (_tb !=null)
{
_tb.Text = "커스텀 컨트롤~!";
}
}
}
}
이제 Page.xaml에 돌아와서 MyControl을 작성해 보자
<UserControl x:Class="CustomControlTest2.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:my="clr-namespace:CustomControlTest2"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<my:MyControl Text="여기에 글을 작성해보자!!"></my:MyControl>
</Grid>
</UserControl>
'.NET > Silverlight' 카테고리의 다른 글
| Silverlight - Network Example 1 (0) | 2009/07/13 |
|---|---|
| Silverlight – Custom control (0) | 2009/07/03 |
| Silverlight Custom control (0) | 2009/06/23 |
| Silverlight – bubbling events (2) | 2009/05/18 |
| Silverlight – DispatcherTimer , Clock (0) | 2009/05/12 |
| Silverlight – Dynamic Page load (0) | 2009/05/10 |

이올린에 북마크하기
이올린에 추천하기
Prev




