Home > Archive > Clarion > January 2007 > BrowseWindow - How do I overwrite the Title
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
BrowseWindow - How do I overwrite the Title
|
|
| MustyMover 2007-01-09, 7:55 am |
| I am using one Browse for more than one purpose. The source code
currently shows
BrowseWindow WINDOW('Collections')
I want to over write Collections with information that describes the
purpose of the Browse. I would have thought there was a {PROP: function
that would allow me to do this but can't find any reference.
Could some one help me with this?
Ian
| |
|
| > I am using one Browse for more than one purpose. The source code
> currently shows
> BrowseWindow WINDOW('Collections')
> I want to over write Collections with information that describes the
> purpose of the Browse. I would have thought there was a {PROP: function
> that would allow me to do this but can't find any reference.
> Could some one help me with this?
Hello,
actualiy, there is, PROP:Text for the window control. Try something like
BrowseWindow{PROP:Text} = 'My new title'
HTH,
Davor
| |
| ikonjevic 2007-01-10, 3:55 am |
| hi,
in embeded pint Window Events - Open Window
put this code
0{Prop:Text}='Some text'
you can put and some global or local variable
0{Prop:Text}=CLIP(GLO:Variable)
ivica
|
|
|
|
|