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 - 79137913

#561
HOLA!!!

Eventos

Código (visualfoxpro) [Seleccionar]
Private Sub WebBrowser1_DownloadBegin()
ct = ct+1
End Sub

Private Sub WebBrowser1_DownloadComplete()
ct = ct-1
if ct = 0 then finish
End Sub


GRACIAS POR LEER!!!
#562
HOLA!!!

En el mundo de las computadoras no existe lo aleatorio...

Todas las funciones aleatorias funcionan con una raiz o semilla un numero base con el cual calculas el resto.

Eso del desplazamiento de bits aleatorio no tiene sentido ya que para hacer esa funciona aleatoria dependerias de la funcion rnd que estas utilizando actualmente por ende es codigo sin sentido.

No se si te fui util o no, mucho no me interesa pero solo queria aclarar eso.

P.D: hay una manera de conseguir numeros aleatorios...
Se necesita un periferico que capte por ejemplo la velocidad del viento (sera aleatoria aunque progresiva y escalada) y ese numero combinado con la fecha y hora actual se usa como semilla para la funcion.

GRACIAS POR LEER!!!
#563
HOLA!!!

Cita de: Bulld0z3r en 24 Febrero 2012, 14:57 PM
Alternativa 3, aprovechando la función de @79137913  ;-):

Código (vb) [Seleccionar]

Private Function MaxInArr(a() As Long) As Long

Dim max As Long

    max=a(0)

    For x = 1 To UBound(a)
        If a(x) >max Then Max = a(x)
   Next

  MaxInarr=max

End Function




Saludos.

Que le hiciste?
· Le quitaste el soporte para arrays irregulares (Lbound)
· Usas memoria sin sentido (variable max)

GRACIAS POR LEER!!!
#564
HOLA!!!

Te dejo una alternativa y una funcionque saca el mayor de un array de x items:

Código (vb) [Seleccionar]
Private Function max4(a As Long, b As Long, c As Long, d As Long) As Long
Dim m1 As Long: Dim m2 As Long
    If a > b Then m1 = a Else m1 = b
    If c > d Then m2 = c Else m2 = d
    If m1 > m2 Then max4 = m1 Else max4 = m2
End Function

Private Function MaxInArr(a() As Long) As Long
    For x = LBound(a) To UBound(a)
        If a(x) > MaxInArr Then MaxInArr = a(x)
    Next
End Function


GRACIAS POR LEER!!!
#565
HOLA!!!

@chance_gardiner:
Yo creo que habria que analizar mas de cerca LA FECHA DE LA ULTIMA RESPUESTA DEL POST (13 Octubre 2008, 18:12, Publicado por: Spider-Net).

No revivas temas, para algo estan los MP's

GRACIAS POR LEER!!!
#566
HOLA!!!

Yo por dia tomo aprox entre 4 y 5 litros de liquido...

Al desayuno un vaso de jugo de naranja con gin zeng.

Durante la mañana y el almuerzo 1,5 L de agua común.

En la merienda Medio litro de leche, leche chocolatada o yogur.

En la cena o por la noche 1,5 L de agua saborizada o gaseosa (no coca-cola).

+ algún que otro vasito con agua o café o te no contabilizado.

GRACIAS POR LEER!!!
#567
HELLO!!!

Well...

Yes, in my post i show the way to send 2 strings at the same time and the way to recive at the same time... you are right about the practicality of your method but what i wanna expose it's that with the regular sockets you can do that because each socket is a separate process.

although...

Nothing XD i'm just kidding :P.

P.S: We need to compare the memory and processor consumption.

THANKS FOR READING!!!
#568
HELLO!!!

Oh! i see this socket sends and recive with multithread, and the regular socket only recive with multithread.

Cool but! (i allways have a but in my pocket XD)
with the regular sockets with this code:


Public sub SendInformation()
Winsock1.senddata 5mbDatastring
Winsock2.senddata 5mbDataString
End Sub


The first socket will start the sending process and the code will go to the next instruction winsock2.senddata 5mbDataString when the second socket starts the process the winsock1 and 2 would be sending at the same time.

What do you think?

THANKS FOR READING!!!
#569
HELLO!!!

Cita de: Speeding en  9 Febrero 2012, 18:28 PM
You're asking him to use paste bin. So your answer is really stupid and not polite.

+1




I really do not understand this to much...
The regular sockets (winsock and socketmaster) already are multithread i think.

For example with 2 winsocks i have this code:

Private sub Winsock1 data arrival()
Do
doevents
Loop
end sub
Private sub winsock2 data arrival()
Debug.print "a"
end sub


If i send information to the first socket the program will enter in an endless loop but if while the program its in that loop i send information to socket2 it will print "a" in the debug window.

it's like reinvent the wheel.

Plz correct me if im wrong.

P.D: I don't read the code, i only have tested the software.

THANKS FOR READING!!!
#570
Android / Re: Motorola Atrix o Samsung Galaxy S2
2 Febrero 2012, 15:31 PM
HOLA!!!

XD Si, mas vale, ahora me baje el "IM+ Pro" anda muy bien, pero como digo android lo mata despues de x inactividad y pasa a modo push y no me llegan las notificaciones hasta que inicio de nuevo la aplicacion.

La configuracion de datos esta puesta en modo Performance y solo 3G//HDSPA+.
Si, Blackberry es mas comodo para todo eso creo XD, el teclado es invaluable.

GRACIAS POR LEER!!!