블로그
- Install the RPC over HTTP Proxy component using Server Manager To see what permissions you need, see the "RPC over HTTP Proxy component" entry in the Client Access In the Add Features Wizard, on the Features page, select the check box for RPC over HTTP Proxy, and then
- [C#학습셀03-18] How to: Display an OpenFileDialog Dynamically Dynamically http://msdn.microsoft.com/en-us/library/yt4zx6ty(v=VS.90).aspx You can use the OpenFileDialog component // Initialize the OpenFileDialog to look for text files. openFile1.Filter = "Text Files|*.txt"; // Check
- [C#학습셀03-16] How to: Save a File to a Folder /msdn.microsoft.com/en-us/library/bb397505(v=VS.90).aspx You can use the built-in SaveFileDialog component You can then check whether the user clicked the OK button by using the DialogResult.OK field.
- [C#학습셀03-15] How to: Browse a Folder msdn.microsoft.com/en-us/library/bb383879(v=VS.90).aspx You can use the built-in FolderBrowserDialog component You can then check whether the user clicked the OK button by using the DialogResult.OK field.