Hi all,
Having done this
[CODE=vb]Public Const JMCTITLESTRING As String = "New Arrivals 2008"[/CODE]
and this
[CODE=vb] Set prpTitle = NAdb.CreateProp erty("AppTitle" , 12, JMCTITLESTRING)
NAdb.Properties .Append prpTitle
Application.Ref reshTitleBar[/CODE]
I can do this, in the immediate window
Which made me a happy person until I looked at the title bar of the application and it says "Microsoft Access"
Why is it so?
Jim
Having done this
[CODE=vb]Public Const JMCTITLESTRING As String = "New Arrivals 2008"[/CODE]
and this
[CODE=vb] Set prpTitle = NAdb.CreateProp erty("AppTitle" , 12, JMCTITLESTRING)
NAdb.Properties .Append prpTitle
Application.Ref reshTitleBar[/CODE]
I can do this, in the immediate window
Code:
? currentdb().Properties("AppTitle").value
New Arrivals 2008
Why is it so?
Jim
Comment