FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC VALID Clause For WINDOW
Posts: 31
Joined: Thu Oct 13, 2005 10:18 AM

VALID Clause For WINDOW

Posted: Tue Feb 07, 2006 01:17 PM

Antonio,

I am getting a "parse error at WINDOW" if I include the VALID clause.

I have a WINDOW/MENU interface that requires validation before I close the WINDOW

How may I prevent exit from a WINDOW.

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM

VALID Clause For WINDOW

Posted: Tue Feb 07, 2006 06:11 PM

GWard,

VALID is currently available just for dialogboxes, not for windows.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 31
Joined: Thu Oct 13, 2005 10:18 AM

VALID Clause For WINDOW

Posted: Wed Feb 08, 2006 12:03 AM
Antonio Linares wrote:GWard,

VALID is currently available just for dialogboxes, not for windows.


Antonio,

Any idea how long until implementation?

I have a WINDOW with a data BROWSE that receives tags to various records.

Before the user leaves the screen they are required to either clear or write the selection away to an order.

If they click OK and there are unprocessed tags I need to intercept.

I have used a WINDOW due to the extra screen space I require and a very comprehensive MENU.
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM

VALID Clause For WINDOW

Posted: Wed Feb 08, 2006 09:26 PM

GWard,

We can not say when we may get it. In the meantime you may use a dialog if you need a VALID for it.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 6984
Joined: Fri Oct 07, 2005 07:07 PM

VALID Clause For WINDOW

Posted: Sun Apr 09, 2006 09:48 AM

Hello Antonio,

when will be VALID ready for WINDOWS?

If I change to DIALOG SIZE is not the same as on WINDOWS.

Regards
Otto

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM

VALID Clause For WINDOW

Posted: Sun Apr 09, 2006 03:28 PM

Otto,

We can not say a date. We will offer it as soon as possible.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 48
Joined: Sun Oct 30, 2005 09:29 AM

VALID Clause For WINDOW

Posted: Thu May 11, 2006 08:06 PM

Hello Antonio,

Any idea on when this feature will be available in windows?
A question of days, weeks, months?

If it takes too long, is it possible to implement the "NOSYSMENU" style?
Or to disable the "X"?

Many thanks,
Raymond

Raymond Fischbach
www.mouches.org
Posts: 842
Joined: Mon Oct 10, 2005 01:29 PM

VALID Clause For WINDOW

Posted: Fri May 12, 2006 06:24 AM
This is a sample for disable "X"




#include "FWCE.ch"

#DEFINE TRUE .T.
#DEFINE FALSE .F.

#define SHFS_SHOWTASKBAR 1 // 0x0001
#define SHFS_HIDETASKBAR 2 // 0x0002 //2
#define SHFS_SHOWSIPBUTTON 4 // 0x0004
#define SHFS_HIDESIPBUTTON 8 // 0x0008 //8
#define SHFS_SHOWSTARTICON 16 // 0x0010
#define SHFS_HIDESTARTICON 20 // 0x0020 //32


//----------------------------------------------------------------------------//
function Main()

Local oSay ,oBmp ,oWnd
DEFINE WINDOW oWnd //TITLE "Risto 2000"

@ 14.6,28.5 BUTTON oBmp PROMPT "EXIT" ;
ACTION oWnd:End() SIZE 60, 20

@ 0, 0 BTNBMP FILE CurDir() + "\RistoCe.bmp" SIZE 240,320

ShFullScreen(oWnd:hwnd,SHFS_HIDESTARTICON )
ShFullScreen(oWnd:hwnd,SHFS_HIDETASKBAR )
ShFullScreen(oWnd:hwnd,SHFS_HIDESIPBUTTON )

ACTIVATE WINDOW oWnd ON INIT MoveWindow(oWnd:hWnd,0,0,240,320)

return .T.
Posts: 48
Joined: Sun Oct 30, 2005 09:29 AM

VALID Clause For WINDOW

Posted: Fri May 12, 2006 12:09 PM

Thank you Maurizio,

Raymond Fischbach
www.mouches.org

Continue the discussion