elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Curso de javascript por TickTack


  Mostrar Temas
Páginas: [1] 2
1  Programación / PHP / Formulario PHP en: 26 Junio 2007, 20:17 pm
Hola tengo hecho este formulario que deberia enviarse a un correo, pero no me funciona lo tengo alojado en el host gratuito de iespana, podria ser esa la causa??. Este es el codigo del HTML:

formulario.html
Código:
<html>
<link href="mihoja.css" rel="stylesheet" type="text/css" />

<body>
<body bgcolor="#000000">
<div id="Layer5"></div>
<div id="Layer3">
  <form name="form1" method="post" action="enviar.php">
    <table width="430" border="1">
      <!--DWLayoutTable-->
      <tr>
        <td width="119"><span class="titulares">Nombres:</span></td>
        <td width="295"><span class="Estilo3">
          <label>
          <input name="nombres" type="text" id="nombres">
          </label>
        </span></td>
      </tr>
      <tr>
        <td width="119"><span class="titulares">Apellidos:</span></td>
        <td width="295"><span class="Estilo3">
          <label>
          <input name="apellidos" type="text" id="apellidos" />
          </label>
        </span></td>
      </tr>
      <tr>
        <td width="119"><span class="titulares">Edad</span></td>
        <td width="295"><span class="Estilo3">
          <label>
          <input name="edad" type="text" id="edad">
          </label>
        </span></td>
      </tr>
      <tr>
        <td width="119"><span class="titulares">Nick:</span></td>
        <td width="295"><span class="Estilo3">
          <label>
          <input name="nick" type="text" id="nick">
          </label>
        </span></td>
      </tr>
      <tr>
        <td width="119"><span class="titulares">Correo:</span></td>
        <td width="295"><span class="Estilo3">
          <label>
          <input name="correo" type="text" id="correo">
          </label>
        </span></td>
      </tr>
      <tr>
        <td class="titulares">Telefono:</td>
        <td><label>
          <input name="tel" type="text" id="tel">
        </label></td>
      </tr>
      <tr>
        <td width="119"><span class="titulares">Genero Favorito: </span></td>
        <td width="295"><label>
          <select name="select" size="1" multiple>
            <option value="A" selected>Metal Alternativo</option>
            <option value="B" selected>Death Metal</option>
            <option value="C" selected>Gothic Metal</option>
            <option value="D">Grindcore</option>
            <option value="E">Thrash Metal</option>
            <option value="F">Black Metal</option>
            <option value="G">Doom Metal</option>
            <option value="H">Hardcore</option>
            <option value="I">Power Metal</option>
          </select>
        </label></td>
      </tr>
      <tr>
        <td><span class="titulares">Banda(s) Favorita: </span></td>
        <td><span class="Estilo3">
          <label>
          <input name="favorita" type="text" id="favorita" />
          </label>
        </span></td>
      </tr>
      <tr>
        <td width="119"><span class="Estilo3">
          <label></label>
          <label></label>
        </span></td>
        <td width="295"><span class="Estilo3">
          <label>
          <input name="restablecer" type="reset" id="restablecer" value="Restablecer" />
          <input type="submit" name="Submit" value="Enviar" />
          </label>
        </span></td>
      </tr>
    </table>
    <label></label>
    <p>&nbsp;</p>
  </form>
</div>
</body>
</html>


Y este es el codigo del PHP:

enviar.php
Código:
<?php 
//recibe las variables del html que son datos del usuario, solamente campos de texto
$nombre= $_POST['nombres'];
$apellido=$_POST['apellidos'];
$edad=$_POST['edad'];
$nick=$_POST['nick'];
$correo=$_POST['correo'];
$telefono=$_POST['tel'];
$favoritas=$_POST['favorita'];

