Search found 309 matches

by Rochinha
Mon Jan 29, 2007 5:09 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Abas, na Lateral da Dialog ????
Replies: 5
Views: 1585

Amiguinhos

Desculpe-me

Codigo completo em http://www.shoppmarketing.com/forum/fhfoldan.zip
by Rochinha
Mon Jan 29, 2007 1:13 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Abas, na Lateral da Dialog ????
Replies: 5
Views: 1585

Amigos Sin autor: ***************************************************************************** ********************** Funciones útiles en Harbour & FWH ******************** ********************** 10ª parte ******************************************** #include "FiveWin.ch" #define TFOL...
by Rochinha
Mon Jan 29, 2007 1:10 pm
Forum: FiveWin para Harbour/xHarbour
Topic: RUTINA PARA CONVERTIR CIFRAS A LETRAS ( en ingles )
Replies: 4
Views: 1375

Amiguinho Basta corrigir: FUNCTION EXTENSO( PVALOR ) LOCAL TSTR := STRZERO(PVALOR,18,2) LOCAL ACIFRA := {{'Trilhon','Trilhons'},; {'Bilhon' ,'Bilhons'},; {'Milhon' ,'Milhons'},; {'Thousand' ,'Thousand'},; {' ' ,' '},; {'Cent','Cents'}} LOCAL TX LOCAL TEXTENSO := ' ' LOCAL TSUBS := ' ' LOCAL TCENTAVO...
by Rochinha
Sun Jan 28, 2007 7:40 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Impresoras, Preview y PDF
Replies: 9
Views: 3009

Amiguinho E se fixar o tipo de papel ... oPrn:SetPage(9) // 9 indica formato A4 ... Veja isto: #define DMPAPER_LETTER 1 // Letter 8 1/2 x 11 in #define DMPAPER_LETTERSMALL 2 // Letter Small 8 1/2 x 11 in #define DMPAPER_TABLOID 3 // Tabloid 11 x 17 in #define DMPAPER_LEDGER 4 // Ledger 17 x 11 in #d...
by Rochinha
Sun Jan 28, 2007 7:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADO com Excel
Replies: 3
Views: 1060

Amiguinho Complementando o exemplo do Amigo Rene, neste exemplo voce poderá ler e gravar dados em planilhas simples. * * ---------------------------------------------------------------- * FUNCTION OLEExcel() LOCAL oWnd, oMenu MENU oMenu MENUITEM "&Probar Excel y DBF" MENU MENUITEM &quo...
by Rochinha
Sun Jan 28, 2007 7:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Save memory vars to text file
Replies: 11
Views: 2091

Friend You can use .INI files to store variables names end data. MyINI.INI [VARIABLES] cTextValue="This is the text value" nNumberValue=123456 Use this example: // Sample showing how to use INI files with FiveWin #include "FiveWin.ch" //-------------------------------------------...
by Rochinha
Sun Jan 28, 2007 7:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Where is HBADOX61.LIB ?
Replies: 6
Views: 1445

Amiguinhos

You can see examples and the library at http://www.shoppmarketing.com/blogado/

In the next month i will update.
by Rochinha
Fri Jan 26, 2007 10:54 pm
Forum: FiveWin para Harbour/xHarbour
Topic: INICION EN MYSQL
Replies: 14
Views: 4349

JLCapel

Colocaste bien, ADO solo intercambia la interface, facilitando-la.

Darteagal

Solo necesito saber la version de tu Harbour/Xharbour.

@braços :?)
by Rochinha
Fri Jan 26, 2007 5:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Serial of a USB RAM
Replies: 2
Views: 1161

Friend

Flash memory is a temporary data store and you can't use for this feature or don't re-format.

Work whit HD Serial in the your clients fixed disk.

Para usar nSerialHD() agregue o parametro.

nSerialHD( "C:" )
nSerialHD( "Z:" )
by Rochinha
Fri Jan 26, 2007 5:08 pm
Forum: FiveWin para Harbour/xHarbour
Topic: menus tipo office
Replies: 3
Views: 1012

Mira aqui

www.quark-costos.com en descargas
by Rochinha
Fri Jan 26, 2007 1:09 am
Forum: FiveWin para Harbour/xHarbour
Topic: INICION EN MYSQL
Replies: 14
Views: 4349

Amiguito

De una olhada en mi blog en http://www.shoppmarketing.com/blogADO e tambien en http://www.capelblog.com/?p=37 la classe TADORS.
by Rochinha
Thu Jan 25, 2007 12:25 am
Forum: FiveWin para Harbour/xHarbour
Topic: Guardar imágenes en una Base de Datos
Replies: 1
Views: 916

Miras esto: function IMG2MEMO( arquivo ) bak_pont=0 destino := L2Hex(GetTickCount())+".TMP" arqcria := fcreate(destino) arqler := fopen( origem ) fimarq := fseek( arqler, 0, 2 ) for ponteiro = 0 to fimarq step 5000 bak := space( 5000 ) if ponteiro + 5000 > fimarq bak := space( fimarq - pon...
by Rochinha
Wed Jan 24, 2007 1:14 am
Forum: FiveWin para Harbour/xHarbour
Topic: webcam
Replies: 9
Views: 3418

At your criteria.

The solution below use fixed files in one shared pc on a lan.

If you need use internet or intranet you can use stream, TActivex and Media Player and Windows Media Encoder.

The solution is here:

Creating a web cam feed with WME.
by Rochinha
Mon Jan 22, 2007 11:38 pm
Forum: FiveWin para Harbour/xHarbour
Topic: webcam
Replies: 9
Views: 3418

See Configure each cam to save a file in a directory with names cam1.avi, cam2.avi, etc... Put this code in your application: oCapture:SetFile("directory\cam1.avi"); oCapture:StartCapture() oCapture1:SetFile("directory\cam2.avi"); oCapture1:StartCapture() oCapture2:SetFile("...
by Rochinha
Mon Jan 22, 2007 11:11 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ARBOLES
Replies: 1
Views: 556

Amigo

Revisas el ejemplo TESTTREE.PRG en SAMPLES, ok?