to the empty string, and placed in a hashtable object.
In Shared/src/_UserInterfaceDomain/JPanelDirectorLogin.java , there is a check
made on the LOCALHOSTONLY argument, but only for a not equal null .
if not null, the hostname textbox is set non editable in the login panel.
The LOCALHOSTONLY argument can never be null , because it is stored in
and passed in a hashtable, which can't take null values as a dictionary value.
The solution is to change line 552 of JPanelDirectorLogin to
if(getArguments().get("LOCALHOSTONLY") != null &&
!"".equals(getArguments().get("LOCALHOSTONLY")) ){
getMyPanel().jtfDatabaseHost.setText("localhost");
getMyPanel().jtfDatabaseHost.setEnabled(false);
getMyPanel().jtfDatabaseHost.setEditable(false);
getMyPanel().jtfDatabasePath.setEditable(false);
sHost = "localhost";
}
then at least my download of open source Argus will let me change the hostname field on the login panel.
If this bug is also in the release version of Argus, then it sort of supports the
idea that open source works better.
On Fri Aug 18 2:06 , Horst Herb
Most specialists in our Division seem now ready to go with Argus and I thought
I should join them
I installed Argus yesterday and ran into a "problem", which the help desk
could not solve yet but they will ring me back - maybe the people on the
mailing list are even quicker?
I run a dedicated Firebird SQL server on a headless machine. It is set up for
self-replication, automated backups, and has a replacement clone. So this is
where the database is going to reside, end of discussion.
However, Argus GUI insists on having the database on "localhost", and I
haven't been able to find the configuration option where to change it yet,
nor was the help desk able to help me yet
Anybody any ideas where Argus hides this configuration detail?
Horst
_______________________________________________
Gpcg_talk mailing list
[email protected]
http://ozdocit.org/cgi-bin/mailman/listinfo/gpcg_talk
_______________________________________________ Gpcg_talk mailing list [email protected] http://ozdocit.org/cgi-bin/mailman/listinfo/gpcg_talk
