Search found 158 matches: ogrid

Return to advanced search

ERROR WITH TECLAS IN XBROWSE

I have oApp():oGrid:bKeyDown := {|nKey| PrTecla(nKey,oApp():oGrid,oCont,oApp():oDlg) } function PrTecla(nKey,oGrid,oCont,oDlg)Do case   case nKey==VK_RETURN      PrEdita(oGrid,2,oCont,oDlg)  ...
by Silvio.Falconi
Tue Dec 04, 2012 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR WITH TECLAS IN XBROWSE
Replies: 0
Views: 307

Re: EditCell

... "CUSTOMER" AUTOCOLS ; CELL LINES NOBORDER FASTEDIT is there another method because I have another configuration please : oApp():oGrid := TXBrowse():New( oApp():oDlg ) oApp():oGrid:nTop := 00 oApp():oGrid:nLeft := nSplit+2 oApp():oGrid:nBottom := 200 oApp():oGrid:nRight := 400
by Eoeo
Mon Aug 13, 2012 3:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EditCell
Replies: 6
Views: 1394

Re: EditCell

... }, i18n("Da mese"),80, },; { { || Mese(val(CE->STAG2)) }, i18n("A mese"),80, }} FOR i := 1 TO Len(aBrowse) oCol := oApp():oGrid:AddCol() oCol:bEditValue := aBrowse[ i, 1 ] * oCol:bStrData := aBrowse[ i, 1 ] oCol:cHeader := aBrowse[ i, 2 ] oCol:nWidth := aBrowse[ i, 3 ] ...
by Eoeo
Mon Aug 13, 2012 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EditCell
Replies: 6
Views: 1394

Re: Difference xBrowse ::KeyDown and ::KeyChar

oApp():oGrid:bKeyDown := {|nKey| Stephan_Tecla(nKey,oApp():oGrid,oCont,oApp():oDlg ) } function Stephan_Tecla(nKey,oGrid,oCont,oDlg) Do case case nKey==VK_RETURN Function for edit record case nKey==VK_INSERT function for add ...
by Eoeo
Mon Jul 02, 2012 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Difference xBrowse ::KeyDown and ::KeyChar
Replies: 3
Views: 893

Xbrowse SetBackGround error

I insert on a xbrowse a background oApp():oGrid:SetBackGround(".\bitmaps\familyb.bmp",2 ) and it run ok only when the user iconize the application the procedure make a strange error I have this strange error Application===========   Path ...
by Eoeo
Tue Jun 19, 2012 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse SetBackGround error
Replies: 7
Views: 1475

Re: Also for the euro into xbrowse

Mr Rao I m trying also with DEFINE FONT oFontGrid NAME "Courier," SIZE 0,GetDefaultFontHeight() WITH OBJECT oApp():oGrid:aCols[ 10 ] :AddResource("cassa16") :nDataStrAlign := AL_RIGHT :cEditPicture := "@ €99,999.99 " :lTotal := .t. :nTotal := 0 :nFootStrAlign ...
by Silvio
Sat Apr 23, 2011 8:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Also for the euro into xbrowse
Replies: 6
Views: 934

Also for the euro into xbrowse

I can show the symbol of euro into xbrowse but I have set WITH OBJECT oApp():oGrid:aCols[ 10 ] :nDataStrAlign := AL_RIGHT :cEditPicture := "@ €99,999.99 " :lTotal := .t. :nTotal := 0 :nFootStrAlign := AL_RIGHT END the problem is I can show the symbol ...
by Silvio
Fri Apr 22, 2011 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Also for the euro into xbrowse
Replies: 6
Views: 934

Re: ERROR WITH XBROWSE : TOEXCEL

thanks Rao, a Question : I use FOR i := 1 TO Len(aBrowse) oCol := oApp():oGrid:AddCol() oCol:bStrData := aBrowse[ i, 1 ] oCol:cHeader := aBrowse[ i, 2 ] oCol:nWidth := aBrowse[ i, 3 ] if !Empty(aBrowse[ i, 4 ]) oCol:cEditPicture:=aBrowse[ i, 4 ] Endif NEXT I ...
by Silvio
Fri Apr 22, 2011 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR WITH XBROWSE : TOEXCEL
Replies: 6
Views: 1369

