본문 바로가기

Application179

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.
ContextMenuStrip Shortcuts using System; using System.Windows.Forms; class Program : Form { private ListBox list; public Program() { // Context menu for e.g. MainMenu, Toolbar, ListView etc. ContextMenuStrip contextMenu = new ContextMenuStrip(); // Init items contextMenu.Items.Add("Add list item"); contextMenu.Items.Add("Remove list item"); contextMenu.Items.Add(new ToolStripSeparator()); contextMenu.Items.Add("Show some .. 2008. 12. 8.
파일의 버젼정보 읽어오기 어떤 파일(exe, dll)의 버전을 읽어 오기 위해서는 3개의 함수를 순서대로 사용해야 합니다. 1. GetFileVersionInfoSize 2. GetFileVersionInfo 3. VerQueryValue 결국 VerQueryValue함수를 호출 하고 난후 버전을 구할수 있죠... 위 3개의 API함수들은 도움말을 참조 하시고 간단한 예제를 만들어 봤습니당... 참고 하세요... 폼위에 memo와 버튼하나 놓았습니다. 도움이 되었음 하네요... 그럼 즐프... procedure TForm1.Button1Click(Sender: TObject); var Size, Size2: DWord; Pt, Pt2: Pointer; begin Memo1.Lines.Clear; Size := GetFileVer.. 2008. 12. 5.