Search found 80 matches

by stefano
Fri Apr 17, 2020 7:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: FWH, VPN and SMB

I also work in smart working and my modest program works very well

(home pc) vpn -> remote desktop office pc (executable) -> server (DBF archives)
by stefano
Sun Mar 22, 2020 10:30 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Documentation

Ciao

io uso: https://wiki.fivetechsoft.com/doku.php

saluti e auguri per questo momento, io in quarantena per un semplice raffreddore (pazienza passerà)

Stefano da Trento
by stefano
Thu Mar 12, 2020 11:03 pm
Forum: mod_harbour
Topic:
Replies: -1
Views:

Re: IF

Try

if len(alltrim(cUserName )) > 0
by stefano
Wed Nov 07, 2018 11:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Image in word

I use

Code: Select all | Expand

hBmp:=ReadBitmap(0, CurDrive()+':\'+Curdir()+'\QRCODE.BMP')
    nHig=nBmpHeight(hBmp)
    nWid=nBmpWidth(hBmp)
    oWord:AddImagen( 10, 20, 10+nHig, 20+nWid, CurDrive()+'
:\'+Curdir()+'\QRCODE.BMP',{1,1,1,1,1,1})


saluti
by stefano
Sat Sep 08, 2018 9:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Invisible CDX files

was not a progam FW but I did not have permission to admin

Stefano
by stefano
Sat Sep 08, 2018 9:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Invisible CDX files

I have not found files and found them here:

C: \ Users \ Home \ AppData \ Local \ VirtualStore \ .....

Home = username

Stefano
by stefano
Sat Jul 28, 2018 9:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: MS Office Click To Run & OLE

you have to change the excel settings.
now I'm on vacation ...

Saluti
Stefano
by stefano
Sun Jun 24, 2018 7:34 pm
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Actualización automatica de programas

Io uso:
vers := 0versione()if vers = 1 return(nil)endif

function versione()cFile = cperete+"\ar20.exe" // file eseguibile servercfile0 = "ar20.exe" // clientcfile1 = "ar201.exe" // copia clientIF FILE(CFILE) do case case fDate(cfile) > fDate(cfile0&#41 ...
by stefano
Tue Apr 17, 2018 5:10 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir Archivo WORD
Replies: 2
Views: 645

Re: Imprimir Archivo WORD

Yo utilizo este comando. prueba asì

oword:printdoc()

Stefano
by stefano
Mon Sep 25, 2017 8:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: SAve dbf from another pc
Replies: 3
Views: 898

Re: SAve dbf from another pc

I think we are writing permission problems (windows), I have the answer creating the archive folder in c:\
windows 7 writes here: c:\Utenti\ ..... \AppData\Local\VirtualStore\Program Files\

Stefano
by stefano
Sat Aug 19, 2017 2:56 pm
Forum: All products support
Topic: Bollettino TD 896
Replies: 12
Views: 4444

Re: Bollettino TD 896

Ciao
ti ho inviato all'indirizzo email e.m.giordano@emagsoftware.it un file trovato su internet
...

saluti
Stefano
by stefano
Sun Apr 30, 2017 9:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: POSITION BUTTONS ON BUTTONBAR
Replies: 7
Views: 1334

Re: POSITION BUTTONS ON BUTTONBAR

Il Pulsante "Invio" a destra del Dialog oDlgb

DEFINE BUTTONBAR oBar1 OF oDlgb 2013 SIZE 95,45 BOTTOM

DEFINE BUTTON oBut1x OF oBar1 PROMPT " " FONT oFontb GROUP
oBut1x:disable()
oBut1x:nWidth = (ODLGB:nWidth-250)

DEFINE BUTTON oBut OF oBar1 PROMPT "Invio" FONT oFontb FILE cperete+"\bmp ...
by stefano
Sun Apr 30, 2017 8:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: POSITION BUTTONS ON BUTTONBAR
Replies: 7
Views: 1334

Re: POSITION BUTTONS ON BUTTONBAR

Prova ad inserire

DEFINE BUTTON oBut1x OF oBar PROMPT " " FONT oFontb GROUP
oBut1x:disable()
oBut1x:nWidth = (ODLGB:nWidth-250) // lunghezza Button

saluti
Stefano
by stefano
Fri Mar 24, 2017 6:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Import and Export to Excel
Replies: 32
Views: 19607

Re: Import and Export to Excel

Puoi costruirti le pagine di Excel

oExcel := CreateObject( "Excel.Application" )oExcel:WorkBooks:Add()oAs := oExcel:Activesheet()oAs:Cells:Font:Name := "Calibri"oAs:Cells:Font:Size := 11oAs:Columns( 1 ):ColumnWidth := 17oAs:Columns( 2 ):ColumnWidth ...