Does ListRemoveItems() leave 0's after removing?

Whats left in the list after this function call?

I tend to answer 'No' since ListRemoveItems simply rolls data back with a memmove but does not deallocate internal memory nor it clears/initializes it: that memory area maintains previous content. The source code for toolbox instrument is distributed with CVI so you can check it by yourself. The instrument guarantees that you are not permitted to read past the active number of items from the list, but memory is neither cleared nor effectively released until the list is in effect.
Proud to use LW/CVI from 3.1 on.
My contributions to the Developer Zone Community
If I have helped you, why not giving me a kudos?

Similar Messages

  • CMS Track configuration does not save after removal of runtime

    Hello,
    We are having problem to save CMS track configuration after removing a runtime which was taken away from us and is not recoverable. The CMS track config was not updated prior to this and we can no longer make track adjustments due to the old DEV runtime sys not being available. Does anyone have similar issue and know how to fix it?
    Thanks!

    For this SP5 track, we have not imported SP9 required SCs (SAPJEE, SAPJTECHS, SAPBUILDT, EP_BUILDT). but we did imported them (SP8 version) with patches. We imported most current SP9 patches to the new SP6 track. We want to move our development on the SP5 track to assemble it, then imported to the new SP6 track based SAP XSS cookbook.
    We are not able to assemble released activities with broken DCs on the SP5 track. I look a DC for ess/au/fam/cfg, Build.log still shows xlf conversion error:
    Ant runtime 4.295 seconds
    Ant build finished with ERRORS
    The following error occurred while executing this line:
    /usr/sap/DID/CBS/61/.B/90062/DCs/sap.com/ess/au/fam/cfg/_comp/gen/default/logs/build.xml:80: Error converting file Texts_tr.xlf
    Error: Build stopped due to an error: The following error occurred while executing this line:
    /usr/sap/DID/CBS/61/.B/90062/DCs/sap.com/ess/au/fam/cfg/_comp/gen/default/logs/build.xml:80: Error converting file Texts_tr.xlf
    Build plugin finished at 2006-12-13 19:30:41 GMT-05:00 (EST)
    Total build plugin runtime: 6.794 seconds
    Build finished with ERROR
    Not sure if you can force it assembled even with this broken DCs as we have not touched this xlf.
    Please let me know if you find something similar to us from other customers.
    Thans!

  • Does anyone know which software can remove a logo from a video as well as subtitle in it. Thanks

    Does anyone know which software can remove a logo from a video as well as subtitle in it. Thanks

    Watermarking like this cannot be easily removed (which is the entire point of including a watermark). You would probably have to go through the video frame by frame, editing out the watermark and subtitles by hand, and then it would take a lot of work to try and reconstruct the background to not just leave a blank spot. It's not worth the effort unless you wanted to use such a video professionally, and then you would need a licence after obtaining of which you probably could obtain the original footage without the watermark.
    If you really want to explore this, though, see:
    http://www.fxguide.com/featured/the_art_of_wire_removal/
    Regards.

  • Can't find printer after removing it.

    Hello,
    I happen to have an HP LaserJet M1132 MFP, which was working pretty well until recently it started sending that "/usr/lib/cups/backend/hp failed" error described in the wiki. I did have dbus running, I tried running avahi-daemon, but no use. So after googling up the problem, I found out that people had the issue solved after removing and installing the printer again.
    Well, I removed the printer via CUPS web interface, and tried to install it again via hp-setup, but this time the printer is not recognized! dbus is running fine, so does cups. lsusb does seem to recognize the printer:
    Bus 001 Device 006: ID 03f0:042a Hewlett-Packard
    Trying to manually feed the device id to hp-setup completely freezes it (and even pkilling it won't remove the window after that).
    dmesg find it too:
    [ 554.981309] usb 1-1.1: new high speed USB device number 6 using ehci_hcd
    [ 555.066090] scsi7 : usb-storage 1-1.1:1.0
    I had it installed before with no problems.
    Anyone can help me to get my printer installed and working again?

    It sounds like you have not installed, but only downloaded it. Have you checked your downloads folder for the installer? 

  • Can't delete a file displayed in ListView ("File in use") even after removing it from window.

    I have a ListView displaying a collection of icons. The user can then select different icons (checkboxes) to do things like Copy or Delete.
    Problem is, when I try to delete the actual file from the disk, I get an error telling me the file is "in use" ("vshost.exe", the VS runtime during testing).
    I thought maybe it was because it still appeared in the window and was still in the ImageList, but even after removing it from both locations, I still get the error. My code:
    Dim intCnt As Integer = 0
    Do
    ImageList2.Images.RemoveAt(intIconsChecked(intCnt)) ' Remove from collection.
    lsvCollection.Items.RemoveAt(intIconsChecked(intCnt)) ' Remove from ListView window.
    FileIO.FileSystem.DeleteFile(strIconPath & "\Icon" & Format(intCnt + 1, "00") & ".rsc") ' "+1" b/c Icons start with "01".
    FileIO.FileSystem.DeleteFile(strIconPath & "\Icon" & Format(intCnt + 1, "00") & ".png") ' "In use" Error here.
    ".rsc" deletes just fine, so I know I'm deleting the correct file. Why does VS still think the file is still "in use"?
    Thx

    Mugsy,
    Consider this as food for thought, even if you don't use it.
    If you set it up right then you can control how it works. A reference is a reference and any left behind will cause you grief down the road when you try to delete things.
    As an example, a simple class follows. It does *not* implement IDispose, although it does have a private shared Dispose method in it:
    Public Class MyImages
    Private _bmp As Bitmap
    Private _name As String
    Private _sourceFilePath As String
    Private Sub New(ByVal bmp As Bitmap, _
    ByVal name As String, _
    ByVal filePath As String)
    _bmp = bmp
    _sourceFilePath = filePath.Trim
    _name = name.Trim
    End Sub
    Public ReadOnly Property Bmp As Bitmap
    Get
    Return _bmp
    End Get
    End Property
    Public ReadOnly Property Name As String
    Get
    Return _name
    End Get
    End Property
    Public ReadOnly Property SourceFilePath As String
    Get
    Return _sourceFilePath
    End Get
    End Property
    Public Shared Sub AddNew(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    Else
    ' Should do validation here that the file
    ' is actually an image but I'll not do this
    ' here...
    Dim thisBMP As Bitmap = New Bitmap(imageFilePath)
    miList.Add(New MyImages(thisBMP, GetFileNameWithoutExtension(imageFilePath), imageFilePath))
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Public Shared Sub AddNew(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String, _
    ByVal imageName As String)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    ElseIf String.IsNullOrEmpty(imageName) OrElse imageName.Trim = "" Then
    Throw New ArgumentException("The name of this image cannot be null or empty.")
    Else
    ' Should do validation here that the file
    ' is actually an image but I'll not do this
    ' here...
    Dim thisBMP As Bitmap = New Bitmap(imageFilePath)
    miList.Add(New MyImages(thisBMP, imageName, imageFilePath))
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Public Shared Sub Remove(ByRef miList As List(Of MyImages), _
    ByVal imageFilePath As String, _
    Optional ByVal removeFilePathAlso As Boolean = False)
    Try
    If miList Is Nothing Then
    Throw New ArgumentNullException("The collection of MyImages cannot be null.")
    ElseIf String.IsNullOrEmpty(imageFilePath) OrElse imageFilePath.Trim = "" Then
    Throw New ArgumentException("The file path of the image cannot be null or empty.")
    ElseIf Not My.Computer.FileSystem.FileExists(imageFilePath) Then
    Throw New IO.FileNotFoundException("The file path of the image could not be located.")
    Else
    Dim findInstance As System.Collections.Generic.IEnumerable(Of MyImages) = _
    From mi As MyImages In miList _
    Where mi.SourceFilePath = imageFilePath
    If findInstance.Count <> 1 Then
    Throw New ArgumentException("The instance of MyImages specified by the" & vbCrLf & _
    "image file path is not in the collection.")
    Else
    Dispose(findInstance.First)
    If removeFilePathAlso Then
    My.Computer.FileSystem.DeleteFile(findInstance.First.SourceFilePath)
    End If
    miList.Remove(findInstance.First)
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    Private Shared Sub Dispose(ByVal instance As MyImages)
    If instance IsNot Nothing AndAlso instance._bmp IsNot Nothing Then
    instance._bmp.Dispose()
    instance._bmp = Nothing
    End If
    End Sub
    End Class
    When you look through that, look specifically at the "Remove" method and in particular, look at the order in which things are done. That's the critical part in this.
    I tested it with a simple form:
    Two buttons, a checkbox, and a picturebox. I also copied a small folder full of image files to my desktop since I'll be deleting a file from it. Following is the code for Form1:
    Option Strict On
    Option Explicit On
    Option Infer Off
    Imports System.IO.Path
    Public Class Form1
    Private miList As New List(Of MyImages)
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    Dim desktop As String = _
    My.Computer.FileSystem.SpecialDirectories.Desktop
    Dim imgFolder As String = _
    Combine(desktop, "Images")
    PictureBox1.BorderStyle = BorderStyle.FixedSingle
    For Each imgFilePath As String In My.Computer.FileSystem.GetFiles(imgFolder)
    MyImages.AddNew(miList, imgFilePath)
    Next
    btn_RemoveFirstImage.Enabled = False
    CheckBox_RemoveSourcePath.Enabled = False
    End Sub
    Private Sub btn_ShowFirstImage_Click(sender As System.Object, _
    e As System.EventArgs) _
    Handles btn_ShowFirstImage.Click
    Try
    If miList.Count >= 1 Then
    With PictureBox1
    .SizeMode = PictureBoxSizeMode.Zoom
    .Image = miList(0).Bmp
    End With
    btn_RemoveFirstImage.Enabled = True
    CheckBox_RemoveSourcePath.Enabled = True
    End If
    Catch ex As Exception
    MessageBox.Show(String.Format("An exception was thrown:{0}{0}{1}", vbCrLf, ex.Message), _
    "Exception", MessageBoxButtons.OK, MessageBoxIcon.Warning)
    End Try
    End Sub
    Private Sub btn_RemoveFirstImage_Click(sender As System.Object, _
    e As System.EventArgs) _
    Handles btn_RemoveFirstImage.Click
    Try
    If miList.Count >= 1 Then
    MyImages.Remove(miList, miList(0).SourceFilePath, CheckBox_RemoveSourcePath.Checked)
    End If
    PictureBox1.Image = Nothing
    btn_RemoveFirstImage.Enabled = True
    CheckBox_RemoveSourcePath.Enabled = True
    Catch ex As Exception
    MessageBox.Show(String.Format("An exception was thrown:{0}{0}{1}", vbCrLf, ex.Message), _
    "Exception", MessageBoxButtons.OK, MessageBoxIcon.Warning)
    End Try
    End Sub
    End Class
    Running it is straightforward:
    Now when I click to show the first one:
    A different image is shown because that first one no longer exists - either in the collection or in the folder.
    Closing/disposing all references is the key and the order matters.
    Something to consider the next time around. :)
    Still lost in code, just at a little higher level.

  • Mailbox size increased after removing attachments

    Doing a little clean-up on my mail, I noticed my sent mailbox was 1.23 gigs. So, I went in saved several hundred attachments and then tried to remove attachments. It would only let me remove attachments about 5 messages at a time, so I moved over 300 messages that all had attachments to a new folder. After moving them I was able to remove all the attachments at one time.
    But after moving and removing attachments the size of my sent mailbox did not decrease it actually increased by over 400 megs to 1.7 gigs. And the new folder was also very large, at almost 700 megs (even after removing attachments).
    Any ideas how/why this happens? and what can I do to reduce the size of that mailbox?
    I have had the overflow issue before and have been trying to keep and eye on the mailbox sizes and keep them under 1 gig, but this one got by me. My only complaint is mail does not tell you the size of a mailbox in the application, if I was able to check the mailbox size right from the app it would be an easier thing to keep an eye on an everyday basis.
    Any help would be great.. thanks!
    G4 400   Mac OS X (10.3.9)  

    For each mailbox, Mail 1.x stores messages sequentially in an mbox file within the *.mbox package associated with the mailbox -- you can see the files contained in an *.mbox package by ctrl-cliking on it in the Finder and choosing Show Package Contents from the contextual menu.
    When a message is removed from a mailbox in Mail 1.x, the actual message may be completely erased from the mbox file, or it may remain there just marked for deletion in one of the other supporting files within the *.mbox package. In order to reduce the mailbox size when a message is deleted from the middle, the entire mailbox would have to be rewritten to disk every time, which is clearly not practical.
    When attachments are removed from a message, the attachments aren’t actually removed from anywhere. What really happens is that Mail creates a new message without the attachments and deletes the original message... and now you know what it really is that actually happens when a message buried in the middle of the mailbox is deleted...
    My only complaint is mail does not tell you the size of a
    mailbox in the application
    Mail 1.3 sure does. The size of the selected mailbox is displayed in the status bar (View > Show Status Bar). Interestingly enough, that feature is no longer available in Mail 2.x.

  • Why does a find and replace method remove whitespace?

    I have method that searches for a string in a FM document and replaces it with a variable. If for example, there was a string foobar that I wanted to replace with the variable barfoo. Then, I expect this text:
    Lorem ipsum dolor sit amet, foobar consectetur adipiscing elit. Vivamus sed purus urna, ac tristique tortor. Nam auctor tellus non enim pulvinar a vestibulum neque tincidunt.
    To be changed to this text:
    Lorem ipsum dolor sit amet, barfoo consectetur adipiscing elit. Vivamus sed purus urna, ac tristique tortor. Nam auctor tellus non enim pulvinar a vestibulum neque tincidunt.
    However, while the text does do the replace it also removes the whitespace between the variable and the text that appears right after the variable so it actually looks looks like this:
    Lorem ipsum dolor sit amet, barfooconsectetur adipiscing elit. Vivamus sed purus urna, ac tristique tortor. Nam auctor tellus non enim pulvinar a vestibulum neque tincidunt.
    Why is the find and replace method removing the whitespace and how do I prevent that from happening? The method is provided below.
    function FindAndReplaceString(pDoc, findString, replaceVariable)
        if (typeof pDoc != 'undefined'&&typeof findString != 'undefined'&&typeof replaceVariable != 'undefined'&&pDoc.ObjectValid()&&findString.length>0&&replaceVariable.length>0)
            var vVarFmtStatus=checkVarFmStatus (pDoc, replaceVariable);
            if (vVarFmtStatus=='In Doc')
                var tr = new TextRange();
                var findParams = new PropVals();
                var frame = pDoc.MainFlowInDoc.FirstTextFrameInFlow;
                var restoreTR = pDoc.TextSelection;
                tr.beg.obj = tr.end.obj = frame.FirstPgf;
                tr.beg.offset = tr.end.offset = 0;
                findParams = AllocatePropVals(1);
                findParams[0].propIdent.num = Constants.FS_FindText;
                findParams[0].propVal.valType = Constants.FT_String;
                findParams[0].propVal.sval = findString;
                tr = pDoc.Find(tr.beg, findParams);
                var vLoopCounter=0;
                while(FA_errno === Constants.FE_Success&&vLoopCounter++< 1000)
                    pDoc.TextSelection = tr;
                    pDoc.Clear(0);
                    var newVar = pDoc.NewAnchoredFormattedVar(replaceVariable, tr.beg);
                    var varLength = newVar.TextRange.end.offset - newVar.TextRange.beg.offset;
                    tr.beg.offset += varLength;
                    tr = pDoc.Find(tr.beg, findParams);
                if (vLoopCounter>0)
                    Log (vLogFileName, 'In the document \''+pDoc.Name+'\', the string \''+findString+'\' was replaced with the variable \''+replaceVariable+'\' '+vLoopCounter+' times.\n')
                if (vLoopCounter>1000)
                    recordErrors (vErrorLog, 'ERROR: In the document "'+pDoc.Name+'", the find and replace operation was stopped after executing '+vLoopCounter+' times. The term being searched for is "'+findString+'" the replacement variable is "'+ replaceVariable+'".')
                pDoc.TextSelection = restoreTR;
                pDoc.ScrollToText(restoreTR);
                } else {
                    recordErrors (vErrorLog, 'ERROR: The find and replace operation failed because the variable '+replaceVariable+' does not exist in the following doc: '+pDoc.Name)
            } else {
                recordErrors (vErrorLog,'Invalid or unitialized parameter passed to function FindAndReplaceString')

    Hi,
    Not at the moment. Please post in http://forums.adobe.com/community/muse/ideas so other users can vote on the feature request.
    Thanks,
    Abhishek

  • How to make text STAY up after removing mouse from button?

    Hello!
    I honestly hope that this thread title makes sense. Allow me to explain my predicament.
    Someone has created a map where there are little colored buttons over building locations. The buttons were made so that when you hover your cursor over them, they will bring up a little chat bubble (like the ones you see in comics) with the appropriate street address text. What I cannot figure out is how to, after removing the cursor from over a button, make the text bubble stay put so that those who see the map can highlight then copy and paste the street address from it.
    Is there any advice?

    It kinda depends on what version of actionscript you're using, but one that may work for AS2 and AS3 is to use setTimeout to call a function that does what your rollout code currently does... meaning in your rollout function you use: setTimeout(callFunction, x-seconds)... where callFunction is a function that contains what your rollout function did originally.

  • USB Drives works, but does not show up in "Safely Remove Hardware"

    USB Drives works, but does not show up in "Safely Remove Hardware"
    windows 8 
    USB Drives works, but does not show up in "Safely Remove Hardware"
    Here are my symptom
    - USB Flash Drives , USB External HDD works normally
    - I can see them in "My Computer"
    - I can open "Safely Remove Hardware" via Run Command, but there is no device in the list
    - They show up as "Disk drives" in device manager
    - When I right click their icons in "My Computer", there is no option to "Eject" them
    - In "Disk Management", they show up as "Basic". Prior to this issue, they were "Removable"
    After I tested, it seems that my Vista detects every USB storage device as a normal HDD.
    I don't know why but I'd appreciate any help because I have to plug-in and remove those drives often, especially flash drives.
    Thank you

    Hello Mickey2003
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand you are having issues in Windows Vista with your USB Storage devices not showing up in the Safely Remove Hardware list. I am providing you with a link to a Microsoft Hotfix for this very issue titled An external USB storage device may not appear in the Safely Remove Hardware list in the notification.... I would recommend you review the KB document and ensure you a familiar with the Hotfix information and run the hotfix to resolve the issue you are experiencing.
    Please re-post if you require additional support. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Can't open safari after removing genieo

    How do I open safari  after removing genieo

    You installed the "Genieo" scam product. There is an uninstaller, but as the developer is a scam artist, you shouldn't rely on it. I suggest the tedious procedure below to disable Genieo.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Applications/Genieo.app
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash. You may be prompted for your administrator password.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Repeat with each of these lines:
    /Applications/Uninstall Genieo.app
    /Library/Frameworks/GenieoExtra.framework
    /Library/LaunchAgents/com.genieo.engine.plist
    /Library/LaunchAgents/com.genieoinnovation.macextension.plist
    /Library/LaunchDaemons/com.genieoinnovation.macextension.client.plist
    /Library/PrivilegedHelperTools/com.genieoinnovation.macextension.client
    /usr/lib/libgenkit.dylib
    /usr/lib/libimckit.dylib
    /usr/lib/libimckitsa.dylib
    Note: Some of these items may be absent, in which case you'll get a message that the file doesn't exist.
    The following configuration file may be either created or modified by the Genieo installer:
    /etc/launchd.conf
    The file is unlikely to be used by anything but Genieo or something equally undesirable. Unless you know you need it, delete it in the same way as above, if it exists. Otherwise, edit it to remove the line that begins as follows:
    setenv DYLD_INSERT_LIBRARIES
    The above is not a file, but a line inside a file.
    Reboot. Safari should now function normally, and you should be able to reset the home page. If not, stop here and post your results.
    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Uninstall any extension you don't recognize. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    The Genieo installer may also install the "Silverlight" web plugin from Microsoft. If you have no use for that plugin, you should remove it according to Microsoft's instructions. Don't remove it if you subscribe to "Netflix."
    This procedure may leave a few files behind, but it should render Genieo permanently non-functional, as long as you never reinstall it.

  • H800-30ea,USB Drives works, but does not show up in "Safely Remove Hardware"

    hi
    USB Drives works, but does not show up in "Safely Remove Hardware"
    Here are my symptom
    - USB Flash Drives , USB External HDD works normally
    - I can see them in "My Computer"
    - I can open "Safely Remove Hardware" via Run Command, but there is no device in the list
    - They show up as "Disk drives" in device manager
    - When I right click their icons in "My Computer", there is no option to "Eject" them
    - In "Disk Management", they show up as "Basic". Prior to this issue, they were "Removable"
    After I tested, it seems that my Vista detects every USB storage device as a normal HDD.
    I don't know why but I'd appreciate any help because I have to plug-in and remove those drives often, especially flash drives.
    Thank you

    Hello takpesar,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand you are having issues in Windows Vista with your USB Storage devices not showing up in the Safely Remove Hardware list. I am providing you with a link to a Microsoft Hotfix for this very issue titled An external USB storage device may not appear in the Safely Remove Hardware list in the notification.... I would recommend you review the KB document and ensure you a familiar with the Hotfix information and run the hotfix to resolve the issue you are experiencing.
    Please re-post if you require additional support. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Mail does not load the mail after opening with 10.10.3 on macbook air

    Mail does not load the mail after opening with 10.10.3 on macbook air

    Under Window in the Menu bar select Connection doctor. You will see green to indicate a connection and red to show there is a problem. Except for iCloud account you'll see two entries for each account 1) receiving and 2 SMTP for sending.
    If it's red, this usually means it's missing the password.
    For Incoming messages, set in the account window, under Account Information tab.
    For Outgoing (SMTP) messages, follow these steps:
    EDIT SMTP SETTINGS
    In Accounts window > Outgoing Mail Server SMTP:  select to Edit SMTP Server list... from popup.
    Select account in the list.(It's not uncommon to find extra SMTP servers listed. When you remove account, Mail does not delete the smtp info. You might need to do some clean up in the list to remove the extras.)
    Under Advanced Tab:
    Apple defaults to the default ports (25,465, 587) but some servers prefer a custom port. Check to see what port they recommend. Gmail for example likes 465, Outlook.com 587.
    Verify if your server require SSL.
    User Name. Enter full email address  eg.  [email protected]
    Add password if it is blank.(If you have two step authentication setup, you'll need to get an app specific password  more info)
    Open Connection Doctor under Window in the Menu bar.
    Do you see green light now for your account SMTP?

  • Why does my IPod shuffle stop after a few hours playing on shuffle when it should go for days?

    Why does my IPod stop playing after a few hours on shuffle when it should play for days?

    A few possibilities...  (Each numbered item is a separate thing to check or try.)
    (1) What does the shuffle's light do when you connect it to USB?
    (2) If the docking cable plug is not fully inserted, it may not have a good connection for charging.  Make sure the docking cable plug is fully inserted into the shuffle's headphones jack, as shown in this document
    iPod shuffle (4th generation): Not seen in iTunes
    (3) If there are other USB devices connected to your computer at the same time, try disconnecting other devices (including USB hub) so that the shuffle is the only device connected to a direct USB port, to see if that makes a difference (you can leave standard USB keyboard/mouse connected if used).
    (4) If you have a USB power adapter (such as from an iPhone, iPad, or other device), that plugs into the wall outlet, as a test, connect the shuffle's docking cable to the adapter and connect the shuffle.  Does it change from a power adapter?
    (5) Some newer Windows PCs (if you use Windows and not a Mac) may have a "feature" that shuts off full power to the USB port when a connected storage device is no longer mounted by the system.  An iPod is a storage device, and after syncing, iTunes unmounts the iPod's disk (if you are using automatic syncing).  If Windows shuts off full power to the USB port, the battery cannot charge.  To see if this is the problem, does the iPod appear in iTunes when it is connected, even though the battery is not charging?  If it does, select the iPod in iTunes so that you see its Summary screen.  There is an option (checkbox) there for Enable disk use.  If it's not already checked, check that box and Apply.  Enabling disk use keeps the iPod's disk mounted continuously, so Windows will keep the USB port at full power (and the battery will charge).  If the iPod now charges, there may be a way to disable this "energy saver" feature in Control Panels, so that you can turn OFF Enable disk use.  NOTE:  When Enable disk use is turned ON, you need to Eject the iPod in iTunes before physically disconnecting it.

  • N8 does not start or recharge after being empty

    My N8 does not recharge or start after battery beeing empty. I tried hard reset, more than 8s start button, charging with mini usb or original charger, at laptop or charger, just dead.

    If the Battery is totally drained sometimes it takes a few minutes of charge to show the charging indiactor... If you have not done this then leave it on charge and check after about 10 minutes...

  • Yosemite does not recognize HP printer after upgrade.  I can print from my iPhone, but not my 13" Macbook Air (2013)Yosemite does not recognize HP printer after upgrade.  I can print from my iPhone, but not my 13" Macbook Air (2013)

    Yosemite does not recognize HP printer after upgrade.  I can print from my iPhone, but not my 13" Macbook Air (2013)
    Are others having the same problems?

    Try this. Worked for me.
    - turn off your router
    - turn off you Mac's after removing all available printers
    - turn off all iDevices
    - do a factory reset of your printer remove all cables min. 30 sec.
    - turn on your router first
    - ran the network set up wizard
    - give your printer also a new name like "DeskJet 2015"
       Something which you don't have used before.
    - turn on your Mac's and add your printer
    - turn on your iDevices at least.
    Should work after these steps.
    It worked for me including all iDevices.
    iOS and Yosemite

Maybe you are looking for

  • Apple IMac 27 has a problem. Random black screen. Over 1 year without any fix

    Apple IMac 27 has a problem. Random black screen. Over 1 year without any successful fix. IMac 27 10.8.4 (12E55) - bought in 2010 3.06 GHz Intel Core 2 Duo 4GB 1067 Mhz RAM Graphics ATI Radeon HD 4670 256 MB The IMac computer screen goes black random

  • JTable resize header (and change mouse in between headings)

    Hi, I notice that i have the ability to resize my headings in the JTable but is there a way to get the mouse pointer to indicate something similar to what Excel does when you put your mouse over the divide (between two heading cells)?

  • Solaris 9 OE

    Hi, can anyone comment the impact of the new Solaris Release and its features. JVM has many features, which are build in Solaris 9. http://www.sun.com/ http://www.sun.com/2002-0522/feature/ http://www.sun.com/smi/Press/sunflash/2002-05/sunflash.20020

  • Can't import MPEG a/v asset

    Hi. When importing a DVD compliant MPEG file, I get the follwoing error: "Sorry, an abnormal condition has been detected ..." The asset contains MPEG-2 video (<= 15 frames per GOP, bitrate <= 9.8 Mbps, ...) and MP2 192 Kbps and AC3 2.0 256 Kbps audio

  • TS4268 cannot activate factime on new ipad mini

    HI, Just got a new ipad mini for daughter to replace older 3rd generation itouch.  I cannot activate her factime through her email address.  Eventhough the password and spelling are correct, no luck.  I even tried to reset the password by having a li