hello,
do you know how make a go to page of mail adress in the codecreator ?
Thanks for your answers.
do you know how make a go to page of mail adress in the codecreator ?
Код:
using System;
using Zennolab.CommandCenter;
namespace macro
{
internal class MailStep1
{
public static string MailConfirm(Instance instance)
{
// http://www...
var res = ZennoPoster.MailConfirm(instance, "30;60;120", "[email protected]", "PASSWORD", "pop3.live.com", 995, false, false,
"TITRE ", "http:\\/\\/www\\.ADRESSE\\.com.*");
return res;
Код:
Tab tb = instance.GetTabByAddress("res");
if ((tb.IsVoid) || (tb.IsNull)) return -1;
if (tb.IsBusy) tb.WaitDownloading();
tb.Navigate("res");
if (tb.IsBusy) tb.WaitDownloading();
return 0;