Añadir opcion al JumpList

Iniciado por brock, 14 Diciembre 2010, 18:01 PM

0 Miembros y 1 Visitante están viendo este tema.

brock

Se puede poner que cuando tengas un string y des un punto, usease "string." te salga algo?, es que quiero tener una opcion de  "PonerAntiInjection" y molaria poner "VariableString.AntiInjection", asi seria mas rapido que llamar a la funcion..

BlackZeroX

.
Debes usar structuras o un modulo de clase.

Ejemplo con una estructura...

Código (vb) [Seleccionar]


Option Explicit

Private Type tSctructure
  vData As String
  vOTros() As String
End Type

Dim vtVar As tSctructure

Sub main()
    vtVar.vData = "BlackZeroX"
    MsgBox vtVar.vData
    Rem o tambien asi
    With vtVar
        .vData = "BlackZeroX"
        MsgBox .vData
    End With
End Sub



Dulces Lunas!¡.
The Dark Shadow is my passion.