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.
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
-
- Mensajes: 281
- Registrado: Mar Ago 15, 2006 1:50 pm
How to display the system copy dialog
HI,
how can I display the "flying folder" animation system dialog during copying the file?
Gejza Horvath
how can I display the "flying folder" animation system dialog during copying the file?
Gejza Horvath
- 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
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
>
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
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
How to display the system copy dialog
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
>
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
>
-
- Mensajes: 1310
- Registrado: Mié Sep 26, 2007 7:12 pm
How to display the system copy dialog
WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
:nAction := foCOPY
:aFrom := {cOrigFile}
:aTo := {cBackupFile}
:lNoConfirmation := .T.
:lNoConfirmMkDir := .T.
:Create()
:Run()
END
:nAction := foCOPY
:aFrom := {cOrigFile}
:aTo := {cBackupFile}
:lNoConfirmation := .T.
:lNoConfirmMkDir := .T.
:Create()
:Run()
END
-
- Mensajes: 1310
- Registrado: Mié Sep 26, 2007 7:12 pm
How to display the system copy dialog
WITH OBJECT oFileOperation := TFileOperationDlg():New( GetActiveform() )
:nAction := foCOPY
:aFrom := {cOrigFile}
:aTo := {cBackupFile}
:lNoConfirmation := .T.
:lNoConfirmMkDir := .T.
:Create()
:Run()
END
:nAction := foCOPY
:aFrom := {cOrigFile}
:aTo := {cBackupFile}
:lNoConfirmation := .T.
:lNoConfirmMkDir := .T.
:Create()
:Run()
END
-
- Mensajes: 281
- Registrado: Mar Ago 15, 2006 1:50 pm
How to display the system copy dialog
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
>
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
>
-
- Mensajes: 281
- Registrado: Mar Ago 15, 2006 1:50 pm
How to display the system copy dialog
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
>
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
- Site Admin
- Mensajes: 9469
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
How to display the system copy dialog
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
>>
>
>
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
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
How to display the system copy dialog
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
>>
>
>
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
>>
>
>
-
- Mensajes: 281
- Registrado: Mar Ago 15, 2006 1:50 pm
How to display the system copy dialog
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
>>>
>>
>>
>
>
>
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
>>>
>>
>>
>
>
>
-
- Mensajes: 281
- Registrado: Mar Ago 15, 2006 1:50 pm
How to display the system copy dialog
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
>>>
>>
>>
>
>
>
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
- Site Admin
- Mensajes: 9469
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
How to display the system copy dialog
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
>>>>
>>>
>>>
>>
>>
>>
>
>
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
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
How to display the system copy dialog
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
>>>>
>>>
>>>
>>
>>
>>
>
>
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
>>>>
>>>
>>>
>>
>>
>>
>
>