Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Progress Bar in Status bar effect
Message
De
26/04/2001 04:15:09
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00498920
Message ID:
00500011
Vues:
39
Hi Nadya,

I have it downloaded from that URL, thanks for the update.

I think that with the current release of library you need just create a simple form with Animation control, make that form AutoCenter, Modeless, etc. Then run that form before calling SendMail method and release after. There is no big difference if it is defined as regular form (SCX file) or some class based on Form class and placed in VCX, anyway it will work. You may use the same way for FTP.

Later, if I release Animation and Progressbar in status bar you may need another solution, but in common it will be like that one I have described above.

HTH

>Hi Alexander,
>
>First of all, download it from http://www.nbcsoftware.com/freeware.html , here is the updated version (in UT it's still the old version, Nick, can you update it here, please?).
>
>Ok, this is the simple program, which we use:
>
>*********************************************************************************
>*  Description.......: SendMails - automatically sends mails with attachments 
>*  Calling Samples...: ?sendmails(,,"Nosonovsky;Lovins;Pasnik;Geiss","Sending Mails from VFP",;
>*           "This is a test message... If you receive it, it means, this class actually works.",;
>*           "g:\redp\appl\OutputModule\Classes\Fox.reg")
>*  Parameter List....: pcUserName, pcPassword, pcRecepients, pcSubject, pcBodyText,;
>*                      pcAttachments, plReceipt, plShowClient, plFetch
>*  Created by........: Nadya Nosonovsky 07/19/2000 12:31:39 PM 
>*  Modified by.......: Susan Burnham 11/27/00 Added check to determine if object exists
>**************************************************************************************************************
>lparameters pcUserName, pcPassword, pcRecepients, pcSubject, pcBodyText,;
>     pcAttachments, plReceipt, plShowClient, plFetch
>
>local  lnReturn
>
>IF TYPE('loMail')#'O'
>     loMail=newobject('cusmapi','mapimail.vcx')
>ENDIF
>
>lnReturn=loMail.SendMail(pcUserName, pcPassword, pcRecepients, pcSubject, pcBodyText,;
>     pcAttachments, plReceipt, plShowClient, plFetch)
>
>loMail.release()
>*release loMail
>return lnReturn
>
>BTW, I dropped a note to Nigel about this idea, so he'll probably look into it too.
>
>For FTP we use Robert Abram class also from Download section here.
>
>Thanks a lot.
>
Alex
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform