Search found 279 matches: actions

Return to advanced search

OT: Viewpoints on Microsoft

I'm a supporter of Microsoft but recent actions and public statements have caused me some concerns. So, I wrote the following blog post: http://grampatim.com/?p=226 As a result, some communication has started at a significant level with ...
by TimStone
Sat Aug 23, 2014 5:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: Viewpoints on Microsoft
Replies: 0
Views: 316

Re: Next target: EasyReport !!! :-)

... change the look of the preview. This is a preview of a bill. The user can - select between different printers with one click and more important - actions: Here you can select invoice and the invoice is printed and all the actions which are necessary are made or preview. Best regards, Otto http://www.atzwanger-software.com/fw/rechnung.jpg
by Otto
Wed Jul 16, 2014 7:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Next target: EasyReport !!! :-)
Replies: 61
Views: 16323

Re: Slow RDD experiences

... 1skip while .not. eof()  So the .dbf is opened in shared mode but the index locking for skip, seek, etc will be turned off so those actions work much faster. The danger arises when there are people updating the index while you perform a skip or seek and the record you end up on may ...
by Gale FORd
Thu May 29, 2014 4:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 8805

Re: Undo last action on imagepainting ?

I think that you have to put into an array all actions and them paint each record. local aActions := {} aadd( aActions, {"image",10,10,300,200,"c:\myimage.bmp"} ) aadd( aActions, {"icon",200,200,32,32,"c:\myicon.ico"} ...
by pgfdz
Fri Apr 11, 2014 11:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UNDO the last action on imagepainting ?
Replies: 3
Views: 798

Re: bLDClickData

I use to detect the cell-position on mouseclick for actions : oBrw:bLClicked := { || ( nRPos := oBrw:KeyNo(), ; // Row nCPos := oBrw:SelectedCol():nCreationOrder, ; // Column CLICK_ACTION( oBrw, nRPos, nCPos ) ) } // function http://www.pflegeplus.com/pictures/Cellpos1.jpg ...
by ukoenig
Tue Feb 25, 2014 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bLDClickData
Replies: 10
Views: 2011

Re: SKype and other

... on the database and read a record where the phone number is in some field. I can also save the conversation, react on call, define all kind of actions and much more. Of course for complex VOIP application you must use VOIP server (Asterisk for example) and then you can build even a hotel telephony ...
by codemaker
Sun Nov 17, 2013 4:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SKype and other
Replies: 2
Views: 777

Re: Disabling report preview options

... two parameters oPreview, oBar during creation of the ButtonBar of the Preview window. In the user function, the user can add his own buttons and actions which appear after the "Print" button. If this codeblock returns a logical value and if that logical value is FALSE, rpreview does ...
by nageswaragunupudi
Wed Oct 23, 2013 3:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling report preview options
Replies: 9
Views: 4135

Re: Disabling report preview options

... for export to word/excel/pdf/mail will not be shown. Invite comments. I think we already know how to add additional user buttons with additional actions where needed.
by nageswaragunupudi
Mon Oct 21, 2013 4:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling report preview options
Replies: 9
Views: 4135

Re: xBrowse con Tdatabase mal en 1307

... way is to close in valid clause. Safer is to ( oBrw:CancelEdit(), oDbf:Close() ). Avoid using kinetic browse and be careful about btnbar and menu actions. The should check whether the dbf is open before taking action, oBrw:bKeyCount := {|| 0 } oBrw:bKeyNo := {|| 0 } Make it much safer. We get ...
by nageswaragunupudi
Sat Oct 19, 2013 1:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse con Tdatabase mal en 1307 - Solucionado
Replies: 9
Views: 3499

Re: great finding in print preview

Michel,

I don't know yet what printer actions may affect my proposed change, but here in some specific tests, there is a big difference. I will try to post some screenshots asap.

I am doing more tests and I will report here my findings, thanks
by Antonio Linares
Thu Sep 26, 2013 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: great finding in print preview
Replies: 9
Views: 2664

Re: xBrowser syntax

... ... } or COLUMNS aColNames #2. SETUP fnMySetUp( oBrw ) // optional within this function you can use oBrw parameter and can set any more actions #3SELECT ( uSelValue := oBrw:aCols[ 1 ]:Value ) If SELECT clause is used, the dialog shows two buttons <select> and <cancel>. If ...
by nageswaragunupudi
Wed Sep 18, 2013 6:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser syntax
Replies: 1
Views: 748

Re: XBrowse with Add,Modify,Delete methods (13.07)

... / procedures to be passed to xBrowse for editing, deleting records. 5. Array of buttons to be displayed at a user supplied coordinates along actions to be executed. This will enhance the example beyond the basic ADD / EDIT / DELETE options. One final question: does TDataRow suffers from the ...
by HunterEC
Sun Sep 15, 2013 7:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with Add,Modify,Delete methods (13.07)
Replies: 5
Views: 3612

Re: compile error. TO : Antonio.

The next error is because the C language does not allow to declare a variable after some sentences (actions): GUID WVTPolicyGUID = WINTRUST_ACTION_GENERIC_VERIFY_V2; <---- error The C++ language allows that, but not the C language. So take that line under the above variables ...
by Antonio Linares
Mon Jul 29, 2013 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: compile error. TO : Antonio.
Replies: 4
Views: 876

Re: Return-value with Keyboard-Col-change in xBrowse

... 2. xBrowse cellchange row or col, shows the cellvalue in the GET 3. defined in the GET a incremental search in xBrowse with focused cell. All 3 actions are working now. is it possible to change the cellcolor of the result ? For the moment only the cellborder changes. oBrw1:bClrSelFocus or oBrw1:bClrSel ...
by ukoenig
Tue Jul 09, 2013 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Return-value with Keyboard-Col-change in xBrowse
Replies: 6
Views: 2526

Re: OT: Beta tester por dos semanas

... but I want to know if I can use your ideas and perhaps part of code with their permission, I've also looked FiveForm My first goals are simple actions that operate at 98% at least Sorry, but I do not speak English and the translation is done by Google Translate Cheers and thanks again
by cnavarro
Thu Jun 13, 2013 5:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: OT: Beta tester por dos semanas
Replies: 15
Views: 4209
PreviousNext

Return to advanced search