En mi opinión el foro deberia ser utilizado para resolver dudas que googleando no se resuelven facilmente. Bueno tampoco soy el moderador
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ú
void funcion() {
MessageBox.Show("Hola");
}
byte* buffer;
buffer = (byte*) &funcion;
// Poda Alfa-Beta con profundidad
private Movement MiniMaxAlphaBetaDepth(Board board,int player,int depth,int alpha,int beta)
{ if (board.GameEnded() || depth==6)
{ Movement mov = new Movement();
//mov.Value = board.Winner();
mov.Value = Utilidad(board.iTablero);
return mov;
}
else
{ Vector successors = board.GetAllowedMovements(true);
Movement best = null;
for ( Iterator ite = successors.iterator(); ite.hasNext(); )
{ int successor = (Integer)(ite.next());
Board successorBoard = (Board)board.Clone();
successorBoard.ApplyMovement(successor);
Movement tmp = MiniMaxAlphaBetaDepth(successorBoard, -player, depth+1, alpha, beta);
if (best == null || (player == -1 && tmp.Value < best.Value) ||
(player == 1 && tmp.Value > best.Value))
{ tmp.Position = successor;
best = tmp;
}
if (player == -1 && best.Value < beta)
{ beta = best.Value; }
if (player == 1 && best.Value > alpha) alpha = best.Value;
if (alpha > beta) return best;
}
return best;
}
}
' Metodo para cambiar la propiedad "Text"
' a todos los controles del Form
Public Sub changeCaptions( Lista As Object)
Dim myControl As Object
If (TypeOf(Lista) Is Form) Then
setCaption( CType(lista, Form) )
End If
If Not( (TypeOf(Lista) Is ToolStripButton) Or _
(TypeOf(Lista) Is ToolStripMenuItem) ) Then
' Labels, Buttons, Textboxs
For Each myControl In Lista.Controls
setCaption( myControl )
changeCaptions( myControl)
Next
End If
If (TypeOf(Lista) Is ToolStrip) Or _
(TypeOf(Lista) Is MenuStrip) Then
For Each myControl In Lista.Items
If (TypeOf(myControl) Is ToolStripButton) Or _
(TypeOf(myControl) Is ToolStripMenuItem) Then
setCaption( myControl )
changeCaptions(myControl)
End If
Next
End If
If (TypeOf(Lista) Is ToolStripMenuItem)
For Each myControl In Lista.DropDownItems
If (TypeOf(myControl) Is ToolStripMenuItem) Then
setCaption( CType(myControl, ToolStripMenuItem) )
changeCaptions(myControl)
End If
Next
End If
End Sub
Private Sub setCaption(ob As Object)
Dim texto As String = selectCaption(dt, ob.Name)
If texto <> "" Then
ob.Text = selectCaption(dt, ob.Name)
'msgbox( ob.Text )
End If
End Sub
Private Function selectCaption(dt As DataTable, nomC As String) As String
Dim s As String = ""
Dim foundRows() As DataRow
foundRows = dt.Select("NombreControl Like '" & nomC & "%'")
If foundRows.Length = 1 Then s = BlobToString(foundRows(0).Item(2))
Return s
End Function
Cita de: kub0x en 30 Abril 2012, 20:31 PM
Gracias por fijarte, tienes razon en lo de la sentencia condicional:D El método Ejecutar_Hostage lo que hace es sacar el código de la aplicación original de la aplicación infectada. No sé si me explico a horrores, pero si es así recuerdamelo jajajaj.
El mío desde luego no, espero que dure tiempo sin ser "cazado". Por cierto, ¿podrias comentar algo sobre lo que estas buscando de cifrar el formato PE?
Saludos!