Welcome, Guest
Username: Password: Remember me
This public forum is meant for questions and discussions about Visual FoxPro
  • Page:
  • 1

TOPIC:

Disable output of Text/EndText to screen??? 27 Sep 2019 17:07 #10901

  • FoxProMatt
  • FoxProMatt's Avatar
  • Topic Author



What setting will prevent Text/EndText from writing its output to the screen?

I'm sure X# is following some VFP behavior that I have turned off in VFP, and I need to know that to do in X# to turn it off there also??

.
Local cName = "Matt"
Local cMessage As String
	
Text To cMessage Textmerge 
	
	Name Is <<cName>>
			
Endtext
	
? cMessage

Wait

Please Log in or Create an account to join the conversation.

Last edit: by FoxProMatt.

Disable output of Text/EndText to screen??? 27 Sep 2019 17:34 #10903

  • atlopes
  • atlopes's Avatar


  • Posts: 84
  • Matt, I usually issue TEXT with the NOSHOW clause. Also, a FLAGS 1 will prevent output being sent to whatever _TEXT file might be open.

    Please Log in or Create an account to join the conversation.

    Disable output of Text/EndText to screen??? 27 Sep 2019 17:40 #10904

    • FoxProMatt
    • FoxProMatt's Avatar
    • Topic Author



    Grrrr... Indeed, all my FoxPro Text/EndText statements have NoShow in them because my keyboard template adds that automagically. But, when I typed Text/EndText manually in X# sample app, I did not add NoShow. This shows you how dependent we become on snipptet/code templates, and maybe even copy-paste...

    Looks like I need to learn how to setup code snippets in VS for my VFP testing...

    Regardless, yes, atlopes, NoShow does work in X#

    Please Log in or Create an account to join the conversation.

    • Page:
    • 1