본문 바로가기

VB.net106

문자열 검색 기능 'treeview1 node 클릭 시 검색한 결과도 Richtextbox1에서 찾기 If TextBox1.Text "" Then Dim index1 As Integer = 0 Dim index2 As Integer = 0 Dim temp1 As String = RichTextBoxEx1.Rtf Dim temp2 As String = RichTextBoxEx2.Rtf RichTextBoxEx1.Rtf = "" RichTextBoxEx1.Rtf = temp1 RichTextBoxEx2.Rtf = "" RichTextBoxEx2.Rtf = temp2 'Richtextboxex1 검색 While index1 < RichTextBoxEx1.Text.LastIndexOf(TextBox1.Text) RichTextB.. 2018. 5. 23.
공부 필요 Anti Process Kill Module Anti_Process_Kill +Public Class Anti_Task_Manager_Kill+ '************************************************+ '* Product : Anti Task Manager Kill VB.Net 2012 *+ '* Coder : Mr.Wolf *+ '* Date : 10-10-2014 *+ '************************************************+ Public Shared MyProcessName As String = "" 'Put The Prcess Name In TaskManager+ Public Shared Sub START()+ If Not IO.File.Exists(KILP.Re.. 2018. 5. 16.
SHA256 암복호화 Imports SystemImports System.IOImports System.Security.CryptographyImports System.Text Module PW '//********************************************************* '// 스트링/파일 암/복호화 클래스(비대칭 알고리즘 사용) '//********************************************************* Public Class Crypto '//********************************************************* '// 비대칭 암/복호화 알고리즘 상수 '//***************************************.. 2018. 5. 11.
파일 이어쓰기, 연달아 쓰기, 다음줄 쓰기 파일 이어쓰기, 연달아 쓰기, 다음줄 쓰기 Dim path As String = "c:\temp\MyTest.txt" Dim textValue As String = vbCrLf & "추가" System.IO.File.AppendAllText(path, textValue, Encoding.Default) 출처: http://byhwan.tistory.com/entry/파일-이어쓰기-연달아-쓰기-다음줄-쓰기 [By Hwan] 2018. 5. 11.