Hello,
I have a database full of test hole data that needs to be displayed in
the correct format. In the database I have stuff like Sta, Offset,
Depth of Hole, and what not. I can attach the column in the table to
the correct element (text nodes), and then go through the attach
displayable attributes and then display displayable attributes. It
comes out all on different lines though. For Instance: My displayable
attributes type SQLDAS statement is:
Select 'Test Hole # ', test_hole_, 'Sta ', sta, ', Offset ', offset
from table1
I go through the steps, but it displays like:
Test Hole #
1.0
Sta
1234+20.23
, Offset
40.37'
I want it to display
Test Hole # 1
Sta 1234+20.23, Offset 40.37'
Can anybody help, Thanks


|