Danger Zone Binder (ScanTime) + Source [VB6]
Aqui les dejo otra tool OpenSource hecha con mi bro Skull nos tomo como 3 dias hacerlo ya que yo por no tener tiempo de entrar a la PC no acababa el Stub xD … solo hacia pocas lineas y luego salia… jeje en fin no es dificil hacer esto y ustedes mismos lo podran ver en el source sin mas palabras que escribir
…. se los dejo pa que lo descarguen
…. Bye Bye









Thanks brother
Its have a bug in the IconChanger module:
If EndUpdateResource(lUpdate, False) = False Then
ChangeIcon = False
CloseHandle (lFile)
End If
Later, the program flow always make it:
Call CloseHandle(lFile)
ChangeIcon = True
End Function
As you can see if the If block runs, its close the handle and put the ChangeIcon flag to false, but later the handle is closed again (report a error internally but the program not will crash), the problem is, the ChangeIcon flag is set to TRUE always, so, if the program fails in update the resource always return TRUE in this point.
Seems that you forgot put Exit Function in the If block,
If EndUpdateResource(lUpdate, False) = False Then
ChangeIcon = False
CloseHandle (lFile)
Exit Function ‘Put here,
End If
Bye,
Gracias!
Gracias por la pagina!
Gracias por la pagina!
gracias de nuevo