Is it possible to control where the print/raiseerror statements print in the result window in Sql Server Management Studio.

e.g.

sql Code:
  1. declare @x int
  2. set @x = 0
  3. while (@x < 10)
  4. begin
  5.     -- do my stuff here
  6.  
  7.     set @x = @x + 1
  8.  
  9.     -- print progress
  10.     -- can we print all these on just one line instead of each one on separate line ??
  11.     RAISERROR ('|', 0, 1) WITH NOWAIT  
  12. end