Question : Can Excel-VBA call a Sub with a no wait option?

I wish to have a VBA subroutine while executing invoke an other sub to start executing while the original code continues execution in parallel.

the code fragment is ment to cause the named Excel cells Name and Status to alternate  values every second for five seconds.  I use a made up construct "CallNoWait" to illustrate my needs.
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:
33:
34:
'Code fragment


Private Sub Test()

    Dim i As Integer

    'invoke Test2 to execute simultaneously

'    callNoWait Test2  ' or some other command

    Call Test2

    For i = 1 To 5
        Range("Status") = "On"
        Application.Wait (Now + TimeValue("0:00:01"))
        Range("Status") = "Off"
        Application.Wait (Now + TimeValue("0:00:01"))
    Next i
    
End Sub

Private Sub Test2()

    Dim i As Integer

    For i = 1 To 5
        Range("Name") = "Me"
        Application.Wait (Now + TimeValue("0:00:01"))
        Range("Name") = "You"
        Application.Wait (Now + TimeValue("0:00:01"))
    Next i
    
End Sub

Answer : Can Excel-VBA call a Sub with a no wait option?

MS initiator doesn't support teaming.
With 2 NICS, two switches and 2 ports on the SAN target you should go to the iSCSI initiator and login to all 4 paths to the LUN, then you can select Round Robin under load balancing policy, it doesn't always loa balance very well though as it's relying on equal traffic on each LUN, http://support.microsoft.com/kb/969748/en-us appplies.

There may be a DSM from Cybernetics, if not the MS DSM ought to work OK, don't forget to enable MPIO or you may see the same LUN 4 times.
Random Solutions  
 
programming4us programming4us