Search found 5 matches
- Fri Nov 06, 2020 12:30 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: get read only
- Replies: 3
- Views: 687
Re: get read only
Pls try this. #include "fivewin.ch" function Main() local oDlg local aFormati :={ "A4","Personalizzato"} local nLarghezza := 21 local nALtezza := 29.7 local cFormato :="A4" local lOrizontale := .f. local aGet[ 4 ] DEFINE DIALOG...
- Fri Nov 10, 2017 5:17 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xbrowses color
- Replies: 9
- Views: 1959
Re: xbrowses color
Are you looking like this, http://i66.tinypic.com/zvtnxt.png #Include "FiveWin.ch" *-----------------------------------------* Function Main() *-----------------------------------------* Local oWnd,oBrw Local aArry:={{"Pizza Caprese","PIZCA","P"},; ...
- Sat Nov 04, 2017 5:03 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: XIMAGE ERROR
- Replies: 5
- Views: 717
Re: XIMAGE ERROR
Try This, #include "fivewin.ch" Function TestshowImg() Local oCattura,oImageCropped Local cImgFileCropped:= "D:\fwh\bitmaps\fivetech.bmp" DEFINE DIALOG oCattura SIZE 400,400 PIXEL @ 40, 60 XIMAGE oImageCropped SIZE 80, 80 OF oCattura PIXEL NOBORDER ACTIVATE DIALOG oCattura CENTER...
- Mon Oct 30, 2017 11:34 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: ShellExecute() set as wait run
- Replies: 9
- Views: 1699
Re: ShellExecute() set as wait run
Try this,
Code: Select all
MsgWait("Mysql database backup","Backup",Winexec( "c:\mysql\mysqldump --host 192.168.1.200 -u root -p -C mydatabase>d:\back\mysqldatebas0001"))
- Thu Oct 26, 2017 4:28 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TTIME CONTROL
- Replies: 3
- Views: 777
Re: TTIME CONTROL
Try This http://i68.tinypic.com/33cp72v.png #include "FiveWin.ch" #include "dtpicker.ch" Function Main() Local oDlg,oGet,oGet1,tTime:=Time() Local tTimeTwo:="12:30:00" DEFINE DIALOG oDlg FROM 2, 2 TO 10, 50 @ 10, 65 TMPicker oGet VAR tTime OF oDlg PIXEL SIZE 50,10 ...