Search found 5 matches

by sreerajklm
Fri Nov 06, 2020 12:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: get read only
Replies: 3
Views: 652

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...
by sreerajklm
Fri Nov 10, 2017 5:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowses color
Replies: 9
Views: 1933

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"},;            ...
by sreerajklm
Sat Nov 04, 2017 5:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: XIMAGE ERROR
Replies: 5
Views: 692

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...
by sreerajklm
Mon Oct 30, 2017 11:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: ShellExecute() set as wait run
Replies: 9
Views: 1651

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"))
by sreerajklm
Thu Oct 26, 2017 4:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: TTIME CONTROL
Replies: 3
Views: 760

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 ...