분류 전체보기590 웹 이미지 가져오기 Image img = Image.FromStream(WebRequest.Create("http://....image").GetResponse().GetResponseStream()); Bitmap b = new Bitmap( WebRequest.Create("http://....").GetResponse().GetresponseSTream() ); 2008. 12. 12. InputBox Function InputBoxDialog.csusing System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace System { /// /// Summary description for InputBox. /// public class InputBoxDialog : System.Windows.Forms.Form { #region Windows Contols and Constructor private System.Windows.Forms.Label lblPrompt; private System.Windows.Forms.Button btnOK; private Sy.. 2008. 12. 11. MessageBox if MessageBox(0, '삭제하시겠습니까?', '삭제 확인창', MB_ICONQUESTION or MB_TASKMODAL or MB_YESNO or MB_DEFBUTTON2) = IDYES then ShowMessage('Ok!'); 2008. 12. 11. How to Execute a Command in C# ? Download source - 4.15 KB Introduction It is normal practice to open the Windows command prompt and execute commands. The command when executed shows the result onto the screen. There are many commands that we execute daily such as dir, find, etc. A situation may arise when you want to execute a (shell) command from the C# application. Don't worry!!! Here is the code to do so… Using the Code The.. 2008. 12. 10. 이전 1 ··· 61 62 63 64 65 66 67 ··· 148 다음