<?xml version="1.0" encoding="UTF-8" ?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
	<channel>
		<title>VNote - VB.NET : Microsoft Visual Studio</title>
		<link>https://vnote.123a.kr/index.php?mid=VBNET</link>
		<description></description>
		<atom:link href="https://vnote.123a.kr/index.php?mid=VBNET&amp;act=rss" rel="self" type="application/rss+xml" />
		<language>ko</language>
		<pubDate>Wed, 13 May 2026 01:29:53 +0900</pubDate>
		<generator>Rhymix</generator>
			<item>
			<title>My.Computer.Registry - 레지스트리 등록</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6917</link>
				<description>If My.Computer.Registry.GetValue(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerSettings&quot;, &quot;ActivePowerScheme&quot;, Nothing) Is Nothing Then My.Computer.Registry.CurrentUser.CreateSubKey(&quot;PowerSettings&quot;) My.Computer.Registry.SetValue(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerSettings&quot;, &quot;ActivePowerScheme&quot;, &quot;8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c&quot;) End If</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>		<category>xpressengine</category>			<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6917</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6917#comment</comments>			<pubDate>Wed, 03 May 2023 16:26:26 +0900</pubDate>
		</item><item>
			<title>SendKeys 사용시 한글전송 문제 해결방법</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6901</link>
				<description>Appium + Win App Driver (WAD) SendKeys 사용시 Unknown server-side error 1. Windows 설정 -&gt; 시간 및 언어 -&gt; 언어 -&gt; 기본 설정 언어 -&gt; 기본 설정 언어 추가하기 -&gt; English 2. 상태표시줄에서 입력 언어를 ENG 로 설정 *ENG 로 선택해도, SendKeys 에서 한글 입력은 정상적으로 동작한다.</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>		<category>iis</category>			<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6901</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6901#comment</comments>			<pubDate>Sat, 25 Feb 2023 09:15:40 +0900</pubDate>
		</item><item>
			<title>SendKeys.Send함수에 들어가는 키값</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6897</link>
				<description>Key 코드 백스페이스 {BACKSPACE} {BS} 또는 {BKSP} BREAK {BREAK} CAPS LOCK {CAPSLOCK} DEL 또는 삭제 {DELETE} 또는 {DEL} 아래쪽 화살표 {DOWN} END {END} ENTER {ENTER} 또는 ~ Esc 키 {ESC} 도움말 {HELP} 홈 {HOME} INS 또는 INSERT {INSERT} or {INS} 왼쪽 화살표 {LEFT} NUM LOCK {NUMLOCK} Page Down {PGDN} Page Up {PGUP} 화면 인쇄 {PRTSC} (나중에 사용할 예약 됨). 오른쪽 화살표 {RIGHT} 스크롤 잠금 {SCROLLLOCK} ...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>		<category>vb.net</category>			<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6897</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6897#comment</comments>			<pubDate>Tue, 14 Feb 2023 16:02:19 +0900</pubDate>
		</item><item>
			<title>vb.net folder name get</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6794</link>
				<description>C:\Windows\SysWOW64 1. Dim split As String() = filePath.Split(&quot;\&quot;) Dim parentFolder As String = split(split.Length - 1) parentFolder = SysWOW64 2. Dim filePath As String = &quot;C:\Windows\SysWOW64&quot; Dim directory As String = Path.GetFileName(filePath) directory = SysWOW64</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6794</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6794#comment</comments>			<pubDate>Tue, 24 May 2022 06:59:59 +0900</pubDate>
		</item><item>
			<title>ftp file upload,download,delete,rename</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6792</link>
				<description>Imports System.Net Imports System.IO Public Class Form1 Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Dim wrUpload As FtpWebRequest = DirectCast(WebRequest.Create _ (&quot;ftp://ftp.test.com/file.txt&quot;), FtpWebRequest) &#039;Specify Username &amp; Password&#039; wrUpload.Credentials = New NetworkCredential(&quot;user&quot;, _ &quot;password&quot;) &#039;Start Upload Process&#039; wrUpload.Method = ...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6792</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6792#comment</comments>			<pubDate>Tue, 17 May 2022 07:19:08 +0900</pubDate>
		</item><item>
			<title>ftp file upload download</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6790</link>
				<description>d</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6790</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6790#comment</comments>			<pubDate>Tue, 17 May 2022 07:11:04 +0900</pubDate>
		</item><item>
			<title>listbox line spacing</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6785</link>
				<description>Spacing: listBox1.ItemSpacing = 10; Indenting each string horizontally: listBox1.ItemFormatStyle.Margin = new Padding(5, 10, 2, 2); listBox1.ItemFormatStyle.Padding = new Padding(7);</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6785</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6785#comment</comments>			<pubDate>Sun, 15 May 2022 07:34:35 +0900</pubDate>
		</item><item>
			<title>키보드 마우스 유휴 상태 체크 /  keyboard mouse idle time</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6783</link>
				<description>Option Strict On Option Explicit On Imports System.Runtime.InteropServices Public Class Form1 Private Declare Function GetLastInputInfo Lib &quot;user32.dll&quot; _ (ByRef plii As PLASTINPUTINFO) As Boolean Private Structure PLASTINPUTINFO Dim cbSize As Integer Dim dwTime As Integer End Structure Private Declare Function SystemParametersInfo Lib &quot;user32&quot; _ Alias &quot;SystemParametersInfoA&quot; (ByVal uAction As Inte...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6783</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6783#comment</comments>			<pubDate>Mon, 09 May 2022 12:39:42 +0900</pubDate>
		</item><item>
			<title>폴더 권한 가져오기</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6781</link>
				<description>Dim fileSec = System.IO.File.GetAccessControl(&quot;폴더&quot;, Security.AccessControl.AccessControlSections.Access) Dim accessRules = fileSec.GetAccessRules(True, True, GetType(System.Security.Principal.NTAccount)) For Each rule As System.Security.AccessControl.FileSystemAccessRule In accessRules MsgBox(rule.IdentityReference.Value) MsgBox(rule.AccessControlType.ToString()) MsgBox(rule.FileSystemRights.ToSt...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6781</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6781#comment</comments>			<pubDate>Thu, 28 Apr 2022 16:36:17 +0900</pubDate>
		</item><item>
			<title>실행중인 프로세스 가져오기</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6779</link>
				<description>Imports System.Diagnostics Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim plist() As Process = Process.GetProcesses() For Each prs As Process In plist ListBox1.Items.Add(prs.ProcessName + &quot; (&quot; + prs.PrivateMemorySize64.ToString() + &quot;)&quot;) &#039;ListBox1.Items.Add(prs.MainWindowTitle + &quot; / (&quot; + prs.PrivateMemorySize64.ToStr...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6779</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6779#comment</comments>			<pubDate>Thu, 28 Apr 2022 15:08:01 +0900</pubDate>
		</item><item>
			<title>열려 있는 폴더 종료 open folder CLOSE</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6777</link>
				<description>열려 있는 폴더 종료 Imports System.Runtime.InteropServices Imports System.Text Public Class Form1 Public Const WM_CLOSE As Integer = &amp;H10 &lt;DllImport(&quot;user32.dll&quot;, EntryPoint:=&quot;FindWindowExW&quot;)&gt; _ Private Shared Function FindWindowExW(ByVal hwndParent As IntPtr, ByVal hwndChildAfter As IntPtr, &lt;InAttribute(), MarshalAs(UnmanagedType.LPTStr)&gt; ByVal lpszClass As String, &lt;InAttribute(), MarshalAs(Unmana...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6777</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6777#comment</comments>			<pubDate>Tue, 26 Apr 2022 09:04:14 +0900</pubDate>
		</item><item>
			<title>VB.NET 경로에서 확장자알아내기, 확장자 없이 파일이름만 알아내기, 경로만 알아내기, 파일이름만 알아내기</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6773</link>
				<description>VB.NET에서 파일 경로가 하나 있다고 가정하에 IO.PATH 클래스에서 여러가지를 알아낼 수 있다. &quot;C:\WorkSpace\N빵계산기v1.0.xlsm&quot; VB.NET 경로에서 확장자 알아내기 Console.WriteLine(&quot;GetExtension : {0}&quot;, IO.Path.GetExtension(path)) VB.NET 경로에서 확장자 없이 파일 이름만 가져오기 Console.WriteLine(&quot;GetFileNameWithoutExtension : {0}&quot;, IO.Path.GetFileNameWithoutExtension(path)) VB.NET 경로에서 확장자 포함한 ...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6773</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6773#comment</comments>			<pubDate>Thu, 17 Mar 2022 09:22:34 +0900</pubDate>
		</item><item>
			<title>vb.net ipvp4 get  / ip가져오기</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6765</link>
				<description>Private Function GetIPv4Address() As String GetIPv4Address = String.Empty Dim strHostName As String = System.Net.Dns.GetHostName() Dim iphe As System.Net.IPHostEntry = System.Net.Dns.GetHostEntry(strHostName) For Each ipheal As System.Net.IPAddress In iphe.AddressList If ipheal.AddressFamily = System.Net.Sockets.AddressFamily.InterNetwork Then GetIPv4Address = ipheal.ToString() End If Next End Func...</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6765</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6765#comment</comments>			<pubDate>Wed, 16 Feb 2022 17:01:08 +0900</pubDate>
		</item><item>
			<title>vb.net administrator privileges</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6763</link>
				<description>You can edit the UAC Settings (in VB 2008) which is located in the Project Settings. Look for the line that says &lt;requestedExecutionLevel level=&quot;asInvoker&quot; uiAccess=&quot;false&quot; /&gt; Change level=&quot;asInvoker&quot; to level=&quot;asInvoker&quot; (same access token as the parent process) level=&quot;requireAdministrator&quot; (require full administrator) level=&quot;highestAvailable&quot; (highest privileges available to the current user)</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6763</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6763#comment</comments>			<pubDate>Wed, 16 Feb 2022 05:46:43 +0900</pubDate>
		</item><item>
			<title>vb.net txt파일 한글깨짐</title>
			<link>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6756</link>
				<description>생성시 Dim f As New System.IO.StreamWriter(&quot;xxx.txt&quot;, True, System.Text.Encoding.GetEncoding(&quot;euc-kr&quot;)) 읽을때 Dim Lines() As String = IO.File.ReadAllLines(&quot;xxx.txt&quot;,, System.Text.Encoding.Default)</description>
		<category>VNote - VB.NET : Microsoft Visual Studio</category>					<dc:creator>VNote</dc:creator>
			<guid isPermaLink="true">https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6756</guid>
	<comments>https://vnote.123a.kr/index.php?mid=VBNET&amp;document_srl=6756#comment</comments>			<pubDate>Mon, 14 Feb 2022 06:51:50 +0900</pubDate>
		</item>	</channel>
</rss>
