elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Introducción a la Factorización De Semiprimos (RSA)


  Mostrar Mensajes
Páginas: 1 2 3 4 5 6 7 [8] 9 10 11
71  Programación / Programación Visual Basic / Re: Eliminar archivo en: 2 Agosto 2005, 19:49 pm
puedes programar una tarea con el comando at, obviamente esta se debe ejecutar cuando el arxivo ya no este sendo usado, puedes programar un .bat para que elimine el arxivo que kieres,y programas la tarea a una hora especifica para que se ejecute el .bat


un saludo.

72  Foros Generales / Sugerencias y dudas sobre el Foro / Re: PERFIL EN EL FORO en: 2 Agosto 2005, 07:52 am
pues ami me manda a un indice del foro ... no a un hilo o FAQ ....oZangelus



un saludo.
73  Foros Generales / Sugerencias y dudas sobre el Foro / Re: PERFIL EN EL FORO en: 1 Agosto 2005, 22:27 pm
seguro que la subes pero no sabes que hacer.....


copia el link directo de la imagen y metela en los tag's

...obviamente en el campo para la firma .....en el avatar es simplemente con la direccion


un saludo
74  Foros Generales / Sugerencias y dudas sobre el Foro / Re: Cambiar links "modo Batch" en: 1 Agosto 2005, 22:22 pm
pues va a ser keno .... ale busca los mas recientes e intentas a rregrarlos ;)




un saludo ...
75  Programación / Programación Visual Basic / Re: Duda con forms. en: 1 Agosto 2005, 20:25 pm
bueno yo vi un cod en este foro pero en realidad no recuerdo en donde asi que lo pongo aki....lo pegas en un mudulo ...y te habilita la instruccion MakeTransparent con esta lo haces transparente y se ven los controles

