Search found 80 matches

by stefano
Fri Apr 17, 2020 7:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH, VPN and SMB
Replies: 27
Views: 2456

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: Documentation
Replies: 7
Views: 982

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: IF
Replies: 4
Views: 1056

Re: IF

Try

if len(alltrim(cUserName )) > 0
by stefano
Wed Nov 07, 2018 11:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Image in word
Replies: 9
Views: 1205

Re: Image in word

I use

Code: Select all

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: Invisible CDX files
Replies: 21
Views: 2137

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: Invisible CDX files
Replies: 21
Views: 2137

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: MS Office Click To Run & OLE
Replies: 4
Views: 550

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: Actualización automatica de programas
Replies: 9
Views: 1423

Re: Actualización automatica de programas

Io uso: vers := 0 versione() if vers = 1    return(nil) endif     function versione() cFile = cperete+"\ar20.exe"        // file eseguibile server cfile0 = "ar20.exe"    // client cfile1 = "ar201.exe"   // copia client IF FILE(CFILE)    do case       case fDate(cfile) >...
by stefano
Tue Apr 17, 2018 5:10 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir Archivo WORD
Replies: 2
Views: 631

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: 718

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: 3261

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
Fri Aug 18, 2017 10:24 pm
Forum: All products support
Topic: Bollettino TD 896
Replies: 12
Views: 3261

Re: Bollettino TD 896

non so se ti può interessare

https://www.poste-impresa.it/resources/ ... roprio.pdf

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

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 FIL...
by stefano
Sun Apr 30, 2017 8:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: POSITION BUTTONS ON BUTTONBAR
Replies: 7
Views: 981

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: 15434

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 := 11 oAs:Columns( 1 ):ColumnWidth := 17 oAs:Columns( 2 ):ColumnWidth := 150 oAs:Cells( 3, 1 ):...