Search found 946 matches

by Richard Chidiak
Sun Jan 25, 2015 9:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: Help with translations
Replies: 77
Views: 13883

Re: Help with translations

French translation

{ "Source editor", "Editor de código", "Editeur code sources", "", "Quellcode-Editor", "Editor di codice sorgente" }
by Richard Chidiak
Fri Jan 16, 2015 8:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Question to encrypt()/decrypt()
Replies: 2
Views: 433

Re: Antonio: Question to encrypt()/decrypt()

Gunther

i use encrypt and decrypt in my app without problem

CRYPTEDTXT := CMIMEENC(ENCRYPT(xxxx))

decryptedtxt := DECRYPT(CMIMEDEC(ALLTRIM(CRYPTEDTXT)))

Hth

Richard
by Richard Chidiak
Fri Jan 16, 2015 6:31 am
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook.Application
Replies: 5
Views: 764

Re: Outlook.Application

try this

TRY
oOutlook = GetActiveObject( "Outlook.Application" )
CATCH
TRY
oOutlook = CreateObject( "Outlook.Application" )
CATCH oerr
// LOUTLOOK := .F.
END
END


Hth
by Richard Chidiak
Fri Jan 16, 2015 6:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: Help with translations
Replies: 77
Views: 13883

Re: Help with translations

French translations, Regards { "Locate and open a file", "Localizar y abrir un fichero", "Trouver et ouvrir un fichier", "Localizar e abrir um arquivo", "Datei auswählen und öffnen", "Selezionare e aprire un file" },; { "Create a new f...
by Richard Chidiak
Fri Nov 28, 2014 11:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: HAPPY BIRTHDAY ANTONIO
Replies: 33
Views: 3975

Re: HAPPY BIRTHDAY ANTONIO

Happy birthday Antonio
by Richard Chidiak
Wed Sep 24, 2014 4:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: CodeJock calendar
Replies: 8
Views: 1735

Re: CodeJock calendar

Dutch

This is the only important thing you need

- The Activex library must register to all pc that use my program.

Richard
by Richard Chidiak
Mon Sep 22, 2014 11:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: CodeJock calendar
Replies: 8
Views: 1735

Re: CodeJock calendar

Dutch

Yes you can use Codejock with visual studio and Harbour without problems.

You need the activex installed on your computer to make it work.

Hth

Richard
by Richard Chidiak
Sat Sep 20, 2014 4:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with RADIO control
Replies: 8
Views: 1318

Re: Problem with RADIO control

Tim

Try adding |WS_TABSTOP

you can also try switching from autoradiobutton to radiobutton

Hth

Richard
by Richard Chidiak
Tue Sep 09, 2014 7:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: Help with string translation
Replies: 9
Views: 977

Re: Help with string translation

{ "Copy to clipboard", "Copiar al portapapeles", "Copier dans le Presse-papiers", "cópia ...", "Kopieren ...", "Copia ..." }, ;
by Richard Chidiak
Wed Jul 09, 2014 9:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: resource consumption
Replies: 2
Views: 451

Re: resource consumption

before to quit my application i have

FERASE("CHECKRES.TXT")
CHECKRES()

i get a checkres.txt file showing the pending resources (if any and where it comes from)

Hth
by Richard Chidiak
Fri Jul 04, 2014 4:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook 2013 , windows 8.1 Email (solved)
Replies: 5
Views: 878

Outlook 2013 , windows 8.1 Email Solved

Problem fixed the security setting did the trick

Thanks

Richard
by Richard Chidiak
Fri Jul 04, 2014 4:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: hb_zip difference between harbour and xharbour
Replies: 3
Views: 642

Re: hb_zip difference between harbour and xharbour

Michel I did not change a single line of code neither, this is not the point The point is that we do not get the same results and it is very ennoying for backwards compatibility In other words a file saved with xharbour will not be restored properly with harbour and vice versa because harbour will a...
by Richard Chidiak
Thu Jul 03, 2014 1:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook 2013 , windows 8.1 Email (solved)
Replies: 5
Views: 878

Re: Outlook 2013 , windows 8.1 Email

This is what i get

toleauto:new

0x80080005

Antonio , any idea about this ?
by Richard Chidiak
Thu Jul 03, 2014 10:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook 2013 , windows 8.1 Email (solved)
Replies: 5
Views: 878

Outlook 2013 , windows 8.1 Email (solved)

Hello I have a problem sending email with Outlook (office 2013) and windows 8.1 If outlook is active , i get an error , no way to send the mail if outlook is not active, the code will execute without a problem. Does anyone know a workaround ? TRY   oOutlook = GetActiveObject( "Outlook.Applicati...
by Richard Chidiak
Thu Jul 03, 2014 10:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: hb_zip difference between harbour and xharbour
Replies: 3
Views: 642

hb_zip difference between harbour and xharbour

Good morning I have an ennoying difference with the zip file generated with Harbour Supposing the working directory is Test zipping the test directory with Xharbour will show Test as main directory , with harbour it will show C as main directory then test below the code used is the following lZipDon...