Problem sending event with Classes

I have a custom Timer class that displays an alert of inactivity after 3 minutes. The user can then choose 'Yes' if they're still edit a document or a "' if they are done. If they do not respond to 2 minutes of the alert it considers 'no '.

A 'yes' refreshes the timer and closes the alert.
A 'no' kicked out of the State of change in the component that is called from the timer.

The logic of the timer works fine, but it doesn't seem to be sending the event to the element that so called by clicking 'no' (or is idle) does nothing. I feel I'm missing something really simple or just misunderstand the function of eventDispatcher. Advice please?

Code Timer class:

Timer/public class extends Sprite
{
private var threeMinuteTimer:Timer;
private var twoMinuteTimer:Timer;

public void LockTimer()
{
creates a new three Timer
threeMinuteTimer = new Timer(1000, 180);
twoMinuteTimer = new Timer(1000, 120);

designates earphones for the period of integration and completion events
threeMinuteTimer.addEventListener (TimerEvent.TIMER, __ontick__);
threeMinuteTimer.addEventListener (TimerEvent.TIMER_COMPLETE, onTimerComplete);

twoMinuteTimer.addEventListener (TimerEvent.TIMER, __ontick__);
twoMinuteTimer.addEventListener (TimerEvent.TIMER_COMPLETE, onTimerCompleteB);

starts the timer ticking
threeMinuteTimer.start ();
}

public void refresh (): void {}
Restart (threeMinuteTimer);
twoMinuteTimer.reset ();
}
private void onTick(evt:TimerEvent):void {}

private void onTimerComplete(evt:TimerEvent):void {}
trace ("first timer");
Alert.Show ("you've been idle for several minutes. You always edit this record? ","Inactivity Alert", Alert.YES |" Alert.NO, alertListener, null, null, Alert.YES);
twoMinuteTimer.start ();
}

private void onTimerCompleteB(evt:TimerEvent):void {}
trace ("second timer'");
Alert.Show ("TIME of ', 'Inactivity alert', Alert.OK");
dispatchEvent (new Event ("timeUp", true));
}

private void restart(tim:Timer):void {}
Tim.Reset ();
Tim.Start ();
}


private void alertListener(eventObj:CloseEvent):void {}
Check if the YES button was pressed.
If {(eventObj.detail is Alert.YES)
Refresh();
} else {}
leave edit mode
Alert.Show ("TIME of ', 'Inactivity alert', Alert.OK");
dispatchEvent (new Event ("timeUp", true));
}
}
}

The component code:

private var theTimer:LockTimer;
private void initializeHandler(event:Event):void {}
addEventListener ("timeUp", timeUpHandler);
}
private void timeUpHandler(event:Event):void {}
Alert.Show ("TIME of ', 'Inactivity alert', Alert.OK");
editDone();
}

So here's what I had to do to make this work:

1. I had to fix the theTimer rather than the component listener
2. I had to launch the manufacturer outside the service timer
3. I had to call the Manager of the MXML component initialization function

Here's the code revised (with excess cutting)


http://www.Adobe.com/2006/mxml"width ="780"height ="515"liveDragging ="true"creationComplete =" initializeHandler () ">"
......
......
......

Import mx.controls.Text;
Import mx.rpc.events.FaultEvent;
Import mx.rpc.events.ResultEvent;
Import mx.controls.Alert;
import classes. Timer;

public static millisecondsPerMinute:int const = 1000 * 60;
public static millisecondsPerHour:int const = 1000 * 60 * 60;
public static millisecondsPerDay:int const = 1000 * 60 * 60 24;

IMPORTANT! ////////////////
private var theTimer:LockTimer = new LockTimer();
private function initializeHandler (): void {}
theTimer.addEventListener ("timeUp", timeUpHandler);
}
private void timeUpHandler(event:Event):void {}
editDone();
}

private void refreshLock(theLock:int):void {}

