In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.

Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.

Se encontraron 1094 coincidencias

por emeasoft
Jue Feb 06, 2020 3:48 pm
Foro: Xailer Pro English
Tema: Refactoring tools
Respuestas: 0
Vistas: 23886

Refactoring tools

Hi,

Is there any refactoring tools and/or unit testing tools for Harbour or Xailer?

Thanks,

André Corrêa
por emeasoft
Jue Dic 26, 2019 12:43 pm
Foro: Xailer English
Tema: oFont bug ?
Respuestas: 3
Vistas: 29485

Re: oFont bug ?

It works.

Thanks Ignacio!
por emeasoft
Mar Dic 24, 2019 3:58 pm
Foro: Xailer English
Tema: oFont bug ?
Respuestas: 3
Vistas: 29485

oFont bug ?

Hi Xailers,

Changing any oFont property of other objects using a TButtonClick event, changes it in TButton too.

Example:
Capturar.JPG
Capturar.JPG (33.29 KiB) Visto 29485 veces
Doing like in the image changes TButton font to bold.

Regards,

André Corrêa
por emeasoft
Vie Dic 20, 2019 3:29 pm
Foro: Xailer English
Tema: New dark mode for this forum
Respuestas: 2
Vistas: 27283

Re: New dark mode for this forum

Hello Ignacio,

