본문 바로가기

분류 전체보기202

중복값 제거 방법 (List 이용) '중복값을 확인후 제거하기 위해 별도 List로 저장 Dim List As List(Of String) = New List(Of String) For i = 0 To count - 1 List.Add(Split(Split(s, "/")(i), "colorHex")(1)) Next '별도 List로 저장된 것중 중복값 제거한 값만 lsv에 추가 Dim N_List As List(Of String) = List.Distinct().ToList For j = 0 To N_List.Count - 1 lsv.Items.Add(N_List(j).ToString) Next 2020. 4. 7.
그리드뷰 전체 DB에 업로드하는 방법 Dim SqlConnnection As New SqlConnection() Dim cmd As New SqlCommand SqlConnnection.ConnectionString = dbstring cmd.CommandText = "Insert into TB_TWD_Phone_Img (ID, PN) Values (@ID, @PN)" cmd.Parameters.Add("@ID", SqlDbType.VarChar) cmd.Parameters.Add("@PN", SqlDbType.VarChar) SqlConnnection.Open() cmd.Connection = SqlConnnection For i = 0 To RadGridView1.Rows.Count - 1 cmd.Parameters(0).Value = .. 2020. 4. 2.
웹사이트 내용 및 제목 얻는 방법 내용을 얻는 간단한 방법 : WebClient x = new WebClient(); string source = x.DownloadString("http://www.singingeels.com/"); Dim x As WebClient = New WebClient() Dim source As String = x.DownloadString("http://www.singingeels.com/") 제목을 얻는 더 간단하고 안정적인 방법 : string title = Regex.Match(source, @"\]*\>\s*(?[\s\S]*?)\", RegexOptions.IgnoreCase).Groups["Title"].Value;Dim title As String = Regex.Match(source, "\]*\.. 2020. 4. 2.
파일 속성 가져오기 파일의 등록정보에 버전 텝이 있는 파일에 대한 버전 정보를 얻는 방법이다. GetFileVersionInfo을 사용해서 파일의 경로를 얻으면 파일 버전 정보 블럭을 얻고 VerQueryValue를 다시 호출해서 파일 버전 정보 블럭에서 원하는 정보 블럭을 지정할 수 있다. ' 파일 버전 정보를 얻는다 Option Explicit Private Type VersionInformationType ' 파일 버전 정보 StructureVersion As String ' 구조 버전 FileVersion As String ' 파일 버전 ProductVersion As String ' 개발 버전 FileFlags As String ' 파일 플래그 TargetOperatingSystem As String ' OS 정보.. 2020. 4. 1.