var theTime:Date = new Date();
{if(theLock==1)}
theTimer.refresh ();
theTime.setTime (theTime.getTime () + (millisecondsPerMinute * 5));
} else {if(theLock==0)
theTime.setTime (theTime.getTime ());
} else {}
return;
}
Form1.request.firmlockedTime = String (theTime.valueOf ());
Form1.request.firmisLocked = String (theLock);
}

private function editIt (): void {}
see if it is edited
{if (checkLock ())}
If its being edited to send a message
Alert.Show ("this disc is currently being edited by another user. Please try again later.', "Record locked", mx.controls.Alert.OK);
} else {}
theTimer.startMe ();
refreshLock (1);
Form1.send ();
currentState = "AdminEdit;
}
}
private function editDone (): void {}
refreshLock (0);
Form1.send ();
currentState = "Admin";
}

]]>

......
......
......

Tags: Flex

Similar Questions

  • Problem sending Mails with attachment binary BlackBerry 4.5

    Hallo,

    my code well testet, sending binary content as an attachment no longer works on 4.5.0:

    ------------------------

    settings specified in the signature of mtehod
    String url = "blackberry20@test";
    Byte [] requestdata / /... of the binary data (really!)

    create new message
    final Message message = New Message();

    define the recipient (as it appears in the url)
    message.addRecipients (Message.RecipientType.TO,
    new address [] {new address (url, url)});
           
    String msgID = (DeviceInfo.getDeviceId () + "_" + System.currentTimeMillis ()) .toUpperCase ();
    message.setSubject (msgID);

    create the body... empty text
    Several multipart part = new Multipart();
    TextBodyPart txtBody = new TextBodyPart (multipart);
    txtBody.setContent("");
    multipart.addBodyPart (txtBody);

    create attachments and add
    AttachmentPart SupportedAttachmentPart = new SupportedAttachmentPart (multipart);
    attachmentPart.setContentType("application/octet-stream");
    attachmentPart.setFilename (msgID);
    attachmentPart.setContent (requestData);

    multipart.addBodyPart (attachmentPart);
    message.setContent (multipart);

    Send mail in own thread
    Thread thread = new Thread ('Send Mail Thread') {}

    public void run() {}
    try {}
    Transport.Send (message);
    } catch (Throwable e) {}
    System.Err.println ("error sending message" + e.getClass () .getName () + "/" + e.getMessage ());
    }
    }
    };
    thread. Start();

    ------------------------

    This code has been compiled with JDE 4.0 and worked fine on 4.0, 4.1, 4.2

    It works on my 4.5.0.55 _not_ shrimp (BES 4.1.4) and on a "BOLD" customer (4.6.0.X/BES > = 4.1.4)

    It seems to be an attachment API on 4.5.0, of the major changes that are not compatible with older versions.

    -Are there workarounds?
    -Are there examples how to do work on > = 4.5?
    -How to be always compatible backword for 4.0, 4.1, 4.2?
    -What impact have the BES/BIS-platform on these issues?
    -Are there serious documentation out there how to set the ContentType, Filename, etc.?

    Would be great if some have had a (customers get angry response

    Thanx, Jens Kinzel

    Hello Mark,

    I tried the example excatly you mentioned: If the content was about 60Bytes.

    The following code does NOT work on > = 4.5:
    ---------------------
    public static sendHTMLMailRIMExample (String address) Sub throws {MessagingException}

    create a multipart
    Multipart MP = new Multipart();

    data for the content of the file
    FileData = string"just a simple test";
    String messageData = "Mail attachment Demo";

    create the file
    SAP SupportedAttachmentPart = new SupportedAttachmentPart (mp, "text/html", "upploadare", fileData.getBytes ());

    The PTB TextBodyPart = new TextBodyPart (mp, messageData);

    Add the file to the multipart
    mp.addBodyPart (BSC);
    mp.addBodyPart (sap);

    create a message in the sent items folder
    Folder folders [] is Session.getDefaultInstance () .getStore () .list (Folder.SENT);.

    Message message = new Message(folders[0]);

    Add recipients to the message and send it

    Address = new address (address, address);
    [ToAdds] address = new address [1];
    toAdds [0] = n;
    message.addRecipients (Message.RecipientType.TO, toAdds);
    message.setContent (mp);

    Transport.Send (message);
    }
    --------------------

    I found that the problem is a combination of Firmware and BES. Here are the relevant areas of the BES-Logfile:

    Example 1: Mail is rejected
    --------------
    MAGT-Log:
    [40000] (12/17 13:58:31.943): {0x14C8} [BENNETT] received datagram, Tag = 64192
    [40700] (12/17 13:58:31.943): {0 x 1534} {[email protected]} received device package, size is 199, TransactionId = 1152541538, Tag = 64192, content type = CMIME, cmd = 0 x 3
    [20212] (12/17 13:58:31.943): {0 x 1534} {[email protected]} StreamToMessage() failed, Tag = 64192
    [40275] (12/17 13:58:31.943): {0 x 1534} {[email protected]} error in transaction of sending to the device for the transaction 1152541538, size = 40, TransactionId = 920681772, Tag = 140390
    [40279] (12/17 13:58:31.943): {0 x 1534} {[email protected]} SubmitToRelaySendQ, Tag = 140390
    [40000] (12/17 13:58:31.943): {0x14D0} [BENNETT] send data, Tag = 140390
    [40279] (12/17 13:58:31.943): {0 x 1534} {[email protected]} SubmitToRelaySendQ, Tag = 64192
    [40000] (12/17 13:58:31.943): {0x14D0} [BENNETT] send status DATA_ACCEPTED, Tag = 64192
    [40000] (12/17 13:58:32.896): {0x14C8} [BENNETT] received State DELIVERED, Tag = 140390

    DISP-Log
    [30222] (12/17 13:58:31.943): {0 x 1104} {myBlackBerry} MFH: contentType = CMIME, sizeOTA = 172, sizeOTW = 162, TransactionId = 1152541538, Tag = 1705182
    [30308] (12/17 13:58:31.943): {0 x 1104} [BIPPa] {myBlackBerry} transfer data to BES Agent (S10096620_001), size = 199, intTag = 64192, Tag = 1705182
    [30311] (12/17 13:58:31.943): {0x110C} {myBlackBerry} Forwarding status of relay, intTag = 64192, Tag = 1705182, Status = 1
    [30368] (12/17 13:58:32.896): {0 x 1110} {myBlackBerry} package was delivered to the device, Tag = 233560
    [30388] (12/17 13:58:32.896): {0 x 1110} [BIPPa] {myBlackBerry} status transfer to BES Agent (S10096620_001), intTag = 140390, extTag = 233560

    ALRT-Log
    [30000] (12/17 13:58:31.990): {0x5F4} EventLog::ThreadProc: received notification, treatment...
    [30000] (12/17 13:58:31.990): {0x5F4} [Alarm::ActivateAlarm] alarm Queuing: | BlackBerry messaging Agent Agent of S-05-005 1 (S-05-005 applications event log). 2008-12-17 13:58:31 (AFFF4EF4)-> {[email protected]} StreamToMessage() failed, Tag = 64192
    [30000] (12/17 13:58:31.990): {0x5C0} Alarm::ThreadProc: received an alarm message
    ------------------

    Example 2: The mail is sent
    ------------------
    MAGT-Log
    [40000] (12/17 14:11:33.109): {0x14C8} [BENNETT] received datagram, Tag = 64209
    [40700] (12/17 14:11:33.109): {0 x 1540} {[email protected]} received device package, size is 243, TransactionId = 201738721, = 64209, content type Tag = CMIME, cmd = 0 x 3
    [30112] (12/17 14:11:33.125): {0 x 1540} {[email protected]} receipt message to the device, RefId = 1323541580, Tag 64209, TransactionId = 201738721 =
    [40292] (12/17 14:11:33.687): {0 x 1540} {[email protected]} E-mail message sent to device, Tag = 64209
    [40279] (12/17 14:11:33.687): {0 x 1540} {[email protected]} SubmitToRelaySendQ, Tag = 64209
    [40000] (12/17 14:11:33.687): {0x14D0} [BENNETT] send status DATA_ACCEPTED, Tag = 64209
    -------------------------

    After fiddling around with the structure of the MIME multipart-message Types, I found a solution that works for me:

    -------------------------
    ' Private Sub sendRequest (String url, byte [] requestData) get {MessagingException}

    create new message
    final Message message = New Message();

    define the recipient (as it appears in the url)
    message.addRecipients (Message.RecipientType.TO,
    new address [] {new address (url, url)});

    create topic: device over the current timestamp
    String msgID = ("DATA"_System.currentTimeMillis ()) .toUpperCase ();
    message.setSubject (msgID);

    create the body... a text
    Several multipart part = new Multipart();
    TextBodyPart txtBody = new TextBodyPart (multipart);
    txtBody.setContent (msgID);
    multipart.addBodyPart (txtBody);

    create attachments and add
    AttachmentPart SupportedAttachmentPart = new SupportedAttachmentPart (multipart);
    attachmentPart.setContentType("text/xml");

    attachmentPart.setContent (requestData);
    attachmentPart.setFilename (msgID + ".xml");
    multipart.addBodyPart (attachmentPart);
    message.setContent (multipart);
       
    Transport.Send (message);
    }
    ------------------------

    Let me say thank you for your ideas a Council. From my side, the problem is closed so far-
    even though im not sure if it will work for all environments.

    I'm not shure where the initial problem was (Firmware / BES - combination?) or something else.

    Thank you

    Jens Kinzel
    LÍNEAS Informationstechnik GmbH
    D-38122 Braunschweig, Germany

  • Problem sending messages with Outlook Express 6.0

    Get the error message saying "some errors occurred while processing the requested tasks.  Please see the list of errors below for more details".  There is no error displayed messagees.  The tab tasks, there is a warning in the status column with no description.

    This only happens when you send an email with an attachment.  The message is placed in the Outbox.  I checked that the message has been sent and received, but the message does not in sent items.

    You would wantg to note this in a group of Outlook Express. This is not a. It is:http://social.answers.microsoft.com/Forums/en-US/xpnetwork/threads Russ Valentine

  • problems sending attachments with Windows Live Mail

    I can't send files jpg and odt(OpenOffice text) without problems when I use Windows Live Mail and my Verizon email account.  Jpg attachments are received to my website of gmail into pieces - only the first track is to the size of the photo, the rest are in the letters, numbers, and symbols.  Spare ODT is received in gibberish, regardless of the type of the recipient's e-mail account.  I ran the repair for Windows Live Essentials without effect function.

    Right-click on the account name in the folders pane, and then select Properties. On the Advanced tab, uncheck the Break apart messages ...

  • error in sending mails with attachments

    Hai friends, windows mail works fine for me, but I still have problem sending mail with attachments.

    When we send an attachment then windows Messaging mail tell our mail sending successfully, but it is stored in the Outbox & mail does not reach the destination. can we have the solution to this.

    Hi Sammy Anderson,

    Thanks for joining us out on the Microsoft Community forums.

    According to the description, you are experiencing problems sending mails with attachments. Please answer a few questions to refine the question.

    1. are you using Windows Live Mail to send and receive messages or are you referring to the mail application?

    2. do you get an error message?

    3. are you aware of changes to the computer before the show?

    If you are Windows Mail app, you can consult this article and also run the app troubleshooting utility that is provided in the notes.

    What to do if you have problems with a soft

    http://Windows.Microsoft.com/is-is/Windows-8/what-troubleshoot-problems-app

    If the problem is with Windows Live Mail, you can post the question in another Department for assistance.

    http://answers.Microsoft.com/en-us/windowslive/Forum/email

    Hope this information helps. Get back to us if you have more queries about Windows.

  • Using Firefox 4 and Windows 7. Whenever I have to start Firefox from a shortcut to a Web site, what happens with the following error "there was a problem sending the command to the program". The requested site is loaded after that. without any problem.

    Using Firefox 4 and Windows 7. Whenever I have to start Firefox from a shortcut to a Web site, what happens with the following error "there was a problem sending the command to the program". The requested site is loaded after that. without any problem.

    If a shortcut is used while Firefox is already open the error will not occur.

    For me, the problem was the FoxClock extension. Once I disabled it, the problem was gone.

    Hope this helps.

    Olivier

  • How to fire an event with a Boolean button only when you switch on IT?

    Hi, I have a problem with my structure of the event: I use a value Boolean on/off button to launch a State (using producer consumer architecture).

    When I turn it on, my structure of event get "change value" and the code is executed.

    But when I turn it off, the loop in the code ends, but there is a problem: the event 'change of value' is activated again, and the code is run again.

    How can I avoid it? It is not 'on' or 'off' events to the event structure, only "value change.

    Here are a few screenshots, thanks in advance

    J.D.,

    Use the NewVal Terminal in the case of the event.  Who has the value of the control.  If it is true, queue the message.  If it is false, do nothing.

    Generally, it is better to have order in the case of events and to send messages to consumers through queues.  Nested loops as you seem to have can create difficult problems of what must happen when.  It is unusual for a state machine need a nested loop which requires intervention by the operator.  Without the VI all I can really say what you do, but I strongly suspect that there are way more robust and easier to do.

    Lynn

  • Label String to the data shared send event

    Well, I'm in trouble. I want to click a button (a label to be exact).

    So I have my label

    I've got and event listener for the label, click

    And now I want to take the text of the label string and use it in an event to send while sending a page change event (2 events shipping both to the 2nd page)

    On this second page that I need to know what the chain of the button pressed was so I can still process events.

    Basically, it's my event flow:

    • Click on the button
    • Send event (the signal to open second page)
    • Send event (shipment in the chain) (which I can't find out how)
    • See the second page
    • Dynamically load information based on the button pressed on the first page (which I know how to do, I just need to know how to get that String of the button that was pressed)

    I have all work perfect with the exception of the dilemma of channel button. There will be a lot of buttons (rather labels) involved.

    Each event has a 'target' attribute  The target is the object originally shipped from the event.  For example, a LabelButton dispatches a click event, you can cast the target to this object to know things about this target (assuming that the target is always in memory).

    private void ButtonClicked (event: Event): void

    {

    trace (LabelButton (event.target) .label + "button");

    }

    If you pass an intermediate event and you want to carry information at this event, you can create your own event class by extending the event base class and adding the attributes that you want to carry.  You can also watch the event meta class that allows you to attach some meta information with the event class that they prepare.

  • Cannot send emails with Hotmail today

    Since yesterday, I can't send emails or make the answers with Hotmail. Before that, everything was fine.

    I have the same problem on several Mac and all at the same time. (Mac have different OS_.

    I can however, send emails with Safari without any problem, so there must be something with Firefox.

    Perhaps Microsoft changed something on the Outlook site (I guess when you connect you are redirected to the new site of Outlook). The site behaves as if sitting them buttons are "dead" so that the message is just there, or do you have an error message?

    Have you noticed all the other strange behaviors on your Mac Firefoxes, such as errors in secure certificate?

    Here are a few general suggestions:

    When you have a problem with a particular site, a good "first thing to try" is clear your Firefox cache and delete your cookies for the site.

    (1) delete the Cache of Firefox

    Sometimes, these temporary files mingle with files in a way that breaks a fresh site.

    This article has the steps: How to clear the cache of Firefox

    If you have a large hard drive, this may take a few minutes.

    (2) remove your cookies from live.com (save all pending work first of all if you can). While displaying a page on the site, try either:

    • Right click and select View Page Info > Security > "View Cookies".
    • (menu bar) Tools > Page Info > Security > 'view the Cookies '.
    • Click on the globe or padlock icon in the address bar > additional information > "View Cookies".

    In the dialog box that opens, live.com or mail.live.com should already be filled up. You can delete cookies from the site individually.

    Then try to reload the page and sign in again. Who help me?

    Could test you mode without failure of Firefox? It is a standard diagnostic tool to disable some advanced features of Firefox and extensions. More info: questions to troubleshoot Firefox in Safe Mode.

    Does not work if Firefox: Hold down the option key when starting Firefox.

    If Firefox is running: You can restart Firefox in Mode safe mode using either:

    • button "3-bar" menu > "?" button > restart with disabled modules
    • Help menu > restart with disabled modules

    and OK reboot.

    Two scenarios: A small dialog box should appear. Click on 'Start mode safe' (not update).

    Any improvement?

  • (BUG) Problem creating events of the calendar in the past (IOS 9.3.1)

    Recently, I get such a problem:

    1. I opened a last date in the calendar default ios

    2. create an event:

    -put the name of the event 'Accident '.

    -day 17 April 2016

    -start time 16:00 (end time 17:00)

    -all other attributes - default:

    calendar by default (have also 1 calendar personalized in a list)

    No rehearsal, no trigger time, no participating, call back in 30 minutes

    * a tried also the attributes of different event with the same effect. Didn't help not also choose my google calendar. tried several times)

    3. Press 'Add '.

    wait: event created, appears on that date and remains

    get: event appears and disappears in about 1 second

    What could be? Can help you with this? What IOS Bug?

    Creation of future events - no problem

    Settings - Mail, Contacts - synchronization scroll to calendars - events - How back does go - you may need to reset it to take account of the date that you set the old event from

  • Problem sending pictures through texting when the WIFI

    I recently move carrier to Cricket wiresless (Yes uses AT & T network) of the Sprint. Since I made the change, I had problems sending pictures through texting when the WIFI. I contacted the Cricket Wireless support and they had me reset the APN settings, he has to work because I also disabled WIFI at the time. Since then, I realized that I don't have the problem, when I cut the WIFI.

    Someone at - it similar problems?

    I found the resolution on Adroid Central:

    Wow! Presented this to the customer service email of Cricket and they responded in 12 minutes confirming:
    Billy M. (Cricket Wireless)
    16 Dec 08:46

    Hi Evan,

    Please contact the Support of Cricket. I'm sorry to hear about the problems you are having with your MMS then on the WiFi. Our team of network has been aware of this problem and is currently working on a resolution. In the meantime, you can use one of the IP addresses below in your MMS proxy under the APN settings that should solve the problem.

    192.168.196.78
    192.168.196.79
    192.168.196.117
    192.168.196.118

    Thank you
    Billy
    Looks like the guys from reddit were correct and the IP addresses are legitimate.

  • How to manage the structure of the event with two loops

    I have a question about the structure of the user event with 2 buttons?

    key 1: START LOGGING DATA

    key 2: STOP LOGGING DATA

    How do I control my

    structure of the event so that it will work? because now that the loop is save data... I can't stop the loop, when I clicked on buttons.

    super_saiyans wrote:

    the problem with moving it is that I don't have control of the DATA RECORD STARTING?

    Of course, you do.  When you get your press conference button, you say your state machine to move to the State of logging.  You must also make sure that you return to visit the State to wait for the event to check out the events of the stop button.

  • Closure of a state machine in queue event with several parallel loops

    I am trying to find the best way to stop a program that consists of an architecture of State machine in line waiting for event with several parallel loops. Can anyone recommend the best way to achieve this in my attached VI? (To browse the forum, this seems to be a frequently asked question, but I have not found a solution that works for me.)

    I look forward to any comments on my as well code, if someone is willing to offer it.

    My program needs:

    If the user press the 'Stop' button, the program should prompt the user with "are you sure you want to stop the program?" and then return to a State of rest or move forward to stop the program. In addition if there is an error, the program should prompt the user to ' clear the error and continue, or stop the program. Then back to the idle state or move forward to stop the program.

    Architectural details:

    The program consists of 3 parallel loops: (1) a loop of event management that places different States of a queue of the State, (2) a State Machine that enters the State that is removed from the queue of the State and (3) a loop error/Shutdown, which deals with errors in the error queue management.

    During normal shutdown, where running handling loop in the case of event 'Program.Shutdown' and 'Shutdown' and the 'Idle' States are added to the queue of the State. In the state machine, the State of 'Stop' is invoked. Special "5000" error code is added to the queue of the error. In the loop of error handling and stopping, "5000" error triggered a prompt that asks the user if they want to stop the program. If the user chooses not to stop, a notifier StopNotif is sent to the State of 'Stop' and 'Program.Shutdown' event case with notification 'Go '. If the user decides to stop, the Notifier sends the notification "Stop". Loop and event management State Machine ends when they receive the notification "Stop".

    In case of error, the program behaves in the same way: If the user chooses to clear the error and continue, the program returns to the status "pending".

    HOWEVER - if the user chooses to stop the program, the program crashes. The author of the notification that is sent to stop the loop of events and State Machine management cannot be read because event Program.Shutdown and the stop State (which contain the function "Waiting to notify") are not active.

    I was able to activate the stop State by Queuing in the loop of error/Shutdown management. But I don't know how to activate the "Program.Shutdown" event by program and thus access the function "Waiting to notify" inside.

    I tried to put the function "Waiting to notify" outside the structure of the event, so the event-handling loop never ends. Placing timeouts on the "wait for declaring" and the structure of the event makes the programme of work, but I want to avoid using timeouts because I don't want to turn my event program into a program of polling stations. I would also avoid using variables or nodes property to stop loops, because that requires the creation of a control/indicator for something that the user does not need to interact with.

    Thank you!

    First of all, close the notifier outside loops with your queues.  Second, you must use a user event to send the message to the event structure loop so that it stop in the case of the stop on an error.

  • Cannot send emails with Outlook Express

    original title: I AM NOT ABLE to SEND EMAIL WITH OUTLOOK EXPRESS but CAN RECIEVE I AI PARLEES WITH OPTUS AND CHECXKED all THE SETTINGS AND ARE OK

    I CHECKED WITH OPTUS OUR CARRIER AND WE CANNOT SEND EMAILS VIA OUTLOOK EXPRESS, THEY SEEM TO THINK THAT IT MAY BE A PROBLEM WITH OUTLOOK CAN ONLY HELP PLEASE

    I CHECKED WITH OPTUS OUR CARRIER AND WE CANNOT SEND EMAILS VIA OUTLOOK EXPRESS, THEY SEEM TO THINK THAT IT MAY BE A PROBLEM WITH OUTLOOK CAN ONLY HELP PLEASE

  • Outlook Express 6 problem: send an email I get an error message and the email is not put in the sent items folder

    Outlook Express 6, Windows XP SP 3

    Problem: send an email, I get an error message and the email is not put in the sent items folder while the email (and attachments, if any) are successfully delivered to the recipient.

    The full error message is always useful, but I'm sure you have damaged dbx files.

    Spend most of your messages out of the Inbox and then create new folders to send and sent items box after having moved the messages you want to save to a local folder that you create.

    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.

    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.

    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.

    After you're done, followed by compacting your folders manually while working * off * and do it often.

    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.

    General precautions for Outlook Express:

    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.

    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095

    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3

    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm

    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.

    Compact often as specified above.

    And backup often.

    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx

Maybe you are looking for

  • How do I move files HD internal to external hard drive

    My internal HD has about 21 remaining G that prevents me from creating a slide show with music.  I anticipate the purchase of an external hard drive to free up space on my internal HD, which automatically backs up everything.  I would also like to de

  • How can I stop iphoto loading when I turn on my computer?

    How can I stop iphoto from loading all my photos when I turn on my computer? Please help as he now takes years before the web page downloads I mean I know my computer is old but it usually works very well. I am connected via BT infinity.

  • 'white page' shows on the page from home-will NOT load all sites

    When firefox loading, a "blank page" is displayed. In addition, when this happens, no sites are accessible. Display the toolbars at the top. This has happened Each time Firefox opened is today

  • Error: 0x8024400A

    Pavilion a767c Windows XP How can I fix ' ERROR: 0x8024400A.»

  • xycursor position

    Hello I have created a slider using the: XYCursor cursor = new XYCursor() and immediately after creation, that I want to set the default X Position using: cursor. Which = 5; but it crashes saying: object reference not set to an instance of an object