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.

How to display the system copy dialog

Xailer professional forum in English
Responder
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

How to display the system copy dialog

Mensaje por Gejza Horvath »

HI,
how can I display the "flying folder" animation system dialog during copying the file?
Gejza Horvath
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9469
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

How to display the system copy dialog

Mensaje por ignacio »

Gejza,
TProgressDlg.
Take a loot at sample SamplesDialogs.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=471639bf@ozsrv2.ozlan.local...]471639bf@ozsrv2.ozlan.local...[/email]
> HI,
>
> how can I display the "flying folder" animation system dialog during
> copying the file?
>
>
> Gejza Horvath
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
NoName
Mensajes: 531
Registrado: Vie Feb 03, 2006 7:27 pm

How to display the system copy dialog

Mensaje por NoName »

Gejza,
TProgressDlg.
Take a loot at sample SamplesDialogs.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=471639bf@ozsrv2.ozlan.local...]471639bf@ozsrv2.ozlan.local...[/email]
> HI,
>
> how can I display the "flying folder" animation system dialog during
> copying the file?
>
>
> Gejza Horvath
>
Bingen Ugaldebere
Mensajes: 1310
Registrado: Mié Sep 26, 2007 7:12 pm

How to display the system copy dialog

Mensaje por Bingen Ugaldebere »

WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
:nAction := foCOPY
:aFrom := {cOrigFile}
:aTo := {cBackupFile}
:lNoConfirmation := .T.
:lNoConfirmMkDir := .T.
:Create()
:Run()
END
Bingen Ugaldebere
Mensajes: 1310
Registrado: Mié Sep 26, 2007 7:12 pm

How to display the system copy dialog

Mensaje por Bingen Ugaldebere »

WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
:nAction := foCOPY
:aFrom := {cOrigFile}
:aTo := {cBackupFile}
:lNoConfirmation := .T.
:lNoConfirmMkDir := .T.
:Create()
:Run()
END
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

How to display the system copy dialog

Mensaje por Gejza Horvath »

Bingen
thanks for your quick reply, but using this code the dialog is not displayed. The file
copy operation is done, but nothing during that about progress..
Is the error on my side? Any idea?
Gejza
"Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
> :nAction := foCOPY
> :aFrom := {cOrigFile}
> :aTo := {cBackupFile}
> :lNoConfirmation := .T.
> :lNoConfirmMkDir := .T.
> :Create()
> :Run()
> END
>
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

How to display the system copy dialog

Mensaje por Gejza Horvath »

Bingen
thanks for your quick reply, but using this code the dialog is not displayed. The file
copy operation is done, but nothing during that about progress..
Is the error on my side? Any idea?
Gejza
"Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
> :nAction := foCOPY
> :aFrom := {cOrigFile}
> :aTo := {cBackupFile}
> :lNoConfirmation := .T.
> :lNoConfirmMkDir := .T.
> :Create()
> :Run()
> END
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9469
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

How to display the system copy dialog

Mensaje por ignacio »

Gezja,
The dialogs is ONLY shown when the process takes more than a couple of
seconds. There is no way to modify that behaviour.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=4716540c@ozsrv2.ozlan.local...]4716540c@ozsrv2.ozlan.local...[/email]
> Bingen
>
> thanks for your quick reply, but using this code the dialog is not
> displayed. The file copy operation is done, but nothing during that about
> progress..
> Is the error on my side? Any idea?
>
> Gejza
>
> "Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
> news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
>> :nAction := foCOPY
>> :aFrom := {cOrigFile}
>> :aTo := {cBackupFile}
>> :lNoConfirmation := .T.
>> :lNoConfirmMkDir := .T.
>> :Create()
>> :Run()
>> END
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
NoName
Mensajes: 531
Registrado: Vie Feb 03, 2006 7:27 pm

How to display the system copy dialog

Mensaje por NoName »

Gezja,
The dialogs is ONLY shown when the process takes more than a couple of
seconds. There is no way to modify that behaviour.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=4716540c@ozsrv2.ozlan.local...]4716540c@ozsrv2.ozlan.local...[/email]
> Bingen
>
> thanks for your quick reply, but using this code the dialog is not
> displayed. The file copy operation is done, but nothing during that about
> progress..
> Is the error on my side? Any idea?
>
> Gejza
>
> "Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
> news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
>> :nAction := foCOPY
>> :aFrom := {cOrigFile}
>> :aTo := {cBackupFile}
>> :lNoConfirmation := .T.
>> :lNoConfirmMkDir := .T.
>> :Create()
>> :Run()
>> END
>>
>
>
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

How to display the system copy dialog

Mensaje por Gejza Horvath »

