Skip to content
This repository was archived by the owner on Jan 23, 2021. It is now read-only.

Commit d699001

Browse files
committed
1.0.3 Update
1 parent fedd16e commit d699001

File tree

4 files changed

+36
-13
lines changed

4 files changed

+36
-13
lines changed
File renamed without changes.

cmds/copyto.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@echo off
2+
echo Enter file path:
3+
set /p path=
4+
adb\adb.exe pull %path% %USERPROFILE%\Desktop
5+
pause
6+
exit

src/ADBManager/Form1.Designer.vb

Lines changed: 25 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ADBManager/Form1.vb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
End Sub
2121

2222
Private Sub BtnCopy_Click(sender As Object, e As EventArgs) Handles BtnCopy.Click
23-
Process.Start("C:\Windows\system32\cmd.exe", "/C cmds\copy.bat")
23+
Process.Start("C:\Windows\system32\cmd.exe", "/C cmds\copyfrom.bat")
24+
End Sub
25+
26+
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
27+
Process.Start("C:\Windows\system32\cmd.exe", "/C cmds\copyto.bat")
2428
End Sub
2529
End Class

0 commit comments

Comments
 (0)