Search found 176 matches: obtn1

Return to advanced search

Re: TBAR CON BRUSH DE FONDO

oi karinha boa tarde tudo bem // \SAMPLES\BARBRUSH.PRG #include "Fivewin.ch" STATIC oWnd FUNCTION Main() LOCAL oBar, oBtn1, oBrush DEFINE BRUSH oBrush COLOR CLR_HBLUE <---- ACA CON FILE "IMAGEN.JPG" DEFINE BRUSH oBrush FILE "IMAGEN.JPG" DEFINE WINDOW oWnd ...
by claudio.leiva
Thu Nov 02, 2023 4:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TBAR CON BRUSH DE FONDO
Replies: 11
Views: 649

XBROWSE switch Ado / DBF

... Object and MYDBF.DBF file opened. DIALOG starts with oRs Adodb Object DEFINE DIALOG oDlg..@63, 10 XBROWSE oBrw RECORDSET oRs    @ 320,190 BTNBMP oBtn1 SIZE 50,20 OF oDlg ;    ACTION ( here I have to change oBrw)      Inside Action oBtn1 I have to switch oBrw from oRs to MYDBF.DBF file ...
by damianodec
Tue Jun 07, 2022 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE switch Ado / DBF
Replies: 2
Views: 230

Re: Xbrowse, Mysql y Tdolphin.. error de orden..

... static oDlg, oDbf //----------------------------------------------------------------------------// function MiPrueba() local oFont local oBtn1, oBtn2 SET _3DLOOK ON USE C:\xPruebas\Dbf\personas ALIAS xPersonas SELECT xPersonas DATABASE oDbf oDbf:GoTop() DEFINE DIALOG oDlg RESOURCE "PROBAR" ...
by fridgar
Thu Dec 09, 2021 2:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, Mysql y Tdolphin.. error de orden..
Replies: 1
Views: 809

Strange result with Xbrowse and oBrw:toexcel

Using this code : @ 880,400 BTNBMP oBtn1 OF oDlg SIZE 200, 30 NOBORDER PROMPT "Prijswijzigingen naar Exel" 2007 TOOLTIP "Tool1" ACTION exportdata(obrw4) function exportdata(oBrw)  select nofoto  set filter to nofoto->selected  ...
by Marc Venken
Tue Jul 06, 2021 9:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange result with Xbrowse and oBrw:toexcel
Replies: 2
Views: 351

Re: Consulta sobre brush en ventana principal

Ramón,

Prueba a quitar estas líneas y vuelve a probarla:

oBtn1:end()
oBtn2:end()
sysrefresh()

Prueba tambien a quitar esta línea:
SkinButtons()
by Antonio Linares
Wed May 12, 2021 2:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre brush en ventana principal [SOLUCIONADO]
Replies: 9
Views: 1690

Re: BUG COMBOBOX ?????

... VAR nTipoData ITEMS aDataPrint SIZE 50,90 PIXEL OF oDlg; ON CHANGE ( IIF( nTipoData=2,; (aGet[3]:hide(),aGet[4]:show(), ; aGet[4]:setFocus(),; oBtn1:Hide(),oBtn2:Hide(),oBtn3:Hide()),; (aGet[4]:hide(),aGet[3]:show(), ; aGet[3]:setFocus(),; oBtn1:Show(),oBtn2:Show(),oBtn3:Show() ) ) ) as you ...
by Silvio.Falconi
Sat Oct 31, 2020 6:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BUG COMBOBOX ?????
Replies: 12
Views: 1309

Tget change size on line

... nData_To_Print ITEMS aDataPrint SIZE 50,90 PIXEL OF oDlg STYLE CBS_DROPDOWNLIST; ON CHANGE (IIF(nData_To_Print=2,; (aGet[3]:hide(),aGet[4]:show(), oBtn1:Hide(),oBtn2:Hide(),oBtn3:Hide()),; (aGet[4]:hide(),aGet[3]:show(), oBtn1:Show(),oBtn2:Show(),oBtn3:Show())) ) @ 24, 130 GET aGet[3] VAR cData_To_Print ...
by Silvio.Falconi
Wed Oct 28, 2020 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tget change size on line
Replies: 0
Views: 237

