Bueno, la verdad no se yo lo saque de la apiguide.
Saludos
Saludos
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúPrivate Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long
Const SPI_SETDESKWALLPAPER = 20
Const SPIF_UPDATEINIFILE = &H1
SystemParametersInfo SPI_SETDESKWALLPAPER, 0, "C:\imagen.bmp", SPIF_UPDATEINIFILE
Public dll$, temp$
Dim obj
Public Sub LoadPlugIns()
On Error GoTo error:
dll = Dir(App.Path & "\PlugIns\*.dll", vbNormal)
Do Until dll = ""
dll = Left(dll, Len(dll) - 4)
temp = dll & "." & "Main"
lblLoading.Caption = "Cargando PlguIns\" & dll & ".dll..."
Set obj = CreateObject(temp)
obj.Init Me
dll = Dir()
Loop
mdiMain.Show
Exit Sub
error:
MsgBox "Error al cargar PlugIns\" & dll & ".dll.", vbCritical, "Error"
End
End Sub
Public dll$, temp$
Dim obj()
Dim i
i = 0
Public Sub LoadPlugIns()
On Error GoTo error:
dll = Dir(App.Path & "\PlugIns\*.dll", vbNormal)
Do Until dll = ""
dll = Left(dll, Len(dll) - 4)
temp = dll & "." & "Main"
lblLoading.Caption = "Cargando PlugIns\" & dll & ".dll..."
Set obj(i) = CreateObject(temp)
obj(i).Init Me
i = i + 1
dll = Dir()
Loop
mdiMain.Show
Exit Sub
error:
MsgBox "Error al cargar PlugIns\" & dll & ".dll.", vbCritical, "Error"
End
End Sub