Search found 301 matches: sequence

Return to advanced search

Re: [SOLVED] How to move a dialog to a relative position?

... Can I see a reduced and self-contained sample of the problem, please? EMG Enrico, this is what I want to do: I need to call 2 MsgMeter in sequence, so I want to move the first one to stay above the second: +-----------------------------------+|       First Meter bar             |+-----------------------------------++-----------------------------------+| ...
by sambomb
Mon Jun 10, 2013 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: [SOLVED] How to move a dialog to a relative position?
Replies: 9
Views: 2540

[SOLVED] How to move a dialog to a relative position?

... with the absolute position. I tried oWndTop( oDlg:hWnd, oWndTop( oDlg:hWnd ) - 130 ) and the same error happened. Just to clarify, the Wnd/Dialog sequence is: oWnd oDlg MsgMeter -> this is the dialog that I want to move Another MsgMeter
by sambomb
Fri Jun 07, 2013 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: [SOLVED] How to move a dialog to a relative position?
Replies: 9
Views: 2540

Re: bug in FW 13.04 combobox

Now there is a new problem, the dialog does not shows automatically...

It seems that as we create a dialog in advance, this alters the focus sequence that Windows uses
by Antonio Linares
Fri May 10, 2013 2:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug in FW 13.04 combobox
Replies: 82
Views: 29494

Harbour question

... pour " + cDir ) END the code is ok with xharbour , does anyone know how to fix this ? There is a workaround by replacing the whole switch sequence with case endcase or if elseif , Thanks Richard
by Richard Chidiak
Fri Apr 19, 2013 7:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour question
Replies: 2
Views: 570

UEStudio wordfile changes for Clipper language

... print page parameters procedure prompts preview picture quit return recall resource resources redefine read report replace right rlock recno sizes sequence self super set say separator size style sysrefresh shared select store skip seek softseek time title tone to tooltip top total transform var ...
by Antonio Linares
Thu Apr 18, 2013 11:11 am
 
Forum: Utilities / Utilidades
Topic: UEStudio wordfile changes for Clipper language
Replies: 0
Views: 1280

Re: xBrowse + MySql and column sequence ...

1. @ r,c XBROWSE .... command itself calls oBrw:SetMySql(oQry). Please remove the specific call to SetMySql in the next line and try. Have you tried this? May I know the result? I have received the xbrowse.prg. I shall refer to that whenever necessary. Yes , I tried this . Working fine ! Thank yoo ...
by Rimantas
Sat Mar 02, 2013 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: xBrowse + MySql and column sequence ...

1. @ r,c XBROWSE .... command itself calls oBrw:SetMySql(oQry). Please remove the specific call to SetMySql in the next line and try.

Have you tried this? May I know the result?

I have received the xbrowse.prg. I shall refer to that whenever necessary.
by nageswaragunupudi
Sat Mar 02, 2013 5:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: xBrowse + MySql and column sequence ...

1. @ r,c XBROWSE .... command itself calls oBrw:SetMySql(oQry). Please remove the specific call to SetMySql in the next line and try. 2. I do not have the version 11.11 with me. In the absence of the actual source code, I may not be able to advise you correctly. It will be helpful if you can send me...
by nageswaragunupudi
Fri Mar 01, 2013 6:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: xBrowse + MySql and column sequence ... Solved

To save the last used state of xbrowse, we can save the state with cSaveState := oBrw:SaveState() and in the next session restore the same the state with oBrw:RestoreState( cSavedState ) We need not always specify the column names as literals. We can use an array like this: aColNames := { "FIR...
by Rimantas
Fri Mar 01, 2013 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: xBrowse + MySql and column sequence ...

To save the last used state of xbrowse, we can save the state with cSaveState := oBrw:SaveState() and in the next session restore the same the state with oBrw:RestoreState( cSavedState ) We need not always specify the column names as literals. We can use an array like this: aColNames := { "FIRS...
by nageswaragunupudi
Fri Mar 01, 2013 3:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: xBrowse + MySql and column sequence ...

... Thanks for the reply ! Thanks for advice to use bEitValue . OK , let say that at first described XBROWSE with COLUMNS manier . User changed cols sequence , I saved new sequence . Now closing and opeing window I must to restore saved column sequence . It will be suffice to direct new column sequence ...
by Rimantas
Fri Mar 01, 2013 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: xBrowse + MySql and column sequence ...

Please try

Code: Select all  Expand view

@ 0,0 XBROWSE oBrw OF oWnd DATASOURCE oQry ;
    COLUMNS "fldName1", "fldName2", ..., "fldNameN"
 


Note: Even while coding the old style, please do not use bStrData. Instead use bEditValue.
by nageswaragunupudi
Fri Mar 01, 2013 4:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: xBrowse array and move to a specific row

... .. I took out the ON INIT and used the "With Object" clause in my example and I came up with the same problem .. the result was out of sequence by one record .. Please do not fret on this as I have decided that 5k employee records just takes too long to load and build an array. I decided ...
by Rick Lipkin
Thu Feb 28, 2013 9:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse array and move to a specific row
Replies: 5
Views: 1341

xBrowse + MySql and column sequence ...

Hi, I'm trying to rewrite one appl. from dbfs to mysql db . The first problem is to restore clients directed column sequence . That is at first was "order_id,item_id", but client moved columns "item_id,order_id" . Working with dbfs I used Hernans wbrowse class ...
by Rimantas
Thu Feb 28, 2013 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2034

Re: Tablet and form style for Windows 8 (desktop ver.)

Hi Tim,

Yes, I am testing. The keyboard should automatically appear, almost as I have.
The scroll I have it. By the way: GotFocus () goes crazy when you interrupt the sequence of change in focus! But it has also solved.

regards
by Antonio Mart.
Tue Feb 26, 2013 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tablet and form style for Windows 8 (desktop ver.)
Replies: 80
Views: 25142
PreviousNext

Return to advanced search