Advertisement
Advertisement
| 04.24.2008 at 09:59AM PDT, ID: 23351026 |
|
[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! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 04.24.2008 at 10:17AM PDT, ID: 21433079 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
Public Sub ShellandWait(ByVal ProcessPath As String)
Dim objProcess As System.Diagnostics.Process
Try
objProcess = New System.Diagnostics.Process()
objProcess.StartInfo.FileName = ProcessPath
objProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal
objProcess.Start()
'Wait until the process passes back an exit code
objProcess.WaitForExit()
'Free resources associated with this process
objProcess.Close()
Catch
MessageBox.Show("Could not start process " & ProcessPath, "Error")
End Try
End Sub
|
| 04.24.2008 at 10:36AM PDT, ID: 21433265 |
| 04.25.2008 at 05:32PM PDT, ID: 21444006 |
| 04.25.2008 at 06:00PM PDT, ID: 21444075 |
| 04.25.2008 at 07:30PM PDT, ID: 21444265 |
| 04.26.2008 at 01:58AM PDT, ID: 21444951 |
| 04.28.2008 at 12:16AM PDT, ID: 21452046 |
| 05.01.2008 at 06:39AM PDT, ID: 21478404 |
| 05.01.2008 at 04:05PM PDT, ID: 21483467 |
1: 2: 3: 4: 5: 6: 7: |
filename_veridata = "c:\windows\NOTEPAD.EXE"
Set objShell = CreateObject("WScript.Shell")
Set objExec = objShell.Exec(filename_veridata)
While objExec.Status = 0
WScript.Sleep 100
Wend
MsgBox filename_veridata & " has now ended with exit code " & objExec.Status
|
| 05.03.2008 at 12:35AM PDT, ID: 21491623 |
| 05.04.2008 at 09:01PM PDT, ID: 21498082 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: |
For i = Forms.count - 1 To 0 Step -1
Forms(i).hide
Next
'MsgBox "Forms hidden."
If open_idem = True Then 'this is the shell call to load the app
'show all active windows
For i = Forms.count - 1 To 0 Step -1
Forms(i).Show
Next
'MsgBox "Forms visible."
End If
Function open_idem
filename_veridata = "c:\windows\NOTEPAD.EXE"
Set objShell = CreateObject("WScript.Shell")
Set objExec = objShell.Exec(filename_veridata)
While objExec.Status = 0
WScript.Sleep 100
Wend
'MsgBox filename_veridata & " has now ended with exit code " & objExec.Status
open_idem = True
End Function
|
| 05.05.2008 at 11:50AM PDT, ID: 21502104 |
| 05.05.2008 at 04:26PM PDT, ID: 21503792 |
| 05.05.2008 at 04:30PM PDT, ID: 21503808 |
| 05.05.2008 at 04:37PM PDT, ID: 21503831 |
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: |
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
For i = Forms.count - 1 To 0 Step -1
Forms(i).hide
Next
'MsgBox "Forms hidden."
If open_idem = True Then 'this is the shell call to load the app
'show all active windows
For i = Forms.count - 1 To 0 Step -1
Forms(i).Show
Next
'MsgBox "Forms visible."
End If
Function open_idem
filename_veridata = "c:\windows\NOTEPAD.EXE"
Set objShell = CreateObject("WScript.Shell")
Set objExec = objShell.Exec(filename_veridata)
While objExec.Status = 0
Sleep 100
Wend
'MsgBox filename_veridata & " has now ended with exit code " & objExec.Status
open_idem = True
End Function
|