Search found 30 matches: routed

Return to advanced search

Understanding Genesis

... - ROUTER state: user is logged in and made a valid request Router() is used inside <body> to route to the selected view here the program is routed to view - the "route" is passed through: cRoute parameter ----------------------------------------------------------- Best regards ...
by Otto
Sat Nov 09, 2019 8:57 am
 
Forum: mod_harbour
Topic: Understanding Genesis
Replies: 3
Views: 721

Re: Metropanel bug

Richard,

Please replace these lines:

OBTN2:bLClicked := { || oDlg:End() }

with:

OBTN2:bLButtonUp := { || oDlg:End() }

The problem was that the mouse up event was routed to the main screen so the metro button action was fired again
by Antonio Linares
Mon Aug 19, 2013 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Metropanel bug
Replies: 3
Views: 735

Re: MSVS 2012

Richard, I have just emailed you the FWH libs with changes in Class THActiveX. Events are routed now but as numbers, not as strings. Also I have renamed DATA oOle as oOleAuto, so we are compatible with FWH Class TActiveX code. Please run and keep open dbwin: https://fivewin-contributions.googlecode.com/files/dbwin32.zip ...
by Antonio Linares
Tue May 21, 2013 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVS 2012
Replies: 77
Views: 15061

Re: Socket client.prg/server.prg

... router to manage the ip packet routing to make it work. If the other computer is on a different network then you either have to have a static ip routed to your internal 192.168.0.10 or you have to setup a VPN that makes it look like you are on the same network. Logmein and the others act like ...
by Gale FORd
Sat Dec 08, 2012 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Socket client.prg/server.prg
Replies: 23
Views: 5018

Re: Catch Alt+Key combinations

... that you can trap the <alt> key .. oDlg:bKeyDown seems to ignore returning a value for <alt> :( .. <ALT> key combinations are routed to Windows controls like <alt+f4> for a windows 'close' I recommend changing your key routines to <shift>+key Rick Lipkin
by Rick Lipkin
Sat Sep 01, 2012 1:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Catch Alt+Key combinations
Replies: 3
Views: 762

Re: SetKey with ALT key doesn't work

... Shift and Ctrl you can use: GetKeyState( VK_SHIFT ) --> lYesOrNo GetKeyState( VK_CONTROL ) --> lYesOrNo Alt is a system key and usually gets routed through the Method SysCommand(). Windows uses Alt for some system actions, so its better not to use it. In some cases we can redefine a Method ...
by frose
Wed Feb 01, 2012 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetKey with ALT key doesn't work
Replies: 30
Views: 5231

Re: SetKey with ALT key doesn't work

... Shift and Ctrl you can use: GetKeyState( VK_SHIFT ) --> lYesOrNo GetKeyState( VK_CONTROL ) --> lYesOrNo Alt is a system key and usually gets routed through the Method SysCommand(). Windows uses Alt for some system actions, so its better not to use it. In some cases we can redefine a Method ...
by Antonio Linares
Wed Jan 18, 2012 6:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetKey with ALT key doesn't work
Replies: 30
Views: 5231

Re: How to build Harbour 32 & 64 bits

... Pocket PC SDK.msi from: http://www.microsoft.com/downloads/details.aspx?familyid=83A52AF2-F524-4EC5-9155-717CBE5D25ED the above is routed to: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=42 Windows Mobile 5.0 SDK for Pocket PC (requires ...
by Antonio Linares
Tue Jul 12, 2011 8:50 am
 
Forum: Utilities / Utilidades
Topic: How to build Harbour 32 & 64 bits
Replies: 38
Views: 31558

Re: Window and a Resizable dialog inside

Marco,

It does not matter at all. It goes to ACTIVATE WINDOW ... as the dialog is non modal.

The events will get routed to the right codeblocks, so there is nothing to worry about it :-)
by Antonio Linares
Mon Jul 04, 2011 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window and a Resizable dialog inside
Replies: 9
Views: 2029

Mobile Phone applications

Those who develop applications know that the market is re-routed to cell phones. My question is: which mobile phone platform we need to move ? 1. Windows Phone 7 2. Apple iPhone 3. Google Android Or in other words where is heading the FiveTech support? ...
by George
Fri Nov 05, 2010 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mobile Phone applications
Replies: 5
Views: 1107

Re: Pritpal, HBIDE developer, assists us to use it with FWH

Hi want do you think about a separate window for compiler errors ?? Tx You mean "Output Console" ? All compile/link steps are routed in this window. So if I am understanding you correctly, 1) are you asking this window be separated from main-frame ? OR 2) are you asking to present ...
by Pritpal Bedi
Fri Sep 03, 2010 6:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 97062

Re: Diferenciar tipo de IP por usar

... IP's ) 10.0.0.0 - 10.255.255.255 172.16.0.0 - 172.31.255.255 192.168.0.0 - 192.168.255.255 A routable IP address is one that can be reached (or routed) by anyone on the internet. You need this so that when you type http://www.fivetechsoft.com, they can send you the information. A non routable ...
by anserkk
Fri Apr 30, 2010 5:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Diferenciar tipo de IP por usar
Replies: 2
Views: 634

Re: for Antonio Linares

Natter,

We have our emails accounts routed to gmail to filter the spam and your emails were automatically sent to the spam folder.

We have located your emails and we are processing them. Many thanks! :-)
by Antonio Linares
Wed Feb 10, 2010 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: for Antonio Linares
Replies: 1
Views: 488

Re: bKeyDown-RETURN is not processed, another event may be used?

Andrej, As you have created a child control, then those events get routed to that child control. If you comment out this line: // @ 1,1 SAY oSay PROMPT cSearch SIZE 80, 30 then the main window should properly process those events. You can use oWnd:Say( nRow, ...
by Antonio Linares
Thu Apr 09, 2009 10:48 pm
 
Forum: FiveWin for Pocket PC
Topic: bKeyDown-RETURN is not processed, another event may be used?
Replies: 3
Views: 630
Next

Return to advanced search