(SNMP) How to set Object's value?
问题 I'm using delphi xe3 to write a program which can read object's value but don't know how to change it? Click SAVE button to set new Power Level value Symbol Rate is read only 回答1: QuickSend() is only for retrieving values. There is no equivalent QuickSend() for setting values. You will have to use SendQuery() directly for that, eg: procedure TForm1.BtnEnterClick(Sender: TObject); var SNMP: TIdSNMP; dn, PLevel, SRate: string; p: Extended; begin SNMP := TIdSNMP.Create(nil); try SNMP.Host :=