OK firstly did you find your tnsnames.ora file (on your pc with the sql+ icon on it)?
if so in the directory where you found it there should also be a sqlnet.ora file
This sets up any default 'Domains' so that might be in tek-tips.co.uk format if you have it set up.
in tnsnames.ora you should have entries like this
ORATST.tek-tips.co.UK =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = oratst.tek-tips.co.uk)(PORT = 1521))
)
(CONNECT_DATA =
(SID = iasdb)
)
)
so on to connect to sql+
double click on the icon should give a window with 3 fields for entry by you - Username Password and HostString
For the example given above I could use
Scott
Tiger
and
ORATST
Note the last one because I have my default domain set in my sqlnet.ora file if not you migh have to enter in the format
ORATST.tek-tips.co.uk obviously replacing my example with your real world name
In effect you have to try to connect to the hostname where your database exists (usually port 1521) hence the connection info in tnsnames
Hope that helps