//CONSULTA 1 preguntas tipo 1
Espacio4 = " ";
Espacio44 = " ";
Espacio4444 = " ";
PreRes11 = " ";
PreRes22 = " ";
Query3 -> Open();
Query3 -> First();
PreRes22 = (Query3 -> FieldByName("IDPREGUNTA")) -> AsString;
PreRes11 = (Query3 -> FieldByName("IDPREGUNTA")) -> AsString;
while(Query3 -> Eof != true)
{
PreRes1 =(Query3 -> FieldByName("PREGUNTA")) -> AsString;
Pres = "<P>" + PreRes1 + "</P>";
while(( PreRes22 == PreRes11) && (Query3 -> Eof != true) )
{
Opciones = "<input type=radio name=respuesta1 value="">";
AsigPreRes1 = (Query3 -> FieldByName("RESPUESTA")) -> AsString;
Opciones1 = "<P>" + (Opciones + AsigPreRes1) + "</P>";
Espacio44 = "<P>" + Espacio44 + Opciones1 + "</P>";
Query3 -> Next( );
PreRes22 = (Query3 -> FieldByName("IDPREGUNTA")) -> AsString;
}
Espacio4444 = "<P>" + Espacio4444 + "<br>" + (Pres + Espacio44) + "</P>";
Espacio44=" ";
PreRes11 = PreRes22;
Espacio4 = "<P>" "<br>" + Espacio4444 + "<br>" "</P>";
}
Query3 -> Close();
//_________________________________________________________________