Código:
Option Explicit
'Declaraciones de los diferentes tipos de regiones a crear
Private Declare Function CreateRectRgn Lib "gdi32" (ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long
Private Declare Function CreateEllipticRgn Lib "gdi32" (ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long
Private Declare Function CreateRoundRectRgn Lib "gdi32" (ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long, ByVal X3 As Long, ByVal Y3 As Long) As Long
Private Declare Function CreatePolygonRgn Lib "gdi32" (lpPoint As POINTAPI, ByVal nCount As Long, ByVal nPolyFillMode As Long) As Long
'POINTAPI tipo requerido para CreatePolygonRgn
Private Type POINTAPI
        X As Long
        Y As Long
End Type
'Fija la region
Private Declare Function SetWindowRgn Lib "user32" (ByVal hwnd As Long, ByVal hRgn As Long, ByVal bRedraw As Boolean) As Long
'Combina la region
Private Declare Function CombineRgn Lib "gdi32" (ByVal hDestRgn As Long, ByVal hSrcRgn1 As Long, ByVal hSrcRgn2 As Long, ByVal nCombineMode As Long) As Long
'Tipo de combinacion
Const RGN_XOR = 3
'----------------------------------------------------------------------------------------------------
Public Sub MakeTransparent(TransForm As Form)
Dim ErrorTest As Double
    'en caso de que haya un error, se ignora
    On Error Resume Next
   
    Dim Regn As Long
    Dim TmpRegn As Long
    Dim TmpControl As Control
    Dim LinePoints(4) As POINTAPI
   
    'Puesto que las API trabajan en pixels, cambiamos el modo de escala a pixels
    TransForm.ScaleMode = 3
   
    'Debe ejecutarse sobre un formulario son bordes.
    If TransForm.BorderStyle <> 0 Then MsgBox "Cambia el borderstyle a 0!", vbCritical, "ACK!": End
   
    'Hace todo invisible
    Regn = CreateRectRgn(0, 0, 0, 0)
   
    'Un bucle para controlar cada control en el formulario
    For Each TmpControl In TransForm
   
        'Si el control es una linea...
        If TypeOf TmpControl Is Line Then
            'Comprueba la inclinacion
            If Abs((TmpControl.Y1 - TmpControl.Y2) / (TmpControl.X1 - TmpControl.X2)) > 1 Then
                'Si es mas vertical que horizontal entonces..
                'Fija los puntos
                LinePoints(0).X = TmpControl.X1 - 1
                LinePoints(0).Y = TmpControl.Y1
                LinePoints(1).X = TmpControl.X2 - 1
                LinePoints(1).Y = TmpControl.Y2
                LinePoints(2).X = TmpControl.X2 + 1
                LinePoints(2).Y = TmpControl.Y2
                LinePoints(3).X = TmpControl.X1 + 1
                LinePoints(3).Y = TmpControl.Y1
            Else
                'Si es mas horizontal que vertical, entonces...
                'Fija los puntos
                LinePoints(0).X = TmpControl.X1
                LinePoints(0).Y = TmpControl.Y1 - 1
                LinePoints(1).X = TmpControl.X2
                LinePoints(1).Y = TmpControl.Y2 - 1
                LinePoints(2).X = TmpControl.X2
                LinePoints(2).Y = TmpControl.Y2 + 1
                LinePoints(3).X = TmpControl.X1
                LinePoints(3).Y = TmpControl.Y1 + 1
            End If
            'Crea el nuevo poligono con los puntos
            TmpRegn = CreatePolygonRgn(LinePoints(0), 4, 1)
           
        'Si el control es una figura...
        ElseIf TypeOf TmpControl Is Shape Then
           
            'si es asi, comprobamos el tipo
            If TmpControl.Shape = 0 Then
            'Es un rectangulo
                TmpRegn = CreateRectRgn(TmpControl.Left, TmpControl.Top, TmpControl.Left + TmpControl.Width, TmpControl.Top + TmpControl.Height)
            ElseIf TmpControl.Shape = 1 Then
            'Es un cuadrado
                If TmpControl.Width < TmpControl.Height Then
                    TmpRegn = CreateRectRgn(TmpControl.Left, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2, TmpControl.Left + TmpControl.Width, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + TmpControl.Width)
                Else
                    TmpRegn = CreateRectRgn(TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2, TmpControl.Top, TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + TmpControl.Height, TmpControl.Top + TmpControl.Height)
                End If
            ElseIf TmpControl.Shape = 2 Then
            'Es un ovalo
                TmpRegn = CreateEllipticRgn(TmpControl.Left, TmpControl.Top, TmpControl.Left + TmpControl.Width + 0.5, TmpControl.Top + TmpControl.Height + 0.5)
            ElseIf TmpControl.Shape = 3 Then
            'Es un circulo
                If TmpControl.Width < TmpControl.Height Then
                    TmpRegn = CreateEllipticRgn(TmpControl.Left, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2, TmpControl.Left + TmpControl.Width + 0.5, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + TmpControl.Width + 0.5)
                Else
                    TmpRegn = CreateEllipticRgn(TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2, TmpControl.Top, TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + TmpControl.Height + 0.5, TmpControl.Top + TmpControl.Height + 0.5)
                End If
            ElseIf TmpControl.Shape = 4 Then
            'Es un rectangulo redondeado
                If TmpControl.Width > TmpControl.Height Then
                    TmpRegn = CreateRoundRectRgn(TmpControl.Left, TmpControl.Top, TmpControl.Left + TmpControl.Width + 1, TmpControl.Top + TmpControl.Height + 1, TmpControl.Height / 4, TmpControl.Height / 4)
                Else
                    TmpRegn = CreateRoundRectRgn(TmpControl.Left, TmpControl.Top, TmpControl.Left + TmpControl.Width + 1, TmpControl.Top + TmpControl.Height + 1, TmpControl.Width / 4, TmpControl.Width / 4)
                End If
            ElseIf TmpControl.Shape = 5 Then
'Es un cuadrado redondeado
                If TmpControl.Width > TmpControl.Height Then
                    TmpRegn = CreateRoundRectRgn(TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2, TmpControl.Top, TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + TmpControl.Height + 1, TmpControl.Top + TmpControl.Height + 1, TmpControl.Height / 4, TmpControl.Height / 4)
                Else
                    TmpRegn = CreateRoundRectRgn(TmpControl.Left, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2, TmpControl.Left + TmpControl.Width + 1, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + TmpControl.Width + 1, TmpControl.Width / 4, TmpControl.Width / 4)
                End If
            End If
           
            'Si el control es una figura con fondo transparente
            If TmpControl.BackStyle = 0 Then
               
                'Combinamos la region en memoria y creamos una nueva
                CombineRgn Regn, Regn, TmpRegn, RGN_XOR
               
                If TmpControl.Shape = 0 Then
                'Rectangulo
                    TmpRegn = CreateRectRgn(TmpControl.Left + 1, TmpControl.Top + 1, TmpControl.Left + TmpControl.Width - 1, TmpControl.Top + TmpControl.Height - 1)
                ElseIf TmpControl.Shape = 1 Then
                'Cuadrado
                    If TmpControl.Width < TmpControl.Height Then
                        TmpRegn = CreateRectRgn(TmpControl.Left + 1, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + 1, TmpControl.Left + TmpControl.Width - 1, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + TmpControl.Width - 1)
                    Else
                        TmpRegn = CreateRectRgn(TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + 1, TmpControl.Top + 1, TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + TmpControl.Height - 1, TmpControl.Top + TmpControl.Height - 1)
                    End If
                ElseIf TmpControl.Shape = 2 Then
                'Ovalo
                    TmpRegn = CreateEllipticRgn(TmpControl.Left + 1, TmpControl.Top + 1, TmpControl.Left + TmpControl.Width - 0.5, TmpControl.Top + TmpControl.Height - 0.5)
                ElseIf TmpControl.Shape = 3 Then
                'Circulo
                    If TmpControl.Width < TmpControl.Height Then
                        TmpRegn = CreateEllipticRgn(TmpControl.Left + 1, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + 1, TmpControl.Left + TmpControl.Width - 0.5, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + TmpControl.Width - 0.5)
                    Else
                        TmpRegn = CreateEllipticRgn(TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + 1, TmpControl.Top + 1, TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + TmpControl.Height - 0.5, TmpControl.Top + TmpControl.Height - 0.5)
                    End If
                ElseIf TmpControl.Shape = 4 Then
'Rectangulo redondeado
                    If TmpControl.Width > TmpControl.Height Then
                        TmpRegn = CreateRoundRectRgn(TmpControl.Left + 1, TmpControl.Top + 1, TmpControl.Left + TmpControl.Width, TmpControl.Top + TmpControl.Height, TmpControl.Height / 4, TmpControl.Height / 4)
                    Else
                        TmpRegn = CreateRoundRectRgn(TmpControl.Left + 1, TmpControl.Top + 1, TmpControl.Left + TmpControl.Width, TmpControl.Top + TmpControl.Height, TmpControl.Width / 4, TmpControl.Width / 4)
                    End If
                ElseIf TmpControl.Shape = 5 Then
                'Cuadrado redondeado
                    If TmpControl.Width > TmpControl.Height Then
                        TmpRegn = CreateRoundRectRgn(TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + 1, TmpControl.Top + 1, TmpControl.Left + (TmpControl.Width - TmpControl.Height) / 2 + TmpControl.Height, TmpControl.Top + TmpControl.Height, TmpControl.Height / 4, TmpControl.Height / 4)
                    Else
                        TmpRegn = CreateRoundRectRgn(TmpControl.Left + 1, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + 1, TmpControl.Left + TmpControl.Width, TmpControl.Top + (TmpControl.Height - TmpControl.Width) / 2 + TmpControl.Width, TmpControl.Width / 4, TmpControl.Width / 4)
                    End If
                End If
            End If
        Else
                'Crea una region rectangular con estos parametros
                TmpRegn = CreateRectRgn(TmpControl.Left, TmpControl.Top, TmpControl.Left + TmpControl.Width, TmpControl.Top + TmpControl.Height)
           
        End If
           
            'Comprueba que el control tiene ancho o conseguiremos extraños resultados
           
            ErrorTest = 0
            ErrorTest = TmpControl.Width
            If ErrorTest <> 0 Or TypeOf TmpControl Is Line Then
                'Combina las regiones
                CombineRgn Regn, Regn, TmpRegn, RGN_XOR
            End If
       
    Next TmpControl
   
    'Crea las regiones
    SetWindowRgn TransForm.hwnd, Regn, True
   

End Sub


un saludo.
76  Programación / Programación Visual Basic / Re: IExplorer oculto en VB en: 1 Agosto 2005, 08:38 am
sin enbargo para que ejecutes una web determinada, puedes hacerlo con api's

algo asi como:

Código:
Private Declare Function InitCommonControls Lib "Comctl32.dll" () As Long
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Public Enum T_WindowStyle
    Maximized = 3
    Normal = 1
    ShowOnly = 5
End Enum
Public Sub GoToInternet(Parent As Form, URL As String, WindowStyle As T_WindowStyle)
    ShellExecute Parent.hwnd, "Open", URL, "", "", WindowStyle
End Sub

asi para hacer la peticion de la web que deseas simplemente lo haces con la instruccion GoTointernet que hemos declarado


Código:
GoToInternet Me, "aki la web", Normal 


un saludo.
77  Media / Multimedia / Re: Formato OGG Vorbis en: 1 Agosto 2005, 04:35 am
men lo necesitas convertir por compresion o algo por el estilo?¿ .... porke si no estoy mal, cambiandole la extension simplemente keda iwal y funcional

:-\
78  Foros Generales / Sugerencias y dudas sobre el Foro / Re: cambio de nik en foro. en: 1 Agosto 2005, 03:20 am
cuando el nombre sale en rojo es porke ese nick esta siendo usado por otro usuario por lo tanto no te va a dejar usarlo asi que debes buscarte uno diferente o dejar el que tienes por defecto


un saludo.
79  Programación / Programación Visual Basic / Re: como minimizar aplicaciones en: 1 Agosto 2005, 02:11 am
pues no te he entendido que es lo que necesitas....necesitas que se minimize una aplicacion?¿ ..... o que se ejecute en fullscreen?¿ .....o que de fullscreen se minimize?¿


en todo caso para minimizar una aplicacion puedes usar la instruccion Windowstate
Código:
WindowState = 1

trata de ser mas especifico/claro con las preguntas ;)

un saludo.
80  Programación / Programación Visual Basic / Re: Ocultar un fichero en vb en: 31 Julio 2005, 22:29 pm
para eliminar un fixero es simple usa la instruccion kill

Código:
Kill "fixero"

un saludo.
Páginas: 1 2 3 4 5 6 7 [8] 9 10 11
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines