Search found 43 matches: ownd1

Return to advanced search

Re: BOM production

... end obl1:ledit:=.f. obl1:odlg:UPDATE() obl1:odlg:obar:AEVALwhen() return FUNCTION eng0504(itemid1,version1,ctable1,ctable2) local oWnd1, oTree, oBmp1, oBmp2, odb1 // private oImageList if ctable1==nil ctable1:="bom1" end if ctable2==nil ctable2:="bom2" end DEFINE ...
by ShumingWang
Fri Apr 27, 2018 2:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BOM production
Replies: 3
Views: 1127

Re: Sample - collection ( download Rel. 1.1 )

... oChoose, oBtn1, bChoose bChoose = {| oG | ChangeGrad1( oG, oBtn1 ) } 4. add and adjust : @ 130, 130 RBBTN oBtn1 PROMPT "&Aceptar" OF oWnd1 SIZE 120, 50 FONT oSFont ; ACTION ChooseGradient( oBtn1:aGradiant, bChoose, , {| oChoose | CancelGrad( oChoose, oBtn1 ) } )[/color] 5. add the ...
by ukoenig
Tue Jun 13, 2017 2:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sample - collection ( download Rel. 1.1 )
Replies: 10
Views: 2656

aiuto su apertura finestra window

ho questo codice: DEFINE WINDOW oWnd1 FROM 1, 1 TO 23, 79 TITLE titolo" VSCROLL ACTIVATE WINDOW oWnd1 MAXIMIZED ON PAINT Drawlinee() ; ON INIT Drawnumeri() la funzione Drawlinee disegna sullo schermo una griglia usando dei cicli for ...
by damianodec
Thu Feb 20, 2014 9:48 pm
 
Forum: All products support
Topic: aiuto su apertura finestra window
Replies: 2
Views: 775

Re: Unknown informations in log-file ( missing error-line ) ?

... I had to check line by line by myself. I will create a little testfile with these special errors. The same mystery happend with this error : LOCAL oWnd1, oSay[4], oGet1, ,cGet1 := "?" I added these errors to \samples\testfile.prg #include "FiveWin.ch" function Main() local oText ...
by ukoenig
Wed Jun 19, 2013 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unknown informations in log-file ( missing error-line ) ?
Replies: 6
Views: 2285

Re: Height of Window / Dialog different using same vars ?

... the Dialog. But how can I MOVE/ RESIZE this window. Any solution, to use DESIGN MODE for this kind of window ? The Combination : DEFINE WINDOW oWnd1 FROM nDlgTop, nDlgLeft TO nDlgHeight, nDlgWidth PIXEL ; STYLE nOr( WS_POPUP, WS_BORDER ); COLOR CLR_BLACK, CLR_BLUE DEFINE DIALOG oGDialog FROM ...
by ukoenig
Thu May 02, 2013 5:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Height of Window / Dialog different using same vars ?
Replies: 2
Views: 610

Height of Window / Dialog different using same vars ?

... is different ( seems to be the Window-title ) Using a window without title, is there a way to grab / move the window ? Results : DEFINE WINDOW oWnd1 FROM nDlgTop, nDlgLeft TO nDlgHeight, nDlgWidth PIXEL ; COLOR CLR_BLACK, CLR_BLUE ; TITLE "Dialog Gradient-sections" ; NOSYSMENU DEFINE ...
by ukoenig
Thu May 02, 2013 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Height of Window / Dialog different using same vars ?
Replies: 2
Views: 610

Clearing Gets

... a combobox - I can add the first record okay , but when I try to add a new record as below @ 2,01 SAY "Enter Job Number " SIZE 120,14 of oWnd1 @ 15,140 GET oGet VAR oSample:jbno SIZE 75,20 PIXEL OF oWnd1 UPDATE picture '@!' @ 2,22 SAY "Client " SIZE 50,14 of oWnd1 @ 15,290 GET ...
by Colin Haig
Tue Feb 26, 2013 2:49 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Clearing Gets
Replies: 7
Views: 2948

Sr. Antonio - FIVEWIN BUG