Ignacio,
you have right, when the operation takes more time, the animation runs. You could insert
this sentence into TProgressDlg chapter in Xailer help file.
Thanks
Gejza
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
news:47165587$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Gezja,
>
> The dialogs is ONLY shown when the process takes more than a couple of seconds. There is
> no way to modify that behaviour.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
>
>
> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
> news:[email=4716540c@ozsrv2.ozlan.local...]4716540c@ozsrv2.ozlan.local...[/email]
>> Bingen
>>
>> thanks for your quick reply, but using this code the dialog is not displayed. The file
>> copy operation is done, but nothing during that about progress..
>> Is the error on my side? Any idea?
>>
>> Gejza
>>
>> "Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
>> news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
>>> :nAction := foCOPY
>>> :aFrom := {cOrigFile}
>>> :aTo := {cBackupFile}
>>> :lNoConfirmation := .T.
>>> :lNoConfirmMkDir := .T.
>>> :Create()
>>> :Run()
>>> END
>>>
>>
>>
>
>
>
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

How to display the system copy dialog

Mensaje por Gejza Horvath »

Ignacio,
you have right, when the operation takes more time, the animation runs. You could insert
this sentence into TProgressDlg chapter in Xailer help file.
Thanks
Gejza
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
news:47165587$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Gezja,
>
> The dialogs is ONLY shown when the process takes more than a couple of seconds. There is
> no way to modify that behaviour.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
>
>
> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
> news:[email=4716540c@ozsrv2.ozlan.local...]4716540c@ozsrv2.ozlan.local...[/email]
>> Bingen
>>
>> thanks for your quick reply, but using this code the dialog is not displayed. The file
>> copy operation is done, but nothing during that about progress..
>> Is the error on my side? Any idea?
>>
>> Gejza
>>
>> "Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
>> news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
>>> :nAction := foCOPY
>>> :aFrom := {cOrigFile}
>>> :aTo := {cBackupFile}
>>> :lNoConfirmation := .T.
>>> :lNoConfirmMkDir := .T.
>>> :Create()
>>> :Run()
>>> END
>>>
>>
>>
>
>
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9469
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

How to display the system copy dialog

Mensaje por ignacio »

Gejza,
Done.
Regards
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=47170ed9@ozsrv2.ozlan.local...]47170ed9@ozsrv2.ozlan.local...[/email]
> Ignacio,
>
> you have right, when the operation takes more time, the animation runs.
> You could insert this sentence into TProgressDlg chapter in Xailer help
> file.
>
> Thanks
> Gejza
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
> news:47165587$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Gezja,
>>
>> The dialogs is ONLY shown when the process takes more than a couple of
>> seconds. There is no way to modify that behaviour.
>>
>> Regards,
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> http://www.xailer.com
>>
>>
>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>> news:[email=4716540c@ozsrv2.ozlan.local...]4716540c@ozsrv2.ozlan.local...[/email]
>>> Bingen
>>>
>>> thanks for your quick reply, but using this code the dialog is not
>>> displayed. The file copy operation is done, but nothing during that
>>> about progress..
>>> Is the error on my side? Any idea?
>>>
>>> Gejza
>>>
>>> "Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
>>> news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> WITH OBJECT oFileOperation := TFileOperationDlg():New(
>>>> GetActiveform() )
>>>> :nAction := foCOPY
>>>> :aFrom := {cOrigFile}
>>>> :aTo := {cBackupFile}
>>>> :lNoConfirmation := .T.
>>>> :lNoConfirmMkDir := .T.
>>>> :Create()
>>>> :Run()
>>>> END
>>>>
>>>
>>>
>>
>>
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
NoName
Mensajes: 531
Registrado: Vie Feb 03, 2006 7:27 pm

How to display the system copy dialog

Mensaje por NoName »

Gejza,
Done.
Regards
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=47170ed9@ozsrv2.ozlan.local...]47170ed9@ozsrv2.ozlan.local...[/email]
> Ignacio,
>
> you have right, when the operation takes more time, the animation runs.
> You could insert this sentence into TProgressDlg chapter in Xailer help
> file.
>
> Thanks
> Gejza
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
> news:47165587$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Gezja,
>>
>> The dialogs is ONLY shown when the process takes more than a couple of
>> seconds. There is no way to modify that behaviour.
>>
>> Regards,
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> http://www.xailer.com
>>
>>
>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>> news:[email=4716540c@ozsrv2.ozlan.local...]4716540c@ozsrv2.ozlan.local...[/email]
>>> Bingen
>>>
>>> thanks for your quick reply, but using this code the dialog is not
>>> displayed. The file copy operation is done, but nothing during that
>>> about progress..
>>> Is the error on my side? Any idea?
>>>
>>> Gejza
>>>
>>> "Bingen Ugaldebere" <bingen@muninser.com> pí¹e v diskusním pøíspìvku
>>> news:47164ab6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> WITH OBJECT oFileOperation := TFileOperationDlg():New(
>>>> GetActiveform() )
>>>> :nAction := foCOPY
>>>> :aFrom := {cOrigFile}
>>>> :aTo := {cBackupFile}
>>>> :lNoConfirmation := .T.
>>>> :lNoConfirmMkDir := .T.
>>>> :Create()
>>>> :Run()
>>>> END
>>>>
>>>
>>>
>>
>>
>>
>
>
Responder