Guest User

Untitled

a guest
Jul 12th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 10.08 KB | None | 0 0
  1. 'Set Device Image
  2.     Private Sub GetImage()
  3.         lang.Load()
  4.         Dim P As Process
  5.         Dim Hardware As String
  6.  
  7.         Dim psw As String = MaskedTextBox1.Text
  8.  
  9.         P = New Process()
  10.         P.StartInfo.UseShellExecute = False
  11.         P.StartInfo.RedirectStandardOutput = True
  12.         ' Specify the location of the binary
  13.         P.StartInfo.FileName = "javaloader.exe"
  14.  
  15.         ' Use these arguments for the process
  16.  
  17.         If MaskedTextBox1.Text = "" Then
  18.             P.StartInfo.Arguments = "-u deviceinfo"
  19.         Else
  20.             P.StartInfo.Arguments = "-u -w" & psw & " deviceinfo"
  21.         End If
  22.         ' Use a hidden window
  23.         P.StartInfo.CreateNoWindow = True
  24.         P.Start()
  25.         Dim S As String
  26.         Dim myStreamReader As System.IO.StreamReader = P.StandardOutput
  27.         S = myStreamReader.ReadLine()
  28.         If (S = "") Then
  29.             MsgBox(lang.nodevice, MsgBoxStyle.Exclamation)
  30.         Else
  31.             If ((S.Length() - 8) >= 8) Then
  32.                 Hardware = S.Substring(S.Length() - 7)
  33.                 Select Case Hardware
  34.  
  35.  
  36.                     '8100
  37.                     Case "4000d03"
  38.                         PictureBox1.Image = My.Resources.Resource1.Pearl
  39.                         PictureBox1.Location = New Point(-18, 3)
  40.                         '8110
  41.                     Case "f000d03"
  42.                         PictureBox1.Image = My.Resources.Resource1.Pearl
  43.                         PictureBox1.Location = New Point(-18, 3)
  44.                         '8120
  45.                     Case "d000d03"
  46.                         PictureBox1.Image = My.Resources.Resource1.Pearl
  47.                         PictureBox1.Location = New Point(-18, 3)
  48.                         '8130
  49.                     Case "4000d04"
  50.                         PictureBox1.Image = My.Resources.Resource1.Pearl
  51.                         PictureBox1.Location = New Point(-18, 3)
  52.                         '8130m
  53.                     Case "6000d04"
  54.                         PictureBox1.Image = My.Resources.Resource1.Pearl
  55.                         PictureBox1.Location = New Point(-18, 3)
  56.  
  57.                         '8220
  58.                     Case "d001103"
  59.                         PictureBox1.Image = My.Resources.Resource1._8200
  60.                         PictureBox1.Location = New Point(-18, 3)
  61.                         '8230
  62.                     Case "4001104"
  63.                         PictureBox1.Image = My.Resources.Resource1._8200
  64.                         PictureBox1.Location = New Point(-18, 3)
  65.                         '8230m
  66.                     Case "6001104"
  67.                         PictureBox1.Image = My.Resources.Resource1._8200
  68.                         PictureBox1.Location = New Point(-18, 3)
  69.  
  70.                         '8300
  71.                     Case "6000f03"
  72.                         PictureBox1.Image = My.Resources.Resource1._8300
  73.                         PictureBox1.Location = New Point(-18, 3)
  74.                         '8310
  75.                     Case "d000f03"
  76.                         PictureBox1.Image = My.Resources.Resource1._8300
  77.                         PictureBox1.Location = New Point(-18, 3)
  78.                         '8320
  79.                     Case "4000f03"
  80.                         PictureBox1.Image = My.Resources.Resource1._8300
  81.                         PictureBox1.Location = New Point(-18, 3)
  82.                         '8330
  83.                     Case "4000f04"
  84.                         PictureBox1.Image = My.Resources.Resource1._8300
  85.                         PictureBox1.Location = New Point(-18, 3)
  86.                         '8330m
  87.                     Case "6000f04"
  88.                         PictureBox1.Image = My.Resources.Resource1._8300
  89.                         PictureBox1.Location = New Point(-18, 3)
  90.                         '8350
  91.                     Case "4000f05"
  92.                         PictureBox1.Image = My.Resources.Resource1._8350
  93.                         PictureBox1.Location = New Point(0, 3)
  94.                         '8520
  95.                     Case "8C000F03"
  96.                         PictureBox1.Image = My.Resources.Resource1._8520
  97.                         PictureBox1.Location = New Point(-18, 3)
  98.                         '8530
  99.                     Case "5000F04"
  100.                         PictureBox1.Image = My.Resources.Resource1._8520
  101.                         PictureBox1.Location = New Point(-18, 3)
  102.  
  103.                         '8800
  104.                     Case "4000e03"
  105.                         PictureBox1.Image = My.Resources.Resource1._8830
  106.                         PictureBox1.Location = New Point(-18, 3)
  107.                         '8820
  108.                     Case "d000e03"
  109.                         PictureBox1.Image = My.Resources.Resource1._8830
  110.                         PictureBox1.Location = New Point(-18, 3)
  111.                         '8830
  112.                     Case "04000e04"
  113.                         PictureBox1.Image = My.Resources.Resource1._8830
  114.                         PictureBox1.Location = New Point(-18, 3)
  115.                         '8830m
  116.                     Case "6000e04"
  117.                         PictureBox1.Image = My.Resources.Resource1._8830
  118.                         PictureBox1.Location = New Point(-18, 3)
  119.  
  120.                         '8900
  121.                     Case "4001503"
  122.                         PictureBox1.Image = My.Resources.Resource1._8900
  123.                         PictureBox1.Location = New Point(-18, 3)
  124.                         '8910
  125.                     Case "86001503"
  126.                         PictureBox1.Image = My.Resources.Resource1._8900
  127.                         PictureBox1.Location = New Point(-18, 3)
  128.                         '8980
  129.                     Case "85001503"
  130.                         PictureBox1.Image = My.Resources.Resource1._8520
  131.                         PictureBox1.Location = New Point(-18, 3)
  132.                         '9000
  133.                     Case "4000e07"
  134.                         PictureBox1.Image = My.Resources.Resource1.bold
  135.                         PictureBox1.Location = New Point(-18, 3)
  136.                         '9100/9150
  137.                     Case "5000d07"
  138.                         PictureBox1.Image = My.Resources.Resource1._9100
  139.                         PictureBox1.Location = New Point(-18, 3)
  140.                         '9300
  141.                     Case "4000f07"
  142.                         PictureBox1.Image = My.Resources.Resource1._9300
  143.                         PictureBox1.Location = New Point(-18, 3)
  144.                         '9330
  145.                     Case "0e000f04"
  146.                         PictureBox1.Image = My.Resources.Resource1._9300
  147.                         PictureBox1.Location = New Point(-18, 3)
  148.                         '9350
  149.                     Case "c000f04"
  150.                         PictureBox1.Image = My.Resources.Resource1._9350
  151.                         PictureBox1.Location = New Point(-18, 3)
  152.                         '9360
  153.                     Case "0e000f04"
  154.                         PictureBox1.Image = My.Resources.Resource1._9350
  155.                         PictureBox1.Location = New Point(-18, 3)
  156.                         '9370
  157.                     Case "e001507"
  158.                         PictureBox1.Image = My.Resources.Resource1._9350
  159.                         PictureBox1.Location = New Point(-18, 3)
  160.                         '9500
  161.                     Case "4000e07"
  162.                         PictureBox1.Image = My.Resources.Resource1.storm
  163.                         PictureBox1.Location = New Point(-18, 3)
  164.                         '9520
  165.                     Case "d001404"
  166.                         PictureBox1.Image = My.Resources.Resource1._9550
  167.                         PictureBox1.Location = New Point(-18, 3)
  168.                         '9530
  169.                     Case "4001404"
  170.                         PictureBox1.Image = My.Resources.Resource1.storm
  171.                         PictureBox1.Location = New Point(-18, 3)
  172.                         '9550
  173.                     Case "c001404"
  174.                         PictureBox1.Image = My.Resources.Resource1._9550
  175.                         PictureBox1.Location = New Point(-18, 3)
  176.                         '9630
  177.                     Case "d000d04"
  178.                         PictureBox1.Image = My.Resources.Resource1.tour
  179.                         PictureBox1.Location = New Point(15, 3)
  180.                         '9630fts
  181.                     Case "16000d04"
  182.                         PictureBox1.Image = My.Resources.Resource1.tour
  183.                         PictureBox1.Location = New Point(15, 3)
  184.                         '9650
  185.                     Case "5001504"
  186.                         PictureBox1.Image = My.Resources.Resource1._9650
  187.                         PictureBox1.Location = New Point(-15, 3)
  188.                         '9650
  189.                     Case "7001504"
  190.                         PictureBox1.Image = My.Resources.Resource1._9650
  191.                         PictureBox1.Location = New Point(-15, 3)
  192.                         '9700
  193.                     Case "4001507"
  194.                         PictureBox1.Image = My.Resources.Resource1._9700
  195.                         PictureBox1.Location = New Point(-15, 3)
  196.                         '9800
  197.                     Case "5001807"
  198.                         PictureBox1.Image = My.Resources.Resource1._9800
  199.                         PictureBox1.Location = New Point(-15, 3)
  200.                         '9850
  201.                     Case "16001404"
  202.                         PictureBox1.Image = My.Resources.Resource1._9850
  203.                         PictureBox1.Location = New Point(-15, 3)
  204.                         '9860
  205.                     Case "1D001404"
  206.                         PictureBox1.Image = My.Resources.Resource1._9850
  207.                         PictureBox1.Location = New Point(-15, 3)
  208.                         '9900
  209.                     Case "7001204"
  210.                         PictureBox1.Image = My.Resources.Resource1._9930
  211.                         PictureBox1.Location = New Point(-15, 3)
  212.                         '9930
  213.                     Case "5001204"
  214.                         PictureBox1.Image = My.Resources.Resource1._9930
  215.                         PictureBox1.Location = New Point(-15, 3)
  216.                 End Select
  217.  
  218.             End If
  219.  
  220.  
  221.         End If
  222.  
  223.     End Sub
Add Comment
Please, Sign In to add comment