//recibe la variable de la lista
switch ($_POST['genero']){
case A:
$gustos="Metal Alternanito";
break;

case B:
$gustos="Death Metal";
break;

case C:
$gustos="Gothic Metal";
break;

case D:
$gustos="Grindcore";
break;

case E:
$gustos="Thrash Metal";
break;

case F:
$gustos="Black Metal";
break;

case G:
$gustos="Doom Metal";
break;

case H:
$gustos="Hardcore";
break;

case I:
$gustos="Power Metal";
break;
}//cierre del switch




//revisamos que los campos no estén vacios
if(empty ($nombres)) $fallo.="No tecleaste tu nombre, \n";
if (empty($apellidos)) $fallo.="No tecleaste tus apellidos, \n";
if (empty($edad)) $fallo.="No tecleaste tu edad, \n";
if (empty($nick)) $fallo.="No tecleaste tu Nick, \n";
if (empty($correo)) $fallo.="No tecleaste tu correo, \n";
if (empty ($telefono)) $fallo.="No tecleaste tu telefono, \n";
if (empty ($favoritas)) $fallo.="No ingresaste ninguna banda favorita";

//validamos que el correo sea correcto
if ((strlen($correo) >= 6) && (substr_count($correo,"@") == 1) && (substr($correo,0,1) != "@") && (substr($correo,strlen($correo)-1,1) != "@")){
       if ((!strstr($correo,"'")) && (!strstr($correo,"\"")) && (!strstr($correo,"\\")) && (!strstr($correo,"\$")) && (!strstr($correo," "))) {           
          if (substr_count($correo,".")>= 1){
             $aux = substr(strrchr ($correo, '.'),1);
             if (strlen($aux)>1 && strlen($aux)<5 && (!strstr($aux,"@")) ){ 
                $aux2 = substr($correo,0,strlen($correo) - strlen($aux) - 1);
}
}

}//fin del if
else{
$fallo.="El correo electrónico que ingresaste no es valido";
} //fin del else

//guardo la cadena del fallo en v
$idiota=$fallo;
$Fallo==””;

if ($fallo==""){//Si no hubo errores
$caracteres = 8; // numero de caracteres a visualizar
$random_pass = substr(md5(rand()),0,$caracteres);


echo "Tu Registro se realizo con éxito, en los prócimos minutos recibirás un correo con tu confirmación de registro y tu password, Gracias por registrarte. <br>
Estos son los datosd que ingresaste: <br>
Nombre : $nombres \n $apellidos<br>
Teléfono: $telefono <br>
Edad: $edad <br>
Correo: $correo <br>
Nick: $nick <br>
Tu(s) Banda Favorita: $favoritas <br>
Password: $y";

//envia al correo del usuario
$asunto= "Registro en Metal Mexica" ;
$MailTo="$sik_ide@hotmail.com";
$dia=date("m.d.Y");
$hora=date("H:i:s");
$contenido="
El moderador de Metal Mexica te ha enviado estemensaje el $dia a las $hora: \n\n
_______________________________________________________________________\n

Asunto: $asunto\n
________________________________________________________________________\n
Estos son tus datos a confirmar \n

Nombre : $nombres \n
Apellido : $apellidos \n
Teléfono : $tel \n
Correo : $correo \n
Nick : $nick \n
Password : $y \n

________________________________________________________________________\n
Género Favorito \n

$gustos

Para confirmar tu registro visita este link: http://tekantoferiacristonegro.iespana.es/form/confirmacion.html
_____________________________________________________________________\n
";

mail($MailTo, "$asunto (de Metal Mexica )", $contenido, "From: $correo");
mail($correo, "$asunto (de Metal Mexica)", $contenido, "From: $correo"); }

else{
//por si hubo campos vacios o el e-mail era incorrecto hace:
echo "Lo sentimos el envio no sepudo realizar, porfavor:<br>
$idiota <br>
Regresa al formulario y corrige los errores";}

?>



Tambien me pidieron que hiciera esto pero no tengo idea como hacerlo. lei lo del phpmailer pero la verdad no lo entendi.

Postales virtuales.

El usuario podrá elegir una imagen y agregarle un mensaje para su envío por e-mail al destinatario.
La imagen llegará con el mensaje y los datos del remitente.

espero alguien me pueda ayudar es urgente
2  Foros Generales / Sugerencias y dudas sobre el Foro / Como puedo hacer esto? en: 25 Octubre 2006, 22:07 pm
como puedo hacer una imagen como esta para mi firma??


3  Informática / Software / LITE-ON DVD RW DL 16X en: 14 Agosto 2006, 19:39 pm
Hola mi problema con la grabadora Lite-On DVD+- RW Double Layer 16X, empezo cuando le quite el nero 6.3 que trae ya instalado, y le instale el nero 7, pero me empezo a dar un poco de problemas porke la makina kedaba un poko lenta (lei que komo era un demo tenia muchos fallos), asi que lo desinstale y le instale Nero 7.1, que me dijeron korria bien, luego de instalarlo comenzaron mis pesasillas ya que me grababa Cds mal (Con los DVDS no hay problema). Lo desinstale y le reinstale el que traia (nero 6.3) y me empezo a tirar un error que decia: Instalacion Corrupta. Y desde eso ya no me lee los CDs, ni los puedo grabar, hay algunos que los reconoce pero no los lee. Ya intente restaurar el sistema ya que la makina trae un software de recuperacion que te reinstala todo el S.O. pero no kedo bien aun no me lee CDs, lo raro es que kon los DVDs no tengo problema ni para leerlos ni para grabarlos.

Espero que alguien pueda ayudarme a solucionar el problema ya que no se komo resolverlo.

Gracias de antemano.
4  Media / Multimedia / Duda con el DVD Lab-Pro en: 25 Abril 2006, 03:18 am
Bueno para empezar tengo el programa en la version pro ya kon medicina y me baje el tutorial de http:\\www.lawebdegoku.miarroba.com (de donde mas?) y pues puse en practica todo primero solo con un video en formato vcd y todo salio bien lo uniko que paso que al separar el audio y el video demuplexar o komo se diga pues el audio perdio kalidad y se escuchaba kon sonidos medio raros (komo si fuera un cd rayado) ah lo guarde en wav.

Bueno tengo unos archivos avi (xvid) y quiero kemarlos en dvd y lo que quiero saber es a que formato tengo que konvertirlos para que los acepte el DVD Lab-Pro  y sin perder kalidad o no mucha.

Otra duda es que en el tutorial dice que se puede poner un videoclip antes de entrar al menu de titulos komo un intro y dice alli que hay que meter el archivo en la carpeta clips del programa y quiero saber en que formato tiene que estar el clip para que me lo acepte el DVD Lab-Pro ya que intente kon VCD, SVCD y ninguno me funciono, incluso kon el MPEG-2 que te crea un archivo de video y uno de audio. pero ni asi.

Las conversiones las hago kon el Canopus.

Bueno espero que se puedan hacer kon el canopus y sino espero que me digan kon kual y kual es el formato adecuado para poder utilizarlo en el DVD Lab- Pro.

Espero no molestar mucho gracias de antemano.
5  Media / Multimedia / Problema con archivo .MKV en: 23 Abril 2006, 19:40 pm
Lo que me psa es que tengo un video en formato MKV lo puedo visualizar correctamente con el WMP 10 hasta alli todo bien mi problema es al intentar extraer el avi kon el virtualdubmod ya que al importarlo me marka errores....... los siguientes:

Citar
[!] MKV: A frame of stream 1 (at 1683967 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684134 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684101 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684268 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684234 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684401 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684368 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684535 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684501 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684668 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684635 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684801 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684768 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684935 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1684902 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685068 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685035 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685202 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685169 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685335 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685302 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685469 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685435 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685602 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685569 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685736 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685702 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685869 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685836 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686003 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1685969 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686136 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686103 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686270 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686236 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686403 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686370 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686537 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686503 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686670 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686637 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686803 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686770 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686937 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1686904 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687070 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687037 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687204 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687171 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687337 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687304 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687538 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687504 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687671 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687638 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687804 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687771 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687938 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1687905 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688071 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688038 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688205 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688172 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688338 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688305 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688472 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688438 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688605 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688572 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688739 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688705 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688872 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688839 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689006 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1688972 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689139 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689106 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689273 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689239 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689406 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689373 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689540 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689506 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689673 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689640 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689806 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689773 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689940 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1689907 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690073 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690040 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690207 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690174 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690340 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690307 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690474 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690440 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690607 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690574 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690741 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690707 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690874 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690841 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691008 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1690974 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691141 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691108 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691275 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691241 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691408 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691375 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691542 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691508 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691675 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691642 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691808 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691775 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691942 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1691909 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692075 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692042 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692209 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692176 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692342 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692309 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692476 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692442 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692609 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692576 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692743 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692709 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692876 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692843 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693010 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1692976 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693143 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693110 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693277 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693243 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693410 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693377 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693544 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693510 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693677 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693644 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693810 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693777 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693944 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1693911 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694077 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694044 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694211 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694178 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694344 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694311 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694478 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694444 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694611 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694578 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694745 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694711 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694878 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694845 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695012 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1694978 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695145 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695112 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695279 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695245 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695412 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695379 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695546 ms) had only a forward reference
    (maybe broken file).

[!] MKV: A frame of stream 1 (at 1695512 ms) had only a forward reference
    (maybe broken file).

[!] MKV: Video frames seems to be weirdly ordered.

[!] MKV: The video may have a variable framerate. If so we strongly advise you
    to use another tool to safely process your file.

[!] Couldn't locate decompressor for format 'ÿÿÿÿ' (unknown).
    VirtualDub requires a Video for Windows (VFW) compatible codec to
    decompress video. DirectShow codecs, such as those used by Windows Media
    Player, are not suitable. Only 'Direct stream copy' is available for this
    video.



espero alguien me pueda ayudar
6  Media / Multimedia / Licencias en: 21 Enero 2006, 18:02 pm
Mi duda es la siguiente en la computadora de un ciber tengo bajado videos que tienen licencia y stan instaladas los puedo ver  a la perfeccion y lo que quiero es llevarlos a la pc de mi kasa pero kuando intento abrirlos alli pues logicamente me pide la licencia pero se necesita internet y no tengo en mi kasa...... hay alguna manera de hacerlo por alli un amigo me dijo que buskara las licencias instaladas en el ciber pero no se en que directorio se enkuentran ni que terminacin tendran hay alguna forma de saberlo o alguien sabe otra forma que no sea ripearlos..... los videos los veo en Windows Media
7  Programación / Java / Urge Error en programa Java en: 28 Septiembre 2005, 04:42 am
Este es el programa


Código:
// fig 13.11: PruebaCasillaVerificacion.java
//creacion de botones JCheckBox.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class PruebaCasillaVerificacion extends JFrame {
   private JTextField campo;
   private JCheckBox negrita, cursiva;

   //configurar la GUI
   public PruebaCasillaVerificacion()
   {
super( "Prueba de JCheckbox" );

//obtener panel de contenido y establecer su esquema
Container contenedor = getContentPane();
contenedor.setLayout( new FlowLayout() );

//configurar objeto JTextField y establecer su tipo de letra
campo = new JTextField("Observe el cambio en el estilo de tipo de letra",25);
campo.setFont( new Font( "Serif", Font.PLAIN, 14) );
contenedor.add( campo );

//crear objetos casilla de verificacion
negrita = new JCheckBox( "Negrita" );
contenedor.add( negrita );

cursiva = new JCheckBox( "Cursiva" );
contenedor.add( cursiva );

//registrar componentes de escucha para los objetos JCheckBox
ManejadorCasillaVerificacion = new ManejadorCasillaVerificacion();
negrita.addItemListener( manejador );
cursiva.addItemListener( manejador );

setSize( 300, 100 );
setVisible( true );

   } // fin del constructor de PruebaCasillaVerificacion

   public static void main ( String args[] )
   {
PruebaCasillaVerificacion aplicacion = new PruebaCasillaVerificacion();
   aplicacion.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
   }

   //clase interna privada para manejo de eventos de ItemListener
   private class ManejadorCasillaVerificacion implements ItemListener {
private int valNegrita = Font.PLAIN;
private int valCursiva = Font.PLAIN;

//responder a eventos de casilla de verificacion
public void itemStateChanged( ItemEvent evento )
{
//procesar eventos de casilla de verificacion negrita
if ( evento.getSource() == negrita )
   valNegrita = negrita.isSelected() ? Font.BOLD : Font.PLAIN;

//procesar eventos de casilla de verificacion cursiva
if ( evento.getSource() == cursiva )
   valCursiva = cursiva.isSelected() ? Font.ITALIC : Font.PLAIN;

//establecer tipo de letra del campo de texto
campo.setFont( new Font( "Serif", valNegrita + valCursiva, 14 ) );

} //fin del metodo itemStateChanged

   } // fin de la clase interna privada ManejadorCasillaVerificacion

} // fin de la clase PruebaCasillaVerificacion




y los errores que me marka son estos


Código:
C:\PruebaCasillaVerificacion.java:33: cannot find symbol
symbol  : variable ManejadorCasillaVerificacion
location: class PruebaCasillaVerificacion
        ManejadorCasillaVerificacion = new ManejadorCasillaVerificacion();
        ^
C:\PruebaCasillaVerificacion.java:34: cannot find symbol
symbol  : variable manejador
location: class PruebaCasillaVerificacion
        negrita.addItemListener( manejador );
                                 ^
C:\PruebaCasillaVerificacion.java:35: cannot find symbol
symbol  : variable manejador
location: class PruebaCasillaVerificacion
        cursiva.addItemListener( manejador );
8  Media / Multimedia / Problema con el Canopus en: 5 Agosto 2005, 20:08 pm
Hola mi problema con el canopus es que al poner los settings para el video los que pongo son Aumentar el Volumen y que sea MPGE1 VCD NTSC y cuando le doy a convert y me aparece un mensaje que dice

 The settings for this preset are invalids

Alguien sabe como lo puedo solucionar

gracias de antemano
9  Programación / Ejercicios / Ejercicio Java en: 28 Junio 2005, 01:14 am
Hola quisiera saber si alguien me puede ayudar a resolver este ejercicio y postearlo aki:

Escribe un programa en java que realice lo siguiente:

Que muestre el siguiente menu en pantalla:

Menu principal

1.- Escribir el archivo de datos
2.- Leer y procesar los datos
3.- Terminar

La opcion 1 debe pedir la siguiente información por el
teclado de n alumnos, nombre, sexo, edad, estatura y
peso y escribirla en el archivo.

La opcion 2 debe abrir el archivo para leer los datos
y calcular el promedio de edad de las personas cuyo sexo
sea masculino asi como imprimir el total de las personas
(hombres y mujeres) que miden mas de 1.65 metros.

Nota: Se debe de usar un metodo para mostrar el menu,
un metodo para la opcion 1 y un metodo para la opcion 2.
Asi como otros metodos que sean necesarios e instanciar
las clases para ejecutar estos metodos.

Gracias de antemano
10  Media / Multimedia / Como puedo hacer algo komo esto??? en: 22 Junio 2005, 02:22 am
Como y con que programa puedo hacer algo como esto el enlace esta en el siguiente enlace


http://dl2.rapidshare.de/files/2535939/14060113/ejemplo.avi
Páginas: [1] 2
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines