FoxInCloud
set talk
Gravatar is a globally recognized avatar based on your email address. set talk
  Tuvia Vinitsky
  All
  May 27, 2015 @ 04:44pm
in absqlthermo.Init there is a set talk on.

When running in development mode, this trashes the display showing the execution times and you see screen after screen until set talk is back off.

Gravatar is a globally recognized avatar based on your email address. Re: set talk
  FoxInCloud Support - Thierry N.
  Tuvia Vinitsky
  May 27, 2015 @ 09:16pm
Hi Tuvia,

modify command awHTML

* please replace
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,,, @m.lcError)

* by
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,.T.,, @m.lcError)


in absqlthermo.Init there is a set talk on.

When running in development mode, this trashes the display showing the execution times and you see screen after screen until set talk is back off.


-- thn (FoxInCloud)

Gravatar is a globally recognized avatar based on your email address. Re: set talk
  Tuvia Vinitsky
  Thierry Nivelet (FoxInCloud)
  May 27, 2015 @ 11:23pm
That did not seem to help, unless there is another place creating the set talk on.


Hi Tuvia,

modify command awHTML

* please replace
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,,, @m.lcError)

* by
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,.T.,, @m.lcError)


in absqlthermo.Init there is a set talk on.

When running in development mode, this trashes the display showing the execution times and you see screen after screen until set talk is back off.


Gravatar is a globally recognized avatar based on your email address. Re: set talk
  Tuvia Vinitsky
  Thierry Nivelet (FoxInCloud)
  May 27, 2015 @ 11:30pm
Not sure if helpful, but seems to get turned back off properly in form.Initcontrolsinet.


Hi Tuvia,

modify command awHTML

* please replace
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,,, @m.lcError)

* by
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,.T.,, @m.lcError)


in absqlthermo.Init there is a set talk on.

When running in development mode, this trashes the display showing the execution times and you see screen after screen until set talk is back off.


Gravatar is a globally recognized avatar based on your email address. Re: set talk
  Tuvia Vinitsky
  Thierry Nivelet (FoxInCloud)
  Jul 18, 2015 @ 06:54pm
Not sure if we ever followed up on this, but the solution is to change abdata.init from
IF m.this.lThermo


SET NOTIFY ON
* Direct Talk to an invisible window
this.cWindowOutput = "W"+SYS(2015)
DEFINE WINDOW (this.cWindowOutput) FROM -100,-100 TO -10,-10
this.cWindowTalk = Set("TALK", 1) && retourne "WINDOW xx"
SET TALK WINDOW (this.cWindowOutput)

ELSE

SET NOTIFY OFF
SET TALK OFF
ENDIF

:

to this:

IF m.this.lThermo


* TBV setting talk on makes the next 4 statements echo to console and
* mess up the development mode display. Moved.
SET NOTIFY ON
*SET TALK ON

* Direct Talk to an invisible window
this.cWindowOutput = "W"+SYS(2015)
DEFINE WINDOW (this.cWindowOutput) FROM -100,-100 TO -10,-10
this.cWindowTalk = Set("TALK", 1) && retourne "WINDOW xx"

SET TALK ON && TBV

SET TALK WINDOW (this.cWindowOutput)

ELSE

SET NOTIFY OFF
SET TALK OFF
ENDIF


Hi Tuvia,

modify command awHTML

* please replace
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,,, @m.lcError)

* by
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,.T.,, @m.lcError)


in absqlthermo.Init there is a set talk on.

When running in development mode, this trashes the display showing the execution times and you see screen after screen until set talk is back off.


Gravatar is a globally recognized avatar based on your email address. Re: set talk
  FoxInCloud Support - Thierry N.
  Tuvia Vinitsky
  Jul 19, 2015 @ 10:22pm
modified, thanks for the contribution


Not sure if we ever followed up on this, but the solution is to change abdata.init from
IF m.this.lThermo


SET NOTIFY ON
* Direct Talk to an invisible window
this.cWindowOutput = "W"+SYS(2015)
DEFINE WINDOW (this.cWindowOutput) FROM -100,-100 TO -10,-10
this.cWindowTalk = Set("TALK", 1) && retourne "WINDOW xx"
SET TALK WINDOW (this.cWindowOutput)

ELSE

SET NOTIFY OFF
SET TALK OFF
ENDIF

:

to this:

IF m.this.lThermo


* TBV setting talk on makes the next 4 statements echo to console and
* mess up the development mode display. Moved.
SET NOTIFY ON
*SET TALK ON

* Direct Talk to an invisible window
this.cWindowOutput = "W"+SYS(2015)
DEFINE WINDOW (this.cWindowOutput) FROM -100,-100 TO -10,-10
this.cWindowTalk = Set("TALK", 1) && retourne "WINDOW xx"

SET TALK ON && TBV

SET TALK WINDOW (this.cWindowOutput)

ELSE

SET NOTIFY OFF
SET TALK OFF
ENDIF


Hi Tuvia,

modify command awHTML

* please replace
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,,, @m.lcError)

* by
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,.T.,, @m.lcError)


in absqlthermo.Init there is a set talk on.

When running in development mode, this trashes the display showing the execution times and you see screen after screen until set talk is back off.




-- thn (FoxInCloud)

Gravatar is a globally recognized avatar based on your email address. Re: set talk
  Tuvia Vinitsky
  Thierry Nivelet (FoxInCloud)
  Jul 19, 2015 @ 10:25pm
mon plaisir


modified, thanks for the contribution


Not sure if we ever followed up on this, but the solution is to change abdata.init from
IF m.this.lThermo


SET NOTIFY ON
* Direct Talk to an invisible window
this.cWindowOutput = "W"+SYS(2015)
DEFINE WINDOW (this.cWindowOutput) FROM -100,-100 TO -10,-10
this.cWindowTalk = Set("TALK", 1) && retourne "WINDOW xx"
SET TALK WINDOW (this.cWindowOutput)

ELSE

SET NOTIFY OFF
SET TALK OFF
ENDIF

:

to this:

IF m.this.lThermo


* TBV setting talk on makes the next 4 statements echo to console and
* mess up the development mode display. Moved.
SET NOTIFY ON
*SET TALK ON

* Direct Talk to an invisible window
this.cWindowOutput = "W"+SYS(2015)
DEFINE WINDOW (this.cWindowOutput) FROM -100,-100 TO -10,-10
this.cWindowTalk = Set("TALK", 1) && retourne "WINDOW xx"

SET TALK ON && TBV

SET TALK WINDOW (this.cWindowOutput)

ELSE

SET NOTIFY OFF
SET TALK OFF
ENDIF


Hi Tuvia,

modify command awHTML

* please replace
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,,, @m.lcError)

* by
tnRow = VFPSelectExecute(Strtran(m.lcSelect, 'm.this.oGDIplus'), m.lcResult, .T.,,.T.,, @m.lcError)


in absqlthermo.Init there is a set talk on.

When running in development mode, this trashes the display showing the execution times and you see screen after screen until set talk is back off.




© 1996-2024