... aleatoriamente, e não era possível reproduzir o problema. :( Hoje eu consegui simular :) #include "fivewin.ch" function main() local oWnd1 DEFINE WINDOW oWnd1 TITLE "oWnd1" mdi ACTIVATE WINDOW oWnd1 on init(CriaDialog(),syswait(5),msginfo('CLICK ON THE WINDOW IN THE BACKGROUND ...
by MGA
Tue Nov 13, 2012 5:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Sr. Antonio - FIVEWIN BUG
Replies: 5
Views: 1852

Ayuda con este codigo

... es decir, no se refresca (siempre muestra el ultimo), me estara faltando alguna instruccion ? Espero haberme podido explicar Gracias DEFINE WINDOW oWnd1 FROM 0, 0 TO 600, 800 PIXEL TITLE "APEIRON-Cable & Wireless,S.A." MDI oBar := TExplorerBar():New() oPanel := oBar:AddPanel("Procesos ...
by Orbex
Fri Jul 20, 2012 1:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con este codigo
Replies: 1
Views: 748

Re: Regresó el foco a esta ventana?

Prueba con

oWnd1:Restore()
oWnd1:SetFocus()
by joseluisysturiz
Fri Mar 02, 2012 12:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Regresó el foco a esta ventana?
Replies: 6
Views: 1485

ESC key blanks out MDI Child dialog

... nothing would happen or the escape key could trip a valid close ? Thanks Rick Lipkin ps .. I have tried this code with the same results where oWnd1 is the mdi child: // key handler to trap key strokes  ESC to quit  //       oWnd1:bKeyDown := {|nKey| IF(nKEY = 27, oWnd1:END(), ...
by Rick Lipkin
Wed Sep 21, 2011 9:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ESC key blanks out MDI Child dialog
Replies: 2
Views: 565

Re: About box

... think a VTitle can do the Job : http://www.pflegeplus.com/pictures/about.jpg @ 15, 15 BUTTON "&About" SIZE 100,50 OF oWnd1 PIXEL ; FONT oFont1 ; ACTION SHOW_TITLE(oWnd1, 100, 100) // ----------------- FUNCTION SHOW_TITLE(oContrl, nTop, nLeft) Local oBar1 @ nTop, nLeft ...
by ukoenig
Mon Jul 04, 2011 9:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: About box
Replies: 13
Views: 2507

Re: Coloring a line Solved. Now coloring an individual cell

... "View Print Edit Reports" ;  COLOR CLR_WHITE, CLR_WHITE  if viewingMulti == 0     define dialog oDlg resource "hagbrow" of oWnd1 TRANSPARENT TITLE cItem Font oFont3       REDEFINE TABS oTabs PROMPTS "Profit And Loss", "Cash Flow", "Balance Sheet", ...
by hag
Fri Jan 14, 2011 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Coloring a line Solved. Now coloring an individual cell
Replies: 15
Views: 4352

Re: vTaskBar on the left MDIChild Window on the Right

... by the user selecting to cascade, split vertically, or horizontally the open windows. Regards, James oPanel1:AddLink( "Providers", {|| oWnd1:maximize(), oWnd1:setfocus()}, "c:\fwh\bitmaps\16x16\additem.bmp" ) oPanel1:AddLink( "Patients", {|| oWnd2:maximize(), oWnd2:setFocus()}, ...
by James Bott
Tue Sep 28, 2010 10:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: vTaskBar on the left MDIChild Window on the Right
Replies: 14
Views: 4553

Re: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?

... @ D_HEIGHT - 150, D_WIDTH - 210 > was the same. The Button used with a Window : @ D_HEIGHT - 150, D_WIDTH - 210 BTNBMP oBtn1 SIZE 170, 90 OF oWnd1 2007 ; // ON INIT : oBtn1:move(oWnd1:nHeight - 150, oWnd1:nWidth - 210, , , .F. ), ; The same Button used with a Dialog : @ D_HEIGHT - 150, D_WIDTH ...
by ukoenig
Tue Aug 17, 2010 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?
Replies: 17
Views: 5602
Next

Return to advanced search