Re: bug BTNBMP

It is a duplicate ( copy without the text ) to show the difference F5 Añadir is missing. is added as PROMPT :!: REDEFINE BTNBMP oBtn1 ID 500 OF oDlg ; RESOURCE " TI_ANADIR " ACTION oDlg:End() REDEFINE BTNBMP oBtn2 ID 501 OF oDlg ; RESOURCE " TI_ANAD1 " ; LEFT ; ACTION ...
by ukoenig
Sun Mar 22, 2020 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug BTNBMP
Replies: 24
Views: 2571

Re: bug BTNBMP

I think the problem belongs to the resource // bad REDEFINE BTNBMP oBtn1 ID 500 OF oDlg ; RESOURCE "TI_ANADIR" ACTION oDlg:End() // OK REDEFINE BTNBMP oBtn2 ID 501 OF oDlg ; FILE ".\bitmaps\TI_ANADIR.png"; LEFT ; ACTION oDlg:End() ; PROMPT ...
by ukoenig
Sun Mar 22, 2020 7:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug BTNBMP
Replies: 24
Views: 2571

Re: How to make MS WORD on top?

Switch from TOP to NORMAL @ 20, 80 BTNBMP oBtn1 2007 ; SIZE 30, 30 OF oDlg NOBORDER ; PROMPT "Top" ; ACTION ( SetWindowPos( oDlg:hWnd, -1, 0, 0, 0, 0, 3 ),; WinExec( "Notepad.exe" ) ) close Notepad and reopen with button 2 ...
by ukoenig
Thu Mar 19, 2020 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make MS WORD on top?
Replies: 5
Views: 732

Re: Bug in TBTNBMP Class FWH 19.12 ?

Very interesting. Even more interesting is this. Change the prompt of oBtn1 as "&OK" or "&Choose" or any other text. Then ALT-F4 does not close the dialog. Further, even much more interesting is that if you remove "&" ...
by nageswaragunupudi
Sun Feb 16, 2020 1:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in TBTNBMP Class FWH 19.12 ?
Replies: 8
Views: 1659

Re: How make it?

... ) // -------------- ... ... DEFINE DIALOG oDlg1 FROM 0, 0 TO 180, 200 OF oDlg PIXEL TRUEPIXEL FONT oFont ; STYLE WS_POPUP ... @ 20, 30 BTNBMP oBtn1 2007 ; SIZE 30, 30 OF oDlg NOBORDER ; ACTION MYDLG( oDlg, oBtn1, oFont ) ... ACTIVATE DIALOG oDlg CENTERED RETURN NIL // -------------- FUNCTION ...
by ukoenig
Mon Nov 11, 2019 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How make it?
Replies: 6
Views: 1202

Re: Ribbon Theme

Frances, Here is my exact code: @ 2,5 ADD BUTTON oBtn1 GROUP oGr1 PROMPT "New" BITMAP ".\bitmaps\document_color_blue.BMP" ; NORMAL ROUND SIZE 50,65 ACTION msgInfo("New Work Entry Here") tooltip "New Work Log Entry" ...
by fraxzi
Tue Oct 16, 2018 5:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28224

Re: Ribbon Theme

Frances, Here is my exact code: @ 2,5 ADD BUTTON oBtn1 GROUP oGr1 PROMPT "New" BITMAP ".\bitmaps\document_color_blue.BMP" ; NORMAL ROUND SIZE 50,65 ACTION msgInfo("New Work Entry Here") tooltip "New Work Log Entry" ...
by James Bott
Tue Oct 16, 2018 3:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28224

Re: Ribbon Theme

... there are no color variables, I copied the whole line of code and used it after the button definition in my code for testing. @ 2,5 ADD BUTTON oBtn1 GROUP oGr1 PROMPT "New" BITMAP ".\bitmaps\document_color_blue.BMP" ; NORMAL ROUND SIZE 50,65 ACTION msgInfo("New Work ...
by James Bott
Sat Oct 13, 2018 8:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28224
Next

Return to advanced search