That`s a nice feature for the forum.
By the way, would be great to have a dark mode for Xailer/XEdit too.

Regards,

André Corrêa
por emeasoft
Mié Dic 18, 2019 5:14 pm
Foro: Xailer Pro English
Tema: Xailer 7 suggestions
Respuestas: 11
Vistas: 91413

Xailer 7 suggestions

Hi Xailers,

1) Is there any chance for us to get a dark mode (theme) to XEdit/Xailer?
2) And what about having gridlines to visually align components in the Form?

Thanks,

André Corrêa
por emeasoft
Lun Dic 16, 2019 7:07 pm
Foro: Xailer English
Tema: Future Xailer 7 animations
Respuestas: 1
Vistas: 25500

Re: Future Xailer 7 animations

Hi Xailers,

Is there any intention to add a dark mode (theme) to XEdit/Xailer?

Thanks,

André Corrêa
por emeasoft
Jue Dic 12, 2019 12:05 pm
Foro: Xailer English
Tema: Xailer Personal: Completely free!
Respuestas: 6
Vistas: 47597

Re: Xailer Personal: Completely free!

Amazing news Ignacio! :D
por emeasoft
Mié Jul 24, 2019 7:17 pm
Foro: Xailer Pro English
Tema: TPrinter:nCopies
Respuestas: 2
Vistas: 27179

Re: TPrinter:nCopies

Thank you, Ignacio.
por emeasoft
Mié Jul 24, 2019 4:49 pm
Foro: Xailer Pro English
Tema: TPrinter:nCopies
Respuestas: 2
Vistas: 27179

TPrinter:nCopies

Hi,

When I try to print more than 1 copy of a document, changing "TPrinter:nCopies" property, as you can see below, doesn't work .

What I'm doing wrong?


WITH OBJECT TPrinter():New()
:Create()
:nCopies:=2
:lPreview:=.F.
:nPrinterIndex:=myPrinterIndex
:StartDoc()
:WriteData(myText)
:EndDoc ...
por emeasoft
Mié Jun 19, 2019 12:01 pm
Foro: Xailer Pro English
Tema: Intellisense bug with custom Xailer classes
Respuestas: 3
Vistas: 28296

Re: Intellisense bug with custom Xailer classes

Hi Ignacio!

Thank you very much!

Regards,
por emeasoft
Mié Jun 12, 2019 12:21 pm
Foro: Xailer Pro English
Tema: Intellisense bug with custom Xailer classes
Respuestas: 3
Vistas: 28296

Re: Intellisense bug with custom Xailer classes

This bug still happens in version 6.2.
por emeasoft
Vie May 10, 2019 10:18 pm
Foro: Xailer Pro English
Tema: Intellisense bug with custom Xailer classes
Respuestas: 3
Vistas: 28296

Intellisense bug with custom Xailer classes

Hello Xailers,

There is a bug with the intellisense when you use custom Xailer classes.

When you start typing the "::" to access the intellisense list, it doesn't show your custom methods,
if you finish typing the method name and open the parenthesis, it shows the method infos.

There is an ...
por emeasoft
Vie May 10, 2019 2:44 pm
Foro: Xailer Pro English
Tema: RichEdit lines printed per page
Respuestas: 2
Vistas: 26844

Re: RichEdit lines printed per page

Hi,

I'll try it, thank you very much, Ignacio and Pedro!

Cheers,

André Corrêa
por emeasoft
Mar May 07, 2019 3:24 pm
Foro: Xailer Pro English
Tema: RichEdit lines printed per page
Respuestas: 2
Vistas: 26844

RichEdit lines printed per page

Hi,

There is a way to retrieve the number of lines that can be printed per page using a RichEdit?
Considering I'm using a A4 paper, that is 210x297mm sized, I need to fix the first and last line printed in each page.
Counting the number of lines doesn't help, cause the text font size can vary and ...
por emeasoft
Lun May 06, 2019 6:25 pm
Foro: Xailer Pro English
Tema: Intellisense
Respuestas: 5
Vistas: 33335

Re: Intellisense

Thank you very much, Ignacio.

André Corrêa
por emeasoft
Lun May 06, 2019 3:52 pm
Foro: Xailer Pro English
Tema: Intellisense
Respuestas: 5
Vistas: 33335

Re: Intellisense

Hi Ignacio ,

What about CLASS DATAs?
As it doesn't allow the use of "AS CLASS" keywords, there is any way to use intellisense?

E.g.


CLASS tTest
DATA dMyData
ENDCLASS

METHOD MyMethod() CLASS tTest

::dMyData := tMyClass():create()
::dMyData: <-- doesn't show TMyClass methods

RETURN Nil ...
por emeasoft
Jue May 02, 2019 1:52 pm
Foro: Xailer Pro English
Tema: Intellisense
Respuestas: 5
Vistas: 33335

Re: Intellisense

Good morning Ignacio,

It works that way, thank you very much.

André Corrêa
por emeasoft
Mié May 01, 2019 1:08 pm
Foro: Xailer Pro English
Tema: Intellisense
Respuestas: 5
Vistas: 33335

Intellisense

Olá,

Se você instanciar uma classe, passando sua referência para uma variável e tentar listar seus métodos e propriedades,
o intellisense do Xailer não funciona. Seria de grande ajuda se funcionasse.

Google translate:

Hi,

If you instantiate a class, passing its reference to a variable and try to ...
por emeasoft
Mié Abr 17, 2019 3:13 pm
Foro: Xailer Spanish
Tema: Limitar tiempo de espera
Respuestas: 7
Vistas: 5439

Re: Limitar tiempo de espera

Hola ramon

Eche un vistazo al parámetro "varAsync" en la documentación del método abierto. Creo que si lo configura como falso, puede usar el "onreadystatechange" para controlar el "timeout" allí.

https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ms757849%28v%3dvs.85%29

Eche un ...
por emeasoft
Lun Abr 15, 2019 1:22 pm
Foro: Xailer Spanish
Tema: Limitar tiempo de espera
Respuestas: 7
Vistas: 5439

Re: Limitar tiempo de espera

[Spanish by Google:]
Hola ramon

El objeto no tiene una propiedad de tiempo de espera.

Una idea es usar un DO WHILE.

P.ej.:

// oHttp:readyState = 4 mean it is done
nTimeout := 4 // in seconds
nSeconds := Seconds()
DO WHILE oHttp:readyState <> 4
IF Seconds() - nSeconds > nTimeout
EXIT ...
por emeasoft
Mar Mar 26, 2019 1:01 pm
Foro: Xailer English
Tema: Xailer 6.1.0 publications
Respuestas: 7
Vistas: 37755

Re: Xailer 6.1.0 publications

Good morning,

After removing, deleting all the files and reinstaling, it worked.

Thank you,

André Corrêa
por emeasoft
Mar Mar 26, 2019 12:29 pm
Foro: Xailer Pro English
Tema: Xailer 6.1 Compilation Errors
Respuestas: 2
Vistas: 26740

Re: Xailer 6.1 Compilation Errors

Hello José!

It worked! Many thanks!

Regards,
Juliano
por emeasoft
Lun Mar 25, 2019 3:13 pm
Foro: Xailer Pro English
Tema: Xailer 6.1 Compilation Errors
Respuestas: 2
Vistas: 26740

Xailer 6.1 Compilation Errors

Hello!

There is some compilation error happening with the new version of Xailer.

The Xailer 5 was completely removed before installing Xailer 6.

The error:
Sem título.png

The example:
TestlibPNG.zip

The error shows if the option "Show all messages" in "Options>Compiling" is marked.

If the ...
por emeasoft
Lun Mar 25, 2019 1:18 pm
Foro: Xailer English
Tema: Xailer 6.1.0 publications
Respuestas: 7
Vistas: 37755

Re: Xailer 6.1.0 publications

Hello Ignacio,

Here goes an clean example for the libpng error:
TestlibPNG.zip
(3.17 KiB) Descargado 1164 veces
Thanks,
Juliano
por emeasoft
Lun Mar 25, 2019 12:39 pm
Foro: Xailer English
Tema: Xailer 6.1.0 publications
Respuestas: 7
Vistas: 37755

Re: Xailer 6.1.0 publications

Hi Ignacio,

It happens when compiling a new project, with just a form, using a clean Xailer 6 installation.

André Corrêa