Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it possible to display text without word wrap?
Message
 
To
29/10/1998 14:12:54
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00151158
Message ID:
00152615
Views:
24
Hi Andrus,

>1. How I can hide memo window title bar: want move memo window up
>by title bar height of pixels?
>2. How I can disable memo window resizing? I want to enable only
>form resizing.

MODIFY MEMO takes two WINDOW clauses. One is the window in which it should be displayed, the other one a window defintion it should use for the edit window. Something like this can be used:
DEFINE WINDOW _Edit ;
   FROM 1,1 TO 10,10 ;
   NONE ;
   NOGROW
MODIFY MEMO cMemo WINDOW _Edit IN WINDOW Form1 NOWAIT
You should check out the DEFINE WINDOW command to find all clauses you want to use for your memo window.

>3. set resource command causes disk access. I need set resource on
>for other memo windows and this command is not scoped to private
>data session. How to avoid disk sound during resize?

You can resize a MODIFY MEMO window with the ZOOM WINDOW command.

Christof
--
Christof
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform