Ver Mensaje Individual
  #3  
Antiguo 23-06-2014
Avatar de eennzzoo
eennzzoo eennzzoo is offline
Miembro
NULL
 
Registrado: nov 2013
Ubicación: Argentina
Posts: 59
Reputación: 13
eennzzoo Va por buen camino
Cita:
Empezado por escafandra Ver Mensaje
Código:
A = StrToInt(EditA->Text);
Saludos.
Te entiendo, pero cuando vuelvo a cargar el form esta el dato anterior, no se actualiza en el codigo.

Código:
TAlquiler *Alquiler;
//---------------------------------------------------------------------------
__fastcall TAlquiler::TAlquiler(TComponent* Owner)
	: TForm(Owner)
{
		int BluRay = 22;
		int BluRay3D = 25;
		int DVD = 17;
		editBluRay->Text = BluRay;
		editBluRay3D->Text = BluRay3D;
		editDVD->Text = DVD;
}
//---------------------------------------------------------------------------
void __fastcall TAlquiler::CierreAlquiler(TObject *Sender, TCloseAction &Action)
{
		MenuPrincipal->Show();
}
//---------------------------------------------------------------------------
void __fastcall TAlquiler::btnActualizarClick(TObject *Sender)
{
		int BluRay = StrToInt(editBluRay->Text);
}
//---------------------------------------------------------------------------
Capaz tenga que utilizar un txt.
__________________
https://www.facebook.com/riverplateoficial
Responder Con Cita