Access Violation when choosing menu items.
Brought to you by:
tpsfadmin
If a server is not selected in the lservers list you
will get an access violation when you select any of the
config menu's items. It looks like they tried to avoid
this problem by trapping the onclick event and
disabling the menu items. The onclick event only
response to a left click. So right clicking off of the
selected item in the list box will reproduce this error.
I made the following changes in the file Uffsmain.pas
to fix the problem.
procedure TfrmFFServer.lvServersMouseDown(Sender: TObject;
Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
lvServersClick(Sender); {-jeremy. added to fix is
server selected problem}
end;