RecItem.RESET;
RecItem.SETRANGE("No.", "No. Equipamento");
IF RecItem.FINDFIRST THEN BEGIN
IF CONFIRM('Será introduzido este dado na ficha do Equipamento. Pretende continuar?') THEN BEGIN
IF EVALUATE(Placa, vPlaca) THEN
RecItem."Tipo Placa" := Rec.Placa::vPlaca;
RecItem.MODIFY;
END
END;
The text I want to input in the option field (Tipo Placa) in the Item table is in the variable vPlaca...
IF CONFIRM('Será introduzido este dado na ficha do Equipamento. Pretende continuar?') THEN BEGIN
but instead use
Textconstants
txtQ := PTG="Será introduzido este dado na ficha do Equipamento.";enu="This data will be introduced in the form of equipment"
txtConfirm := PTG='%1 Pretende continuar?'; ENU='%1 Continue?'
code
IF CONFIRM(strsubstno(txtconfirm,txtq)) THEN BEGIN
OR
IF CONFIRM(txtconfirm,true,txtq) then begin
|Pressing F1 is so much faster than opening your browser| |To-Increase|
RecItem.RESET;
RecItem.SETRANGE("No.", "No. Equipamento");
IF RecItem.FINDFIRST THEN BEGIN
IF CONFIRM('Será introduzido este dado na ficha do Equipamento. Pretende continuar?') THEN BEGIN
IF EVALUATE(RecItem."Tipo Placa", vPlaca) THEN BEGIN
RecItem.MODIFY;
END;
END;
END;
Comments
The text I want to input in the option field (Tipo Placa) in the Item table is in the variable vPlaca...
Test := 'Purchase';
EVALUATE(OptionText,Test);
Message('Text : %1',Test);
Message('Option : %1',OptionText);
Where optiontext is a option type variable with option " ,Sales,Purchase,Transfer"
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
|To-Increase|
I got it!
Here's the final version:
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav