Пример #1
0
BOOL dlgKeyboard(WndProperty* theProperty){
	DataField* pField = theProperty->GetDataField();
	if(pField) {
		if(pField->CreateKeyboard()){
			theProperty->RefreshDisplay();
			return TRUE;
		}
	}
	return FALSE;
}
Пример #2
0
BOOL dlgKeyboard(WndProperty* theProperty){
    BOOL Ret = FALSE;

    wKeyboardPopupWndProperty = theProperty;
	DataField* pField = theProperty->GetDataField();
	if(pField) {
		if(pField->CreateKeyboard()){
			theProperty->RefreshDisplay();
			Ret = TRUE;
		}
	}
    wKeyboardPopupWndProperty = nullptr;

	return Ret;
}