반응형
- Useful Capture Shortcuts Windows Key + Shift + S key Windows Key + Shift + S key Windows Key + Shift + S key Windows Key + v key 2023.07.28
- MS WORD AUTOMATION How to do ms word automation in visual studio 2019 1. Create an MFC app 2. Advanced Feature Options - Automated Checks 3. When a project is created, a new item is added for word automation. First, right-click in the Class Explorer and click the Add, New Item button. 4. MFC Class From TypeLib Select and click , add button push 2023.02.16
- 닥쳐 불평하지마 네가 원하는 삶을 살아 2022.08.22
- 부자의 그릇 부자의 그릇 1 쉽게 읽힌다. 2 사업을 하다 망한 아버지.. 그의 딸.. 그리고 부자의 이야기. 3 그릇은 사업 실패후 다시 도전 해야만 커진다. (다른것으로 키울수있는 방법은 없다) 4 실패를 격어보지 않은 부자는 없다. 2022.08.16
- OpenFileDialog get Path and FileName OpenFileDialog fileOpendialog = new OpenFileDialog(); fileOpendialog.Filter = "All files | *.*"; // 파일 및 경로가 존제하는지 확인 fileOpendialog.CheckFileExists = true; fileOpendialog.CheckPathExists = true; if (fileOpendialog.ShowDialog() == DialogResult.OK) { // ver 01 string test = fileOpendialog.FileName; int index = test.LastIndexOf("\\"); // 마지막줄에 \\ 인덱스 가져오기. string filename_ver1 = test.Substring(ind.. 2021.03.09
- String interpolation String Interpolation string afriend = "Bill"; string firstFriend = "Maria"; string secondFriend = "Sage"; Console.WriteLine("Hello " + afriend); // result : Hello Bill Console.WriteLine($"Hello world!{afriend}"); // result : Hello world!Bill Console.WriteLine($"My friends are {firstFriend} and {secondFriend}"); // result : My friends are Maria and Sage Console.WriteLine($"The name {firstFriend} .. 2021.02.19
- CString increment code example CString strIndex = _T("A"); int addIndexNum = 1;// Use as many numbers as you like. //Change to match encoding ( LPWSTR, LPCWSTR -> LPSTR, LPCSTR ) strIndex.Format(_T("%c"), ((*(LPWSTR)(LPCWSTR)(strIndex)) + addIndexNum)); // result CString is A to B 2020.12.15
- How to remove the console window #include "Stdafx.h" #pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup") void main() { ... ..... } 2020.12.01
- C# Start "Hello World! using System; namespace Kor.Ofic.Bee.ConsoleApp1 { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.WriteLine("I Want Addition!. Please enter two numbers."); Console.WriteLine("First number: "); int num1 = int.Parse(Console.ReadLine()); // first number insert and conversion Console.WriteLine("Second number: "); int num2 = int.Parse(Console.ReadLine());.. 2020.11.25
- 다이얼로그 숨김 프로그램 처음 시작할때부터 숨김. ShowWindow(SW_SHOWMINIMIZED); PostMessage(WM_SHOWWINDOW, FALSE, SW_OTHERUNZOOM); 2020.07.16
반응형