Muchas gracias por la explicación, me quedo claro su uso, pero otra cosita, de casualidad tienes un ejemplo de un store procedure bien formado? es que he visto varios ejemplos donde lo hacen de diferentes formas :S. Gracias de nuevo.
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ú
using System;
using System.Net.Mail;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
System.Net.Mail.MailMessage correo = new System.Net.Mail.MailMessage();
correo.From = new System.Net.Mail.MailAddress("usuarioyahoo@yahoo.ca");
correo.To.Add("prueba@yahoo.com");
correo.Subject = "Saludo";
correo.Body = "PROBANDO PROGRAMA";
correo.IsBodyHtml = false;
correo.Priority = System.Net.Mail.MailPriority.Normal;
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient();
smtp.Host = "smtp.mail.yahoo.ca";
smtp.Credentials = new System.Net.NetworkCredential("usuarioyahoo", "passyahoo");
try
{
smtp.Send(correo);
}
catch(Exception ex)
{
Console.WriteLine("ERRORRRR");
}
}
}
}
correo.From = new System.Net.Mail.MailAddress("correoyahoo@yahoo.ca");
[b]i=1;
while (i<=n)[/b]
{
x=JOptionPane.showInputDialog("Ingrese nota del alumno "+i);
V[i]=Integer.parseInt(x);
i++;
}
i = 0;
while (i < n)
{
x = JOptionPane.showInputDialog("Ingrese nota del alumno " + i);
V[i] = Integer.parseInt(x);
i++;
}
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Reloj extends JFrame
{
private static final long serialVersionUID = 1L;
JLabel reloj, hora;
Reloj()
{
setTitle("Reloj");
setLayout( new FlowLayout() );
reloj = new JLabel("Reloj:");
ThreadClock clock = new ThreadClock();//Creación de objeto tipo ThreadClock
add( reloj );
add( clock );//Se agrega el panel de la clase ThreadClock
Thread hilo = new Thread( clock );//Se crea un hilo
hilo.start();//Se inicia el hilo
pack();
setVisible( true );
setDefaultCloseOperation( EXIT_ON_CLOSE );
}
public static void main( String args[] )
{
new Reloj();
}
}
import java.text.DateFormat;
import java.util.Calendar;
import java.util.Date;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class ThreadClock extends JPanel implements Runnable
{
private static final long serialVersionUID = 1L;
JLabel labelhour;
int hora, minuto, segundo;
public ThreadClock()
{
labelhour = new JLabel("");
add( labelhour );//Se añade el label al panel
}
public void run()//Inicio del hilo
{
while( true )
{
Calendar calendar = Calendar.getInstance();
Date hora = calendar.getTime();//Obtebemos los datos, hora, fecha
DateFormat dateformat = DateFormat.getTimeInstance();//Obtenemos la hora
String horaActual = dateformat.format(hora);//formateamos para que nos retorne la hora
labelhour.setText( horaActual );//Añadimos la hora al label
try
{
Thread.sleep(1000);//Dormimos el hilo momentaneamente para que no se bloquee el programa
}
catch ( InterruptedException er )
{
er.printStackTrace();
}
}
}
}