Clarion 11.1.13855
App Gen’ed
ABC
In the properties of a Window procedure you see something like this:
QuickWindow WINDOW('Update the Stores File'),AT(,,240,126),FONT('MS Sans Serif',8),RESIZE, |
CENTER,GRAY,IMM,MDI,HLP('ViewStores'),SYSTEM
SHEET,AT(2,1,238,122),USE(?CurrentTab),WIZARD,#ORIG(CurrentTab),#ORDINAL(1)
TAB('General'),USE(?Tab:1),#ORDINAL(2)
PROMPT('Store ID:'),AT(13,11,45,10),USE(?STO:StoreID:Prompt),TRN,#LINK(?STO:StoreID), |
#ORIG(?STO:StoreID:Prompt),#ORDINAL(3)
PROMPT('Store name:'),AT(13,25,45,10),USE(?STO:Store_name:Prompt),TRN,#LINK(?STO:Store_name), |
#ORIG(?STO:Store_name:Prompt),#ORDINAL(4)
PROMPT('Store address:'),AT(13,39),USE(?STO:Store_address:Prompt),TRN,#LINK(?STO:Store_address), |
#ORIG(?STO:Store_address:Prompt),#ORDINAL(5)
PROMPT('City:'),AT(13,53,45,10),USE(?STO:City:Prompt),TRN,#LINK(?STO:City),#ORIG(?STO:City:Prompt), |
#ORDINAL(6)
PROMPT('State:'),AT(13,67,45,10),USE(?STO:State:Prompt),TRN,#LINK(?STO:State), |
#ORIG(?STO:State:Prompt),#ORDINAL(7)
PROMPT('Zip:'),AT(13,81,45,10),USE(?STO:Zip:Prompt),TRN,#LINK(?STO:Zip),#ORIG(?STO:Zip:Prompt), |
#ORDINAL(8)
ENTRY(@s4),AT(65,11,40,10),USE(STO:StoreID),MSG('ID of store'),REQ,TIP('ID of store'), |
#LINK(?STO:StoreID:Prompt),#ORIG(STO:StoreID),#ORDINAL(9)
ENTRY(@s40),AT(65,25,164,10),USE(STO:Store_name),CAP,MSG('Name of store'),TIP('Name of store'), |
#LINK(?STO:Store_name:Prompt),#ORIG(STO:Store_name),#ORDINAL(10)
ENTRY(@s40),AT(65,39,164,10),USE(STO:Store_address),CAP,MSG('Address of store'), |
TIP('Address of store'),#LINK(?STO:Store_address:Prompt),#ORIG(STO:Store_address), |
#ORDINAL(11)
ENTRY(@s20),AT(65,53,84,10),USE(STO:City),CAP,MSG('City of store'),TIP('City of store'), |
#LINK(?STO:City:Prompt),#ORIG(STO:City),#ORDINAL(12)
ENTRY(@s2),AT(65,67,40,10),USE(STO:State),UPR,MSG('State where the store ' & |
'is located in'),TIP('State where the store is located in'),#LINK(?STO:State:Prompt), |
#ORIG(STO:State),#ORDINAL(13)
ENTRY(@s5),AT(65,81,40,10),USE(STO:Zip),MSG('Zipcode where the store is located in'), |
TIP('Zipcode where the store is located in'),#LINK(?STO:Zip:Prompt),#ORIG(STO:Zip), |
#ORDINAL(14)
END
END
BUTTON('OK'),AT(9,103,45,14),USE(?OK),LEFT,ICON('WAOk.ico'),DEFAULT,FLAT,#ORIG(?OK), |
#SEQ(2),#ORDINAL(15)
BUTTON('Cancel'),AT(188,103,45,14),USE(?Cancel),LEFT,ICON('WAClose.ico'),FLAT,#ORIG(?Cancel), |
#SEQ(3),#ORDINAL(16)
END
Notice how the text is cutoff with the pipe character and then continued on the next line.
Is it possible, in the IDE, to make the line longer, or some other method, to prevent the line from being split into two lines?
Just curious.
Thank you!