I'm not sure if this will work in SQL Server 7, but the way I do it in 2000 is:
SELECT TextData,NTUserName,HostName,ApplicationName,LoginName
FROM ::fn_trace_gettable(@TraceFile, default)
@TraceFile would be the physical location of the trace file, and you can specify any of the fields you are capturing in your trace file in the SELECT clause.