ERROR WITH XBROWSE : TOEXCEL

http://img24.imageshack.us/img24/8272/ffffffif.jpg I HAVE A XBROWSE and I MADE ACTION (CursorWait(), oApp():oGrid:ToExcel() , CursorArrow()); and it made an error why ????? Application =========== Path and name: C:\Work\Prg2\rux\main.Exe (32 bits) Size: 3,516,416 bytes ...
by Silvio
Thu Apr 21, 2011 11:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR WITH XBROWSE : TOEXCEL
Replies: 6
Views: 1369

Re: Why Some Browses with ADS are slow?

Are you sure oGrid:nAt does not work. I use it all the time to show a column with the line numbers. It correctly displays each line number.
Code: Select all  Expand view

   ADD COLUMN TO oBrw ;
      DATA { || oBrw:nAt } ;
      HEAD ""      ;
      SIZE 30 PIXELS
 
by Gale FORd
Tue Apr 12, 2011 6:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Why Some Browses with ADS are slow?
Replies: 22
Views: 10170

Re: Why Some Browses with ADS are slow?

Gale; Hi. The problem here is that ::oGrid:nAt returns the cursor position in the grid and not as it is painting. Thus not achieving the pijama effect. I tried it. Thank you, but it doesn't work. I realize that not being able to use OrdKeyNo() ...
by reinaldocrespo
Tue Apr 12, 2011 3:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Why Some Browses with ADS are slow?
Replies: 22
Views: 10170

XBROWSE WINDOWS SEVEN LIKE

...     endif   endifreturn Self//------------------------------------------------------------------//  I made oApp():oGrid := TXBrWin7():New( oApp():oDlg ) oApp():oGrid:nTop := 00 oApp():oGrid:nLeft := nSplit+2 oApp():oGrid:nBottom := ::nGridBottom oApp():oGrid:nRight ...
by Silvio
Fri Mar 11, 2011 10:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE WINDOWS SEVEN LIKE
Replies: 0
Views: 431

Re: HELP TO INSERT IMAGE ON XBROWSE

... 60, 0} ,; {'Image' , 'C', 60, 0}}, 'DBFCDX') and I want insert a image directly from xbrowse how can I do it ? And I want create a xbrowse oApp():oGrid := TXBrowse():New( oApp():oDlg ) .... aBrowse := { { { || TT->CODICE }, i18n("Codice"), 80 },; { { || TT->DESCRI }, i18n("Descrizione"),200 ...
by Silvio
Thu Mar 10, 2011 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HELP TO INSERT IMAGE ON XBROWSE
Replies: 2
Views: 608

HELP TO INSERT IMAGE ON XBROWSE

... DbCreate(cDir+'TT', {{'Codice' , 'C', 4, 0} ,; {'Descri' , 'C', 60, 0} ,; {'Image' , 'C', 60, 0}}, 'DBFCDX') And I want create a xbrowse oApp():oGrid := TXBrowse():New( oApp():oDlg ) .... aBrowse := { { { || TT->CODICE }, i18n("Codice"), 80 },; { { || TT->DESCRI }, i18n("Descrizione"),200 ...
by Silvio
Thu Mar 10, 2011 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HELP TO INSERT IMAGE ON XBROWSE
Replies: 2
Views: 608

error xbrowse toexcel

I have a simply dbf with 3 field concep c 4 descr c 60 tipo n 1 why I cannot converte it on excel from this command directly ? oApp():oGrid:ToExcel() Error description: Error BASE/2022 Error de argumento: ALLTRIM Args: [ 1] = N 3 Stack Calls =========== Called from: => ALLTRIM(0) Called ...
by Silvio
Mon Feb 28, 2011 8:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: error xbrowse toexcel
Replies: 0
Views: 251
PreviousNext

Return to advanced search

cron