Excel - Problemas para confirmar click con webbrowser

 
Vista:
sin imagen de perfil

Problemas para confirmar click con webbrowser

Publicado por Claudio (1 intervención) el 23/09/2014 04:08:50
Estoy con una pequeña aplicación en excel para automatizar el llenado de un formulario web. No tengo inconveniente en trasladar los datos a los campos pero no logro confirmar el submit para enviar la consulta. Adjunto el codigo de la pagina a ver si alguien puede darme una mano. Desde ya muchas gracias.

7U <head>
<script language=javascript>
function abrirPopUp (URL,ventana,ancho,alto){
var izquierda = (screen.width - ancho) / 2;
var arriba = (screen.height - alto) / 2;
var newwindow=window.open(URL,ventana,"width="+ancho+",height="+alto+",left="+izquierda+",top="+arriba+",resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no");
if (window.focus) {newwindow.focus()}
return false;
}

function cerrarse(){
window.close();
}
</script>

</head>
<HTML><TITLE>Superior Tribunal de Justicia Poder Judicial de Tierra del Fuego:ConsultaSR</TITLE><LINK REL='STYLESHEET' type='text/css' href='estilo/compatible.css'><BODY><FORM id='form1' method='POST' action='http://servicio.justierradelfuego.gov.ar:81/index.php'><DIV id='cabecera'><TABLE width='100%' cellspacing=0 cellpadding=0 border=0>
<tr><td><img src='imagenes/jurisprudenciaizq.jpg'></td>
<td width='80%' background='imagenes/jurisprudenciamedio.jpg'></td>
<td><img src='imagenes/jurisprudenciader.jpg'></td>
</tr></table></DIV><DIV id='pie'><table width="100%" >
<tr>
<td>
<p class="footer"> "Las Islas Malvinas, Georgias y Sandwich del Sur, son y serán Argentinas"
</p>
</td>
</tr>
</table>
</DIV><DIV id='menuSuperior' align='center'><div align='center'>
<table cellspacing="0" cellpadding="0" align='center' width="90%">
<tr>
<td width=100>
<input class="BtnMenuUs"
type='submit' value="Nueva Búsqueda" name="presentar" onmouseover="this.className='BtnMenuUsRes'" onmouseout="this.className='BtnMenuUs'">
</td>
<td width=100>
<input class="BtnMenuUs"
disabled type='submit' value="Ver Causas" name="presentar" onmouseover="this.className='BtnMenuUsRes'" onmouseout="this.className='BtnMenuUs'">
</td>
<td width=100>
<input class="BtnMenuUs"
disabled
type='submit' value="Ver Actuaciones" name="presentar" onmouseover="this.className='BtnMenuUsRes'" onmouseout="this.className='BtnMenuUs'"></td>
<td width=100></td>
<td width=100></td>
</tr></table></div>
</DIV><DIV id='principalInferior'><DIV id='contenedorNew'><DIV id='contenidoNew'><div id='contTribunales'><div id='contenido'>
<table align='center' border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="65%" id="AutoNumber2">
<tr class='filaNormal'><td colspan=2><font color=red>Seleccione el Juzgado</font><select name='OptJuz'><option value='*' selected></option><option value='CIVILYCOMRG'>Juzg. Civil y Comercial Nº 1 D.N.</option><option value='CIVILYCOMUSH'>Juzg. Civil y Comercial Nº 1 D.S.</option><option value='COMPETENCIARG'>Juzg. Civil y Comercial Nº 2 D.N.</option><option value='COMPETENCIAUSH'>Juzg. Civil y Comercial Nº 2 D.S.</option><option value='LABORALRG'>Juzg. del Trabajo D.N.</option><option value='LABORALUSH'>Juzg. del Trabajo D.S.</option></select></td></tr>
<tr>
<td colspan=2 >
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%" id="AutoNumber1">
<tr class='filaNormal'>
<td width="25%">Nro de Expediente : </td>
<td width="75%"><input type="text" name="nroCausa" size="8" tabindex=1 onkeypress="validar(event)"></td>
</tr>
</table>
</div>
</td>

</tr>

<tr>
<td height="27" colspan="2" align="center" >
<INPUT type='submit' value='Consultar Causas' name='presentar' onmouseover="this.className='BtnMenuUsRes'" onmouseout="this.className='BtnMenuUs'" class="BtnMenuUs" tabindex=3>
</td>
</tr>
</table>

</div>
</div>

</table>
</div>
</div>
</DIV></DIV></DIV></FORM></BODY></HTML>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder