Search found 69 matches: absolute

Return to advanced search

Re: SqlQuery and Microsoft.ACE.OLEDB.12.0 error

... does automatically. I have some doubts on this. ADO connection is to be created with datapath. For now, kindly hard code the real folder with absolute path. Not even relative path. cFile := "<fullabsolutepathwithdrive>\locations.dbf" example: "c:\fwh\samples\customer.dbf" ...
by nageswaragunupudi
Fri Oct 11, 2013 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SqlQuery and Microsoft.ACE.OLEDB.12.0 error
Replies: 14
Views: 3756

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

... oDlg:nWidth, oDlg:nHeight ) but the dialog don't move properly. The main problem here is that oDlg:nTop and oDlg:nLeft aren't filled 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: ...
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: 2420

Re: What does this do ?

METHOD VGetPos() INLINE ::nVScrollPos

DATA nVScrollPos; // Actual absolute vertical scroll pos (used internally)

Regards,
James
by James Bott
Tue Aug 16, 2011 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: What does this do ?
Replies: 1
Views: 317

Re: TSBrowse TXBrowse ?

... line, negative sizes indicate that a margin of 10 pixels on the right and 30 pixels at the bottom to be left. We can also specify the size in absolute pixels. Advantage of specifying right and bottom margins is that if we later change the size of the dialog, we do not have to change the size ...
by nageswaragunupudi
Mon Jan 24, 2011 7:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse TXBrowse ?
Replies: 8
Views: 3076

Re: create and use an index for a set of records

... := 1 nPosStart := 1 // enter in a loop to begin search operations DO WHILE .T. // search counter nFound := 0 // aPosrec1 contain in position 1 the absolute position in cStringa and in position // 2 the calculated record aPosRec1 := ATREC( aString[ 1 ] , cStringa , nPosStart, nHead, nRecSize ) IF ...
by MarcoBoschi
Tue Aug 03, 2010 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: create and use an index for a set of records
Replies: 10
Views: 2146

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

... Allowed hbIDE execution with any text type file. It was accepting .PRG.CPP only. + Broadened the scope of keyword coloring for any case, mixed or absolute. It was all lower or all upper previously. + Prepared ground for user defined keywords through user dictionaries. + Added new flags in "Setup" ...
by Pritpal Bedi
Mon Jun 14, 2010 2:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 99546

Re: Definition of Font Size?

Ross_ValuSoft wrote:what does a height of -10 mean?


It's only a conventional sign that means "please, calculate the width of the font that best fits the absolute value of the provided height".

EMG
by Enrico Maria Giordano
Thu May 27, 2010 6:42 am
 
Forum: FiveWin for Pocket PC
Topic: Definition of Font Size?
Replies: 4
Views: 930

Re: Edit a xBrowse array

... as oBrw:aArrayData[ oBrw:nArrayAt ][ 4 ] and 4 is not column number but your array element. But I fully agree with you that we should avoid using absolute column numbers in our code. I never use numbers. I would have written the above code block as : oBrw:Target:bEditBlock := { || GetNewTarget( ...
by nageswaragunupudi
Fri Mar 05, 2010 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Edit a xBrowse array
Replies: 3
Views: 707

WebForm in FWH

... '+ltrim(str(octrl:nwidth))+'px; height: '+ltrim(str(octrl:nheight))+'px"' cHtm+='<div class="Estilo1" style="position:absolute; top:'+ltrim(str(octrl:nTop))+'px; left:'+ltrim(str(octrl:nleft))+'px;">'+h() do case case octrl:classname()="TSAY" cHtm+=octrl:cCaption+h() ...
by Vladimir Zorrilla
Thu Jan 28, 2010 6:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebForm in FWH
Replies: 3
Views: 1381

Migrar formularios FW a la Web (WebForm) Ver 1.1

... '+ltrim(str(octrl:nwidth))+'px; height: '+ltrim(str(octrl:nheight))+'px"' cHtm+='<div class="Estilo1" style="position:absolute; top:'+ltrim(str(octrl:nTop))+'px; left:'+ltrim(str(octrl:nleft))+'px;">'+h() do case case octrl:classname()="TSAY" cHtm+=octrl:cCaption+h() ...
by Vladimir Zorrilla
Thu Jan 28, 2010 5:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar formularios FW a la Web (WebForm) Ver 1.1
Replies: 10
Views: 2755

Re: Show all bmps

>> I tried to insert my folder of Images ".\images\*.bmp" and I cannot see any bmps >> Please try giving absolute path. Please make sure the path is properly evaluated. The sample has to work. I noticed a small problem in the way the code is shown in the forums. ...
by nageswaragunupudi
Tue Jan 19, 2010 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show all bmps
Replies: 9
Views: 1472

New FTDN November/Noviembre 2009 (9.11)

... the container Window/Dialog. When window is resized, browse also is resized keeping the right and bottom margins if assigned. Margins, instead of absolute size can be defined while creating browse by speicifying zero or negative values for width and height values. Example: @ 10,10 XBROWSE oBrw ...
by Antonio Linares
Sun Nov 22, 2009 10:02 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre 2009 (9.11)
Replies: 0
Views: 1648

Re: Automating Compile and Link

... the new process didn't seem to inherit the current working directory so I replaced the include files that were specified with relative names by absolute names. I wrote code to get the information returned by pkg-config from a separate process. My initial attempts failed but I discovered that ...
by xProgrammer
Sun Oct 04, 2009 8:29 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3187

Re: xBrowse incremental search

... bit old fashion ). If the browser has the focus, the input is displayed in the say and starts the incremental-seek. Inside the function, You have absolute control what You want to do, the user presses a special key. // Input-Control// -----------------REDEFINE SAY oSEEK VAR  cSEEK  ID 100 OF oDlg ...
by ukoenig
Fri May 29, 2009 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse incremental search
Replies: 6
Views: 1169

Re: Error with array bitmaps

>
sample :
".\bitmaps\gra001.bmp"

>
first please test with absolute paths. Later you can work with relative paths.
by nageswaragunupudi
Fri Apr 17, 2009 11:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with array bitmaps
Replies: 4
Views: 551
PreviousNext

Return to advanced search