Re: displaying a text string that is longer then the screen is wide

2005-05-20 Thread Jerome Chapdelaine
Use FrmCustomAlert with the ^1, ^2 and ^3 replacement placeholders. -or- Build a custom modal dialog box with a multi-line read-only text field. The dotted "underline" of text fields can also be removed in the resource editor. If you want to resize your dialog box to fit, you can compute the fie

Re: displaying a text string that is longer then the screen is wide

2005-05-20 Thread Scott Erickson
WOW, so much easier then I was making it! I just used the FrmCustomAlert(), works perfect. Thanks for the help. -- Scott Erickson Software Development Team, FB-4, Inc. [EMAIL PROTECTED] "Jerome Chapdelaine" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Use FrmCustomAlert wit

re: displaying a text string that is longer then the screen is wide

2005-05-20 Thread roderick young
Here is a resource description for pilrc, but you can do a similar thing with the resource editor: // choose a resource ID for the alert #define alertInfo 4830 ALERT alertInfo INFORMATION BEGIN TITLE "Info" MESSAGE "^1^2^3" BUTTONS "Ok" END the ^1 ^2 and ^3 will be substituted with the

Re: displaying a text string that is longer then the screen is wide

2005-05-21 Thread Chris Tutty
From: "Jerome Chapdelaine" <[EMAIL PROTECTED]> > Use FrmCustomAlert with the ^1, ^2 and ^3 replacement placeholders. > -or- > Build a custom modal dialog box with a multi-line read-only text field. > The dotted "underline" of text fields can also be removed in the > resource editor. If you want t