Programming
-
[VB] Keyboard CodeProgramming/Visual Basice 2010. 10. 6. 10:45
VB 6.0 키 코드 상수 값 설명 vbKeyLButton 1 마우스 왼쪽 단추 vbKeyRButton 2 마우스 오른쪽 단추 vbKeyCancel 3 취소키 vbKeyMButton 4 마우스 가운데 단추 vbKeyBack 8 키 vbKeyTab 9 키 vbKeyClear 12 키 vbKeyReturn 13 키 vbKeyShift 16 키 vbKeyControl 17 키 vbKeyMenu 18 키 vbKeyPause 19 키 vbKeyCapital 20 키 vbKeyEscape 27 키 vbKeySpace 32 키 vbKeyPageUp 33 키 vbKeyPageDown 34 키 vbKeyEnd 35 키 vbKeyHome 36 키 vbKeyLeft 37 키 vbKeyUp 38 키 vbKeyRight 39 ..
-
[VB] On Error 문을 이용한 에러제어Programming/Visual Basice 2010. 9. 15. 13:30
방법1. On Error GoTo ErrorHandler 구문 실행중 Error가 발생하였을 경우에 지정된 ErrorHandler를 발생합니다.Sub InitializeMatrix(Var1, Var2, Var3, Var4) On Error GoTo ErrorHandler . . . Exit Sub ErrorHandler: . . . '에러 발생시 처리하는 내용을 기술합니다. End Sub 방법2. On Error Resume Next 실행 오류를 발생시키는 문장의 바로 다음 문장이나 On Error Resume Next 문을 가진 프로시저로부터 가장 최근에 호출된 바로 다음 문장을 사용하여 계속 실행한다. Sub InitializeMatrix(Var1, Var2, Var3, Var4) On Error G..
-
[VB] Data TypeProgramming/Visual Basice 2010. 9. 14. 08:44
Visual Basic 6.0에 관련된 데이터 형식 가장 기본적으로 프로그램을 만들때 사용되는 형식으로 기초부터 알고 넘어가야됨! 데이터 형식 저장 용량 범위 Byte 1바이트 0부터 255까지 Boolean 2바이트 True 또는 False Integer 2바이트 -32,768부터 32,767까지 Long (자세한 정수) 4바이트 -2,147,483,648부터 2,147,483,647까지 Single (단정도 부동 소수점) 4바이트 -3.402823E38부터 -1.401298E-45까지(음수값). 1.401298E-45부터 3.402823E38까지(양수값) Double (배정도 부동 소수점) 8바이트 -1.79769313486232E308부터 -4.94065645841247E-324까지(음수값). 4...
-
[C#] Registry.. Read and WriteProgramming/C# 2010. 6. 24. 18:04
Registry에 등록되어잇는 값을 가져오는 방법..... public string Read(string KeyName) { // Opening the registry key RegistryKey rk = baseRegistryKey ; // Open a subKey as read-only RegistryKey sk1 = rk.OpenSubKey(subKey); // If the RegistrySubKey doesn't exist -> (null) if ( sk1 == null ) { return null; } else { try { // If the RegistryKey exists I get its value // or null is returned. return (string)sk1.GetValue..
-
[단축키] Visual Studio 2008 and Visual Studio 2010..Programming 2010. 6. 14. 10:02
visual studio 2008 http://www.microsoft.com/downloads/details.aspx?familyid=e5f902a8-5bb5-4cc6-907e-472809749973&displaylang=en http://www.microsoft.com/downloads/details.aspx?familyid=4411bbfc-0e3c-42b3-bd05-af1d292c986f&displaylang=en visual studio 2010 http://www.microsoft.com/downloads/details.aspx?FamilyID=92CED922-D505-457A-8C9C-84036160639F&displayLang=en
-
리눅스 소켓 프로그래밍(Fork() 사용)Programming/C / C++ 2010. 5. 18. 18:46
리눅스에서 사용하는 소켓 프로그래밍 관련된 내용입니다. 출처 : 교수님.. ㅋ #include #include #include #include #include #include #define BUFSZ 512 typedef struct _msg{ long msg_type; char msg_text[BUFSZ]; } msg_t; int main(int argc, char* argv[]) { pid_t pid; int len, qid; msg_t pmsg; key_t key; if(argc != 2) { printf("Usage : %s msqkey", argv[0]); exit(EXIT_FAILURE); } key = atoi(argv[1]); if((qid = msgget(key, IPC_CREAT | 0..
-
[암호화] C#으로 구현된 DES 알고리즘사용Programming/암호학 2010. 5. 17. 15:22
펌: http://www.codeproject.com/KB/cs/NET_Encrypt_Decrypt.aspx C#으로 구현된 DES 알고리즘에 대해서 찾다가.. Code project에 구현되어있는 내용을 가져왔다. Console.ReadLine()을 통해서 암호화할 문자를 가져와 Encrypt에서 암호화를 하고 Decrypt에서 복호화를 진행한다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; using System.IO; namespace EncryptAndDecrypt { class Program { static byte[] by..