yo sigo hacienolo por la forma facil, mira:
puse en el sever:
*drivelistbox
*dirlistbox
*flielistbox
y en el client:
*combobox
*treeview
*listbox
bien, gracias a este code he conseguido q me envie el contenido del drivelistbox del server al combobox del client:
SERVER
Bien, ahora mi duda esta en como mando el contenido del dirlistbox del server al treeview del client, se que he de hacer algo por el estilo:
CLIENT:
SERVER:
todo ello teniendo en cuenta que antes puse:
agradezco la ayuda!!!!!!!
puse en el sever:
*drivelistbox
*dirlistbox
*flielistbox
y en el client:
*combobox
*treeview
*listbox
bien, gracias a este code he conseguido q me envie el contenido del drivelistbox del server al combobox del client:
SERVER
Código [Seleccionar]
Private Sub pausa()
Dim comenzar
Dim controlar
comenzar = Timer
Do Until controlar >= comenzar + 0.01
controlar = Timer
DoEvents
Loop
End Sub
Private Sub WS_DataArrival(ByVal bytesTotal As Long)
Dim datos As String
WS.GetData datos
Select Case datos
Case "getdrives"
Dim x As Integer
For x = 0 To Drive1.ListCount
WS.SendData Drive1.List(x)
pausa
Next
End Select
Bien, ahora mi duda esta en como mando el contenido del dirlistbox del server al treeview del client, se que he de hacer algo por el estilo:
CLIENT:
Código [Seleccionar]
Private Sub Combo1_Change()
WS.SendData Combo1.Text
End Sub
SERVER:
Código [Seleccionar]
Private Sub WS_DataArrival(ByVal bytesTotal As Long)
Dim datos As String
WS.GetData datos
Select Case datos
Case "changedrive"
Drive1.Path = datos
Dim i As Integer
For i = 0 To Dir1.ListCount
WS.SendData Dir1.List(i)
pausa
Next
End Select
todo ello teniendo en cuenta que antes puse:
Código [Seleccionar]
SERVER:
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub
Private Sub Drive1_Change()
On Error Resume Next
Directorios.Path = Drive1.Drive
End Sub
agradezco la ayuda!!!!!!!