|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: |
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Filename1 As String
Filename1 = TextBox1.Text
Dim MiddleName As String
MiddleName = TextBox1.Text.Remove(0, 4)
Dim quote As String
quote = Chr(34)
Me.ProgressBar1.Maximum = 6
Me.ProgressBar1.Minimum = 0
Me.ProgressBar1.Value = 0
Dim str As String = TextBox1.Text
If (str.Contains("CCMS") And str.Contains(".mpg")) Then
' Proceed Furter
ExecCommand("cmd", " /c " & "copy " & quote & "W:\" & Filename1 & quote & " c:\CCMS\", Waitforexit:=True)
Me.ProgressBar1.Value = 1
ExecCommand("cmd", " /c " & "copy " & quote & "T:\" & Filename1 & quote & " c:\CCMS\", Waitforexit:=True)
Me.ProgressBar1.Value = 2
ExecCommand("cmd", " /c " & "copy " & quote & "c:\ccms\" & Filename1 & quote & " c:\ccms\archive", Waitforexit:=True)
Me.ProgressBar1.Value = 3
ExecCommand("cmd", " /c " & "rename " & quote & "c:\CCMS\" & Filename1 & quote & " " & quote & MiddleName, Waitforexit:=True)
Me.ProgressBar1.Value = 4
ExecCommand("cmd", " /c " & "c:\docume~1\" & "Administrator\Desktop\febootimail.exe" & " -server 172.16.4.21 -from ClearCut@MCVOD.COM -to marc.viste@echostar.com;ociel.ogalde@echostar.com;buffington.cook@echostar.com;ricardo1.rodriguez@echostar.com;amy.still@echostar.com;lynn.hopkins@echostar.com;hugh.selway@echostar.com;doug.davis@echostar.com;jada.yearick@echostar.com;adsalestraffic@echostar.com -subject TSI Trigger Spot Completed -text " & MiddleName, Waitforexit:=True)
Me.ProgressBar1.Value = 5
ExecCommand("cmd", " /c " & "move " & quote & "c:\ccms\" & MiddleName & quote & " r:", Waitforexit:=True)
Me.ProgressBar1.Value = 6
Message.Show()
Else
' Error Message
Message2.Show()
End If
|
Advertisement
| Hall of Fame |