Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Namespace:  JollyGiant.Emulation
Assembly:  JGSComdotNet (in JGSComdotNet.dll) Version: 1.0.0.0 (1.0.0.0)

Image RemovedSyntax

C#
StatusCode WaitForString(
	string waitString,
	int timeout
)


Visual Basic (Declaration)
Function WaitForString ( _
	waitString As String, _
	timeout As Integer _
) As StatusCode


Visual C++
StatusCode WaitForString(
	String^ waitString, 
	int timeout
)


JavaScript
function WaitForString(waitString, timeout);


Parameters

waitString Type: System..::.StringThe string to search the screen for.

...

This can be one of the following values:

Status codeDescription
OkThe string was found before the timeout expired.
WHLLNOTCONNECTEDYour application is not currently connected to a session (see Connect(Object)).
WHLLNOFIELDThe specified string was not found on the host presentation space before the timeout expired.
WHLLPARAMETERERRORYou either specified an empty string to search for, or a the timeout value of 0 or less.
WHLLPOSITIONERRORSpecified screen position value is invalid.
WHLLSYSERRORThe method failed due to a system error.


Image RemovedRemarks


The host presentation space can contain nulls in positions where spaces are displayed, in which case a string containing spaces may not be found, even if the string is visible on the screen.

Image RemovedSee Also


IQWS3270 Interface
JollyGiant.Emulation Namespace

...