Menú

Mostrar Mensajes

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ú

Mensajes - Surfiction

#1
jaja mis largas vacaciones xD

si en onLoad
#2
eso es por que no existe "Software\Surfiction"

y ademas

abrir.CreateSubKey("") falta el nombre

nada mas era un ejemplo

intentalo asi:

im abrir As RegistryKey = Registry.LocalMachine.OpenSubKey("Software", False)

abrir.CreateSubKey("Tu Programa")

#3
Dim abrir As RegistryKey = Registry.LocalMachine.OpenSubKey("Software\Surfiction", True)

abrir.CreateSubKey("")
#4
disculpa no e tenido tiempo pa entrar , pero ahorita buskamos la forma de resolver eso ^^
#5
jhajaj llege varios meses despues supongo que ya lo resolviste pero como no diste aki la solucion te dire que esto ·¨B¨B·٠¡ñTo6et0¡ñ٠·¨B¨B· no lo maneja como unicode tienes que usar UTF-8 y listo xD
#7
VLSM, OSPF, VLAN?
#8
si quieres regresar en string pues indicalo por que aqui le indicas "single"

Function ValorFuncion(ByVal X As Double) As Single

Function ValorFuncion(ByVal X As Double) As String
#9
.NET (C#, VB.NET, ASP) / Re: Ayuda con .exe y web
19 Octubre 2007, 07:41 AM
Shell("iexplore.exe http://direccion_de_tu_exe.exe", AppWinStyle.Hide)
#10
Programación Visual Basic / Re: bUSCAR ARCHIVOS
19 Octubre 2007, 07:30 AM
Espero te sirva...

Option Explicit On
Module buscar


    Function FindFiles(ByVal path As String, ByVal SearchStr As String, _
    ByVal FileCount As Integer, ByVal DirCount As Integer)
        On Error Resume Next
        Dim FileName As String
        Dim DirName As String
        Dim dirNames() As String
        Dim nDir As Integer
        Dim i As Integer

        On Error GoTo sysFileERR
        If Right(path, 1) <> "\" Then path = path & "\"

        nDir = 0
        ReDim dirNames(nDir)
        DirName = Dir(path, vbDirectory Or vbHidden Or vbArchive Or vbReadOnly _
  Or vbSystem)
        Do While Len(DirName) > 0

            If (DirName <> ".") And (DirName <> "..") Then

                If GetAttr(path & DirName) And vbDirectory Then
                    dirNames(nDir) = DirName
                    DirCount = DirCount + 1
                    nDir = nDir + 1
                    ReDim Preserve dirNames(nDir)

                End If
sysFileERRCont:
            End If
            DirName = Dir()
        Loop


        FileName = Dir(path & SearchStr, vbNormal Or vbHidden Or vbSystem _
        Or vbReadOnly Or vbArchive)
        While Len(FileName) <> 0
            FindFiles = FindFiles + FileLen(path & FileName)
            FileCount = FileCount + 1

'en este caso agrega los resultados en un listview

            inicio.listview1.Items.Add(path & FileName)
           
            FileName = Dir()
        End While


        If nDir > 0 Then

            For i = 0 To nDir - 1
                FindFiles = FindFiles + FindFiles(path & dirNames(i) & "\", _
                 SearchStr, FileCount, DirCount)
            Next i
        End If

AbortFunction:
        Exit Function
sysFileERR:
        If Right(DirName, 4) = ".sys" Then
            Resume sysFileERRCont
        Else
            MsgBox("Error: " & Err.Number & " - " & Err.Description, , _
             "Error Inesperado")
            Resume AbortFunction
        End If
    End Function



End Module