Posted Tuesday, March 07, 2006 9:15 AM
|
|
|
|
hi
I use method "matrix.getstring"
it show
| 0.2 0.3 0.1 |
| 0.1 0.5 0.6 |
| 0.5 0.1 0.2 |
How it can show without " | "
0.2 0.3 0.1
0.1 0.5 0.6
0.5 0.1 0.2
thank you
|
|
Posted Tuesday, March 07, 2006 9:29 AM
|
|
|
|
Hi
You can use the Replace function of VB in order to remove unwanted characters.
Example: Debug.Print Replace(Matrix.GetString(), "|","")
Trifon Triantafillidis | Lead Developer |
|
|
|
|
|