Search found 26 matches: trapped

Return to advanced search

Re: defining a key to a function

René,

Pease try this:

oBrowse:bKeyDown = { | nKey | MsgInfo( nKey ) }

and check if GoLeft and GoRight keys get trapped with that
by Antonio Linares
Mon Jun 21, 2021 9:41 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: defining a key to a function
Replies: 2
Views: 723

Re: PUBLIC var declaration issue

... it to windows, and kept adding on "functions". It worked, but I never gave much time to optimizing, or cleaning up variables ... just trapped problems and fixed it. When I started my "optimization project" 10 months ago, and started developing classes, it certainly cleaned ...
by TimStone
Sun Aug 30, 2015 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PUBLIC var declaration issue
Replies: 26
Views: 6344

Re: ADO RDD xHarbour

... they ran out of RAM. And also, the OS sometimes lags and the program is expecting something to be done that isn't so you get a error that isn't trapped in your code. Both of these are very hard to solve since they are not exactly repeatable. COPY TO and APPEND FROM the source area rdd calls ...
by James Bott
Fri Aug 07, 2015 2:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446354

Re: Security of array data

... face it .. If an employee makes a bad choice in downloading an attachment from their e-mail, or clicks on a link that re-directs them to a 'booby trapped' website that compromises their machine with malicious software or a 'key logger' .. there is nothing we can do as developers to stop that. ...
by Rick Lipkin
Mon Sep 30, 2013 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Security of array data
Replies: 10
Views: 3694

Re: Close ADO-connection

... the workstation could temporally lose its network connection and the app would not be able to re-connect, however I have all my recordsets trapped between Try,Catch and EndTry .. and all the user would see is a connection message and the app would not necessarily crash with a run-time error.... ...
by nageswaragunupudi
Thu Aug 01, 2013 7:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Close ADO-connection
Replies: 34
Views: 10286

Re: Close ADO-connection

... the workstation could temporally lose its network connection and the app would not be able to re-connect, however I have all my recordsets trapped between Try,Catch and EndTry .. and all the user would see is a connection message and the app would not necessarily crash with a run-time error.... ...
by Rick Lipkin
Thu Aug 01, 2013 5:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Close ADO-connection
Replies: 34
Views: 10286

Re: Outlook OLE

Hi James

Thanks - I tried that and trapped the error - but I am sure there is a property that is set if the item is a distribution list.

Cheers

Colin
by Colin Haig
Mon Dec 24, 2012 6:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook OLE
Replies: 2
Views: 814

Re: Trap Ctrl-C in xBrowse

... iif( nKey = 70, f_action(), ) , ) } finally I found it :) it´s only working here if I set :lAllowCopy to .f. otherwise the key is trapped in method :KeyDown() of xBrowse ---------------------- Hi Otto, kein Problem, alles Weitere per private email :)
by StefanHaupt
Tue Dec 11, 2012 8:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trap Ctrl-C in xBrowse
Replies: 2
Views: 559

Difference xBrowse ::KeyDown and ::KeyChar

Hi friends,

as subject, what is the difference between these methods. Some keys are trapped in ::Keydown() some in ::KeyChar().

In what case I have to to use ::bKeyDown, in what case ::bKeyChar ? What is the best method to create a new keyhandler ?
by StefanHaupt
Mon Jul 02, 2012 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Difference xBrowse ::KeyDown and ::KeyChar
Replies: 3
Views: 893

Re: Modifying the query of a recordset and xBrowse ( solved )

To All FYI .. I have answered my own question .. basically I trapped a double click from my invoice listbox, then passed the recordset and listbox object of the xBrowse I am updating .. and to my surprise, this code worked. Rick Lipkin // invoices   REDEFINE ...
by Rick Lipkin
Thu Jun 14, 2012 8:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Modifying the query of a recordset and xBrowse
Replies: 9
Views: 2281

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

... * contrib/hbqt/qtcore/hbqt_hbqslots.h - Removed: events synonymous signals, i.e., :mousePressEvent() and family. These must be trapped via events interface instead of signals interface. INCOMPATIBLE: if any third party lib is using them, please update. * contrib/hbqt/qtgui/g/HBQTableView.cpp ...
by Pritpal Bedi
Mon Oct 11, 2010 7:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 99079

Re: BTNBMP lButtonDown

Danie, thanks for the answer, but...
...
REDEFINE BTNBMP oBtn RESOURCE "RESOURCE" ID 100 OF oDlg
oBtn:bLClicked = {|| MsgInfo(oBtn:lPressed) }
...
does not execute (maybe is trapped somewhere before)
Regards
Euclides
by Euclides
Thu Aug 12, 2010 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BTNBMP lButtonDown
Replies: 4
Views: 1416

Re: xBrowse standard keys

... handle keys in four different ways: 1. For ‘Normal’ hotkeys, e. g. ALT-A…Z, CTRL-A…Z, etc., only a menu item is necessary 2. Hotkeys which aren’t trapped by the menu, but by bKeyDown like K_DEL, K_CTRL_DEL, K_INS, K_CTRL_INS, ..., 3. Hotkeys which were trapped by bKeyDown after modifying ‘METHOD ...
by frose
Fri Aug 14, 2009 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse standard keys
Replies: 9
Views: 1688

Re: xBrowse standard keys

... K_HOME, K_END, ... So I will not redefine these keys. But what about these keys: K_DEL, K_CTRL_DEL, K_INS, K_CTRL_INS, ... These keys were not trapped by 'oBrw:bKeyChar', though the have no function inside xBrowse! Why? I also don't understand the reason why the keys K_CTRL_HOME and K_CTRL_END ...
by frose
Tue Aug 11, 2009 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse standard keys
Replies: 9
Views: 1688

Re: xbrowse dblclick

Rao In previous builds .. the 'on dblclick' trapped the mouse for the Check on and Check off .. for some reason now .. if you double click in that column .. the double click is not trapped by "ON DOUBLECLICK" if .not. Empty( oCol ...
by Rick Lipkin
Tue Jul 21, 2009 5:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse dblclick
Replies: 5
Views: 827
Next

Return to advanced search