Ver Mensaje Individual
  #2  
Antiguo 05-05-2010
bothy bothy is offline
Miembro
 
Registrado: ene 2010
Posts: 144
Reputación: 15
bothy Va por buen camino
Código Delphi [-]
procedure NombreDelProcedimiento ;
begin
..........
...........
............ //codigo de la ecuacion
..........
end;
//y para llamar este procedimiento nomas tendria que poner en el  procedure principal o en un
//boton que tengas para hacer esta ecuacion

procedure TForm1.Button1Click(Sender: TObject);
begin
 NombreDelProcedure;
end;
Responder Con Cita