pfc_userinput


pfcapsrv.pbl   >   pfc_w_message   >   pfc_userinput   

Full name pfc_w_message.pfc_userinput
Access public
Extend of
Return value
Prototype event pfc_userinput()

Name Datatype
No Data

Name Datatype
SEPARATOR Integer

event pfc_userinput;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  			pfc_userinput
//
//	(Arguments:		None) 
//
//	(Returns:  		None)
//
//	Description:	Will enlarge the window to get user input. 
//
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision History
//
//	Version
//	5.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1997 Sybase, Inc. and its subsidiaries.  All rights reserved.
//	Any distribution of the PowerBuilder Foundation Classes (PFC)
//	source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//
//////////////////////////////////////////////////////////////////////////////

constant Integer SEPARATOR = 50

// Make the UserInput controls visible.
gb_userinput.Visible = True
st_userinput.Visible = True
mle_userinput.Visible = True

// Resize window to make the User Input field available.
this.Height = mle_userinput.Y + mle_userinput.Height + 100 + SEPARATOR

// Set focus on the User Input field.
SetFocus(mle_userinput)



end event

     
Name Owner
pfc_w_message.cb_userinput.clicked cb_userinput

     
Name Owner
systemfunctions.setfocus systemfunctions

     
Full name
pfc_w_message
pfc_w_message.mle_userinput

     
Name Scope
No Data