Ver Mensaje Individual
  #3  
Antiguo 12-06-2017
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
A ver, prueba así:

Código Delphi [-]
var
  doc: IHTMLDocument3;
  el: IHTMLElement;
  evento: OleVariant;

begin
  el := doc.getElementById('ddl_nFilas');
  evento = doc.createEvent('Event');
  evento.initEvent('change', true, true);
  el.dispatchEvent(evento);
end;

LineComment Saludos
Responder Con Cita