Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Modify memo
Message
From
12/12/2006 23:45:15
Dragan Nedeljkovich (Online)
Now officially retired
Zrenjanin, Serbia
 
 
To
12/12/2006 22:56:39
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Environment versions
Visual FoxPro:
VFP 7
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01177056
Message ID:
01177062
Views:
12
>when doing a modify memo command, the window apears with the name of the file and field name, how can I change this to give the user instructions, ie change the text in the title bar?

create window yourwindow from ... title "your title"
modify memo yourmemo window yourwindow

Check the syntax for both commands in the help - this was offhead. You can also size your window, position it etc. Though, in this syntax it's practically in foxels, i.e. rows and columns. If you want to control it in pixels, create a form:
oFrm=createobject("form")
With oFrm
   .top=
   .left=
   .caption= 
   .fontname=
   ...etc etc, any properties you like
endwith
modify memo yourmemo window (oFrm.name)
oFrm.release()

back to same old

the first online autobiography, unfinished by design
What, me reckless? I'm full of recks!
Balkans, eh? Count them.
Previous
Reply
Map
View

Click here to load this message in the networking platform