Puse <div style="clear: both;"></div> al final del código y funcionó.
¡Gracias a ambos!
Saludos.
¡Gracias a ambos!
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ú<html>
<style>
img{
widht:100px;
height:100px;
}
div#fondo{
margin:auto;
margin-top:5px;
width:465px;
height:auto;
background-color:yellow;
}
div#abc{
margin-left:10px;
float:null;
}
</style>
<div id="fondo">
<div id="abc">
<img src="http://www.enbolivia.com/files/imagen_corporativa.jpg">
<img src="http://www.enbolivia.com/files/imagen_corporativa.jpg">
<img src="http://www.enbolivia.com/files/imagen_corporativa.jpg">
<img src="http://www.enbolivia.com/files/imagen_corporativa.jpg">
<img src="http://www.enbolivia.com/files/imagen_corporativa.jpg">
<img src="http://www.enbolivia.com/files/imagen_corporativa.jpg">
<img src="http://www.enbolivia.com/files/imagen_corporativa.jpg">
</div>
</div>
</html>
<div id="a">
<div id="b">
<?php
include 'connection.php';
$query = "SELECT * FROM tabla1";
$result = mysqli_query($conn, $query)or die(mysqli_error($conn));
while($row = mysqli_fetch_Array($result)) {
echo '<div id="info">';
echo '<img src="'.$row["Imagen"].'">';
echo '</div>';
}
?>
</div>
</div>
div#a{
width:full;
height:1000px;
overflow:auto;
}
div#b{
width: 2000px;
height: 90px;
}
div#info{
}
div#info:hover{
opacity: 0.4;
}
echo '<div id="info">';
echo '</div>';
Cita de: eLank0 en 29 Enero 2016, 14:24 PM
Cuando cargas las imagenes, supongo que las tienes todas en un arreglo, array...
Recorre la array y construye una tabla HTML al vuelo. Sin más datos no te puedo ayudar más.
Salu2
Cita de: Cromatico en 2 Enero 2014, 14:14 PM
Option Explicit
Private Declare Function SendMessage Lib "user32" Alias _
"SendMessageA" (ByVal hWnd As Long, ByVal wMsg _
As Long, ByVal wParam As Long, lParam As Any) As Long
Private Const BM_CLICK = &HF5
Call SendMessage(Command1.hWnd, BM_CLICK, 0, ByVal 0&)
Cambiando Command1.hwnd por el hwnd del boton que queres presionar, te va a funcionar sin problemas... Siempre y cuando sea un boton verdad...
Para obtener el hwnd de un programa externo, podrias investigar findwindow.
Saludos!