Problem with reading MP3 tag information

This may be a simple fix, but I'm having no luck figuring it out. I've got an application here that scans through a given directory for all files. We are going to assume that all files below the given parent directory are *.mp3 files. Every file we find is going to have its path stored into an ArrayList. After the ArrayList is created, we will then through the ArrayList, getting the String value which is a path to our MP3 file.
The application works well when I am simply printing out the ArrayList to the console. It's printing out everything in the ArrayList. The ArrayList consists of both directories and paths to actual files. The problem comes when I am trying to take the String from the ArrayList, pass it into my getID() method. Here is the code. i've commented the line in my main method that is giving me problems.
* Main.java
* @author tristan
* Created on August 7, 2007, 4:26 PM
package audioidreader;
import java.io.*;
import java.util.*;
import org.blinkenlights.jid3.*;
import org.blinkenlights.jid3.v1.*;
import org.blinkenlights.jid3.v2.*;
public class Main
    /** Creates a new instance of Main */
    public Main ()
     * @param args the command line arguments
    public static void main (String[] args) throws Exception
        /* tempDir is the directory where we will be searching for files. The ArrayList 'files'
         * is where all the file listings will be stored by using getFileListing(tempDir). The
         * for() loop get the size of the ArrayList, starts from the first index, and gets the
         * index value. The index values are supposed to be paths to an MP3 file. We will use
         * System.out.println() to print out all the paths to all the MP3s found to the console.
        File tempDir = new File ("/home/tristan/My Music");
        ArrayList files = (ArrayList) getFileListing ( tempDir );
        for(int i = 0; i < files.size (); i++)
            System.out.println ( files.get (i) );
            // getID((String) files.get (i)); // throws an exception
    static public ArrayList getFileListing ( File aStartingDir ) throws FileNotFoundException
        /* First, we check to see if our directory for the MP3s exists or not. In this case,
         * we are calling validateDirectory() with a file object passed from our main method.
         * If the directory is good, we then create a new Arraylist to store the results in.
         * We then scan through our directory and find every file within our parent directory
         * and we add the result, even directories, to the ArrayList. Once everything is done,
         * we return the 'result' ArrayList to where it was originally called from Main.
        validateDirectory (aStartingDir);
        ArrayList result = new ArrayList ();
        File[] filesAndDirs = aStartingDir.listFiles ();
        List filesDirs = Arrays.asList (filesAndDirs);
        Iterator filesIter = filesDirs.iterator ();
        File file = null;
        while ( filesIter.hasNext () )
            file = (File)filesIter.next ();
            result.add (file);
            if (!file.isFile ())
                List deeperList = getFileListing (file);
                result.addAll (deeperList);
        Collections.sort (result);
        return result;
    static private void validateDirectory (File aDirectory) throws FileNotFoundException
        /* This method checks to see if our parent directory that we entered is an existing
         * directory. If the directory does not validate, we will throw an exception specific
         * to the reason of not being valid.
        if (aDirectory == null)
            throw new IllegalArgumentException ("Directory should not be null.");
        if (!aDirectory.exists ())
            throw new FileNotFoundException ("Directory does not exist: " + aDirectory);
        if (!aDirectory.isDirectory ())
            throw new IllegalArgumentException ("Is not a directory: " + aDirectory);
        if (!aDirectory.canRead ())
            throw new IllegalArgumentException ("Directory cannot be read: " + aDirectory);
    static private void getID (String mp3) throws ID3Exception
        /* getID() is called by the main method. What we are attempting to do here is
         * receive the String (path to MP3 file) that is passed to us and do a test on
         * it. First, we will use the String to our MP3 and make it a file object.
         * After creating the file object, we are then using that object to create
         * an MP3 object. Now, we will read the tages from the object to determine
         * if it is an ID3 v1.0 or ID3 v2.3.0 tag. Regardless of what it is, we want to
         * print out some information to the console in the format of 'Artist - Title'.
        File oSourceFile = new File (mp3);
        MediaFile oMediaFile = new MP3File (oSourceFile);
        ID3Tag[] aoID3Tag = oMediaFile.getTags ();
        for (int i=0; i < aoID3Tag.length; i++)
            if (aoID3Tag[i] instanceof ID3V1_0Tag)
                ID3V1_0Tag ID3_1 = (ID3V1_0Tag)aoID3Tag;
if (ID3_1.getTitle () != null && ID3_1.getArtist () != null)
System.out.println (ID3_1.getArtist () + " - " + ID3_1.getTitle ());
else if (aoID3Tag[i] instanceof ID3V2_3_0Tag)
ID3V2_3_0Tag ID3_2 = (ID3V2_3_0Tag)aoID3Tag[i];
if (ID3_2.getArtist () != null && ID3_2.getTitle () != null)
System.out.println (ID3_2.getArtist () + " - " + ID3_2.getTitle ());
If I type in an actual String that is a path to an MP3, such as:
getID("/home/tristan/My Music/Incubus - Drive.mp3"); Everything works fine. I've tried casting the value pulled from the ArrayList as a String and then passing it to the getID() method, but my exception I am getting is:
Exception in thread "main" java.lang.ClassCastException: java.io.File cannot be cast to java.lang.String
        at audioidreader.Main.main(Main.java:38)
Java Result: 1Line 38 is the line I have commented out. Any ideas?

You're right. That is a bit misleading. Anyway, I
decided to not cast (String) to it. It was a simple
fix just like I figured, but of course I figure it
out after I made the post.
getID (files.get (i).toString ());fixed my problem. Thank you.But not in the correct way. You should really use the canonical path or the absolute path.

Similar Messages

  • Can MediaSource display MP3 file name instead of MP3 tag information? ; Playlist default locat

    ?I am using Creative MediaSource Player 5.0.38 as an MP3 player on my computer:?. Can we get MediaSource to display mp3 file names instead of mp3 tag information when file is being played as part of a Playlist???2. Playlists are stored in this location:
    C:\Documents and Settings\Administrator\Application Data\Creative\Media Database\
    or if not logged in as Administrator:
    C:\Documents and Settings\[name of your account]\Application Data\Creative\Media Database\?Unlike with Creative PlayCenter, default location of Playlists cannot be changed in Windows registry.?Is there any?way to change Playlist default location?
    ??3. If Shuffle play mode is selected, MediaSource will still always play the first file on the Playlist? and only then switch to shuffle mode. I found a workaround for this because old PlayCenter 2 had this problem, is this a known bug that they still haven't fixed after all these years???Message Edited by c627627 on 04-6-200706:33 PM

    Hi,
    I understand you want to place description of Content type as refiner in Search Refinement.
    Without coding, you may considering adding a column for description and use this column as refiner.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Problem with showing mp3 album art in list view.

    Hello.
    I have litle problem with showing mp3 album artwork in list view.
    In SNOW LEOPARD all work fine, and all mp3 files have album art's preview in list mode in finder.
    But in LION i have only default preview mp3 icon.
    Option "Show icon preview" is already on!

    I have the fix!!!!
    I have had the same issue ever since Lion. Its been very painful not having album art preview in finder or the play button when rollover the file for so many versions of OSX. Today I worked hard in trying to solve the problem since Applecare support hasn't helped much, all they did was tell me to bring the computer in. The other main reason I got so motivated to try and fix this is because the DJ app for Mac only reads album art from the finder even if iTunes can display the album art. The other reason that got me curious is that my friends macbook pro album art worked fine, so I cross checked with his computer until I figured out a few things that helped and ultimately fixed the issue. FINALLY!
    My set up:
    - I have my full iTunes library folder on my external as I have over 700GB of music.
    - It includes all my database files in there, which is very important as I have many playlist settings from over 7 years of iTunes activity.
    SOLUTION:
    1. With every new computer I have purchased, I use to just pressed option on Mac and press iTunes to locate my folder (which I have said is located on my external drive).
    2. I tried today to press option again BUT locate and selected the default library in the user/music folder of my internal drive (standard setting from Apple).
    3. Miraculously, all the album art appeared in both my external drive library and also today's downloaded songs on my Macbook pro. Ofcourse with the new default location I don't have any songs or data.
    4. So I tried to find a way to keep this library data on my internal drive since it can help the finder display all my files properly, yes even have the play on rollover button but as well link it back to my external drive with all my 700GB songs.
    5. I then went into iTunes Preferences/Advance tab and in iTunes Media folder locationredirected the location to my external drive iTunes/ iTunes Media folder. If it asks to collate data, press NO.
    6. Then I quit iTunes.
    7. Next I copied the 4 files to my desktop from my external drive as I want to keep the data I have made with all my playlists etc. The four files are iTunes Library Extras.itdb ,iTunes Library Genius.itdb , iTunes Library.itl , iTunes Library.xml
    8. I then went to my internal drive User/Music/Itunes/ and dragged these 4 files I copied from my external drive into here and making sure to REPLACE the four existing files already there.
    9. Next open iTunes and you will find all your presettings appear with all your music linked to your external. What this does is keep the important library files on your internal drive (that somehow makes your finder files album art appear), BUT to read also all the music mp3 files located in the external drive (action from step 5)
    Presto!! All your music files whether on internal drive or external all the album art has appeared.
    Hope this helps!! Let me know if there are any other questions.
    I am on 10.8.1 running retina macbook pro.

  • Nokia 5310 XpressMusic won't read MP3 tags

    Hi,
    I got the 5310 for Christmas of 2008. For a long time it was reading MP3 tags just fine (up until maybe three or four months ago). But, now, it seems that most of my MP3s I transfer, it won't read the tags on it. Usually if the album art is embedded to the MP3 it'll still read that, but it won't read song title, artist, album, track number, etc. However, this doesn't affect ALL of the MP3s. Maybe 15-20% of my MP3s are still read, even though they're tagged with the same program at the same time (I've tried tagging with both foobar2000 and iTunes and had the same result as far as what the phone will read). I don't know why it does this; I can open files directly off of my phone to foobar2000 and iTunes and both programs read every tag on every MP3 fine.
    Does anyone have suggestions for what to try to fix this? Maybe a different tagging program or something to do to the phone to get it to read the tags. It gets really annoying not having the option to sort by artist or album.
    Solved!
    Go to Solution.

    The music player reads ID3v2 tags and NOT ID3v1. Make sure that you have them in place. Some PC applications show and modify only ID3v1 tags. I don't use either of the apps that you mentioned, so, can't tell you if they are doing it. What I would suggest is to check the ID3v2 tags using Winamp/jetAudio (in windoze) or BMP/mplayer/amarok (in linux), and if necessary, update it and then transfer back to your phone.
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • Problem with InputSelect Data Tag if there is no register in database

    Hello all,
    I4m working with Oracle JDeveloper 3.2.2 and I have a problem with InputSelect Data Tag.
    When I tried to access a JSP page with this object and there was n't a record at the table, an error occurred.

    All the input tags operate on rows in the cache. Prior to using the input tags, use the Row tag with the 'Create' option to make sure you have a valid row.

  • HT1918 problem with changing the payment information

    I've got a problem with changing the payment information !!
    when I change them and I followed the instruction , and when I click done
    it says " for assistance, contact iTunes support at " the link " . and nothing
    change , so what should I do ?

    Hi Bart,
       The description of the field VBKD-BSTKD will appear in sales order (VA01/02/03) Header  Order data tab.
    If you notice the text for below one it is PO Number where Number starts with upper-case N and it iis not the one which you changed.
    Also this is a hyperlink to sales header order data screen.
    You need to enhance the code via sales exit to fix this.

  • Problem with READ Statement in the field routine of the Transformation

    Hi,
    I have problem with read statement with binary search in the field routine of the transformation.
    read statement is working well when i was checked in the debugging mode, it's not working properly for the bulk load in the background. below are the steps i have implemented in my requirement.
    1. I selected the record from the lookuo DSO into one internal table for all entried in source_packeage.
    2.i have read same internal table in the field routine for each source_package entry and i am setting the flag for that field .
    Code in the start routine
    select source accno end_dt acctp from zcam_o11
    into table it_zcam
    for all entries in source_package
    where source = source_package-source
         and accno = source_package-accno.
    if sy-subrc = 0.
    delete it_zcam where acctp <> 3.
    delete it_zcam where end_dt initial.
    sort it_zcam by surce accno.
    endif.
    field routine code:
    read table it_zcam with key source = source_package-source
                                                 accno  = source_package-accno
                                                 binary search
                                                 transportin no fields.
    if sy-subrc = 0.
    RESULT  = 'Y'.
    else.
    RESULT = 'N'.
    endif.
    this piece of code exist in the other model there its working fine.when comes to my code it's not working properly, but when i debug the transformation it's working fine for those accno.
    the problem is when i do full load the code is not working properly and populating the wrong value in the RESULT field.
    this field i am using in the report filter.
    please let me know if anybody has the soluton or reason for this strage behaviour.
    thanks,
    Rahim.

    i suppose the below is not the actual code. active table of dso would be /bic/azcam_o1100...
    1. is the key of zcam_o11 source and accno ?
    2. you need to get the sortout of if endif (see code below)
    select source accno end_dt acctp from zcam_o11
    into table it_zcam
    for all entries in source_package
    where source = source_package-source
    and accno = source_package-accno.
    if sy-subrc = 0.
    delete it_zcam where acctp 3.
    delete it_zcam where end_dt initial.
    endif.
    sort it_zcam by surce accno.
    field routine code:
    read table it_zcam with key source = source_package-source
    accno = source_package-accno
    binary search
    transportin no fields.
    if sy-subrc = 0.
    RESULT = 'Y'.
    else.
    RESULT = 'N'.
    endif.

  • Having problem with reading list in safari

    i am having problem with reading list in safari some time it work sometimes gets hang....

    Might be a cache issue ...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • I am facing a Problem with reading images from database

    Hi everybody..
    any help will be most appreciated, I am facing problem with reading images from database. I am pasting my code... 
                    string connect = "datasource = localhost; port = 3306; username = root; password = ;"; 
                    MySqlConnection conn = new MySqlConnection(connect); // creating connecting string
                    MySqlCommand sda = new MySqlCommand(@"select * from management.add_products ", conn); //creating query
                    MySqlDataReader reader; 
                    try
                        conn.Open(); // Opening Connection
                        reader = sda.ExecuteReader(); // Executing my Query..
                        while (reader.Read())
                            byte[] imgg = (byte[])(reader["Picture"]);
                            if (imgg == null)
                                pc1.Image = null;
                            else
                                MemoryStream mstream = new MemoryStream(imgg);
                                pc1.Image = System.Drawing.Image.FromStream(mstream);
    It says Parameter not Valid... i am reading all the images from database

    I agree with Viorel. You are getting the error because the format of the data is incorrect probably because the data was modify. It may not be the reading of the database the is incorrect, but the application that wrote the data into the database. You need
    to compare the imgg array data with the data before it was written to the database to see if the data matches.  I usually start by comparing the number of bytes which is easier to check then compare the actual to isolate which function is changing the
    byte count.
    An image is binary data.  The standard VS methods for reading and writing data (usually stream classes) default to ASCII encoding which will corrupt binary data.  The solution usually is to use UTF8 encoding instead of the default ascii encoding. 
    Ascii encoding with stream often aligns the data and adds extra null bytes to the end of the data which can produce these type errors.
    jdweng

  • Problem with reading config file

    Hello,
    I have problem with reading config file from the same dir as class is. Situation is:
    I have servlet which working with DB, and in confing file (config.pirms) are all info about connection (drivers, users, passw, etc.). Everything work fine if I hardcoded like:
    configFileName = "C:\\config.pirms";I need to avoid such hardcoding, I tryied to use:
    configFileName = Pirms.class.getClassLoader().getResourceAsStream ("/prj/config.pirms").toString();but it isn't work.
    My config file is in the same directory as Pirms.class (C:\apache-tomcat-5.5.17\webapps\ROOT\WEB-INF\classes\prj)
    Also I tryied BundledResources, it isn't work fo me also.
    Can anybody help me to solve this problem? with any examples or other stuff?
    Thanks in advance.
    Andrew

    Thanks, but I am getting error that "non-static method getServletConfig() cannot be referenced from a static context"
    Maybe is it possibility to use <init-param> into web.xml file like:
    <init-param>
      <param-name>configFile</param-name>
      <param-value>/prj/config.pirms</param-value>
    </init-param>If yes can anybody explain how to do that?
    I need to have that file for:
    FileReader readFile = new FileReader(configFile);Thanks in advance.

  • Read MP3 tags from HTTP mp3 streaming

    Hi , how i can read MP3 tags from HTTP mp3 streaming (streaming url : http://94.25.53.133:80/nashe-9)
    Regards
    Alex

    Hi , how i can read MP3 tags from HTTP mp3 streaming (streaming url : http://94.25.53.133:80/nashe-9)
    Regards
    Alex

  • ITunes on new computer not reading MP3 tags

    I have transferred my library of MP3 that were ripped from CD from my old computer to my new computer, and many of the files do not show the album name or artwork, etc. in iTunes.  If I look at file properties in Windows, however, all the information is present for the MP3 - album, artist, etc.  I have found that there is a field called "Encoded by" and is says "iTunes 11.0.2.26", or some other is an older version of iTunes.  If this iTunes version is older than the latest version of iTunes on my new computer, then iTunes does not read the MP3 tags correctly.  If I manually change that iTunes version in Windows to the latest iTunes, then that file is fixed!!!
    My question is, what is the fastest way to make this change for all the files that are showing old info in the "encoded by" field?  The files are all buried in various artis->album folders in the music folder, and I can't see any way to change this field from iTunes, I can only do it from windows explorer.  If I could do it in iTunes it would be fast because I could group all the bad files together, select them all, and change them in one step. 
    Please help!  I am close to fixing it!

    Are you using the latest downloaded version of iTunes from Apple.com, instead of a version that came on disc with the iPod? According to this article, Windows Vista 64-bit required iTunes 7.6 or later
    http://support.apple.com/kb/HT1426
    Also, make sure you got the version of iTunes 8 for Windows Vista 64-bit
    http://support.apple.com/downloads/iTunes8_0_2_for_Windows_Vista_64bit

  • Problem with Reader file when we try to save a pdf version of filled in file.

    We currently create fillable forms in Acrobat XI and enable them for fill-in with Acrobat Reader.  Our end users are able to key information and save it to the enabled pdf file with Reader, but they want to create a protected version of the form so nothing can be modified once they have approved it.  They have been creating "locked" pdf versions of the completed form using CutePdf software.  The PDF files they are creating open fine with Acrobat Pro XI or our free FoxIT reader, but when we try to open the files they created with CutePDF with Acrobat Reader, they are quite distorted.  According to users, this worked with older versions of Acrobat Reader.  Please let us know if you have any suggestions (other than switching from Acrobat Reader to the free FoxIT reader.
    Thanks for the help!!
    Ken K. - 2191

    Can't endorse FoxIt or CutePDF, since I don't use either of them, and Adobe doesn't like us endorsing thrid party products in their forums anyway. On top of that I know several people who had really bad adware experiences with FoxIt, so I'd say stay away from it.
    Most likely neither of these software developers has updated THIER software to work with Acrobat/Reader XI and the problem lies with them, since PDF is an Adobe format and they must follow the lead from here, not vice-versa.

  • 4.1.1 SDK Problems with missing xpacket tags in sidecar XMP files

    The current 4.1.1 SDK has problems with sidecar XMP files that don't have the xpacket headers and trailers, i.e:
    <?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?>
    <?xpacket end='w'?>
    is missing. Now, unfortunately Adobe Bridge CS2/CS3 does not export these xpackets in sidecar XMP files.
    The standard, http://www.aiim.org/documents/standards/xmpspecification.pdf, is also very vague about it all:
    ● Write external metadata as though it were embedded and then had the XMP Packets
    extracted and catenated by a postprocessor.
    The grammar is strange(past tense had) and the spec implies that the xpacket should be extracted and again catenated... Someone should review this document and clearly state if xpacket statements should be in sidecar files or not. I suspect myself that they should be there, but the standard is very vague.
    Anyway, there are two places in the SDK code where changes might be needed:
    XMPFiles::Initialize has XMP_Asserts in case the xpacket header/trailer is missing, but the underlying assert is only active in debug builds.
    XMPScanner::PacketMachine::FindNextPacket () also has in its truth table the assumption that the xpackets exist.
    There could be even other places in the code that assumes that the xpacket tags are present in all files, which includes text XMP sidecar files.
    Anyway.
    a) Shouldn't bridge export the xpacket tags? Same with any other application?
    b) If the spec is vague, then the SDK should not assume that the xpacket tags are present.
    Any comments? Has someone already fixed this issue as I suspect a lot of apps using the the XMP SDK would break concerning reading XMP sidecar files? Thx, Kent

    I was able to work around the problem by creating a mapped view of the .xmp file (this creates an array in memory backed by the file on disk, so there's no need to read the file into a separate internal buffer), and constructing the SXMPMeta object directly from the buffer. (The ctor for that class calls ParseFromBuffer, so this is the same thing as was suggested by other messages in this thread.)
    It seems that Adobe needs to do one of these things:
    (1) say that Bridge CS3 has a bug, and agree that Bridge CS3 should include a proper xpacket header when writing xmp sidecar files
    (2) say that the XMP Toolkit has a bug, and that the SDK should be able to parse sidecar files without an xpacket header, and agree to fix the toolkit
    (3) say that Bridge CS3 and the XMP Toolkit behave as expected, but then provide a sequence of steps by which users of the XMP Toolkit are expected to read xmp sidecar files written by Bridge CS3
    Does Bridge CS4 write an xpacket header to the xmp sidecar files?
    Maybe what I could do is create a custom file handler for .xmp sidecar files, so I could use the SXMPFiles for everything, instead of having to special-case .xmp files.
    My needs are pretty modest though, and it might be just as simple to use the MS DOM-based XML parser for load the xmp sidecar file. I bet I could get the data I need (only the "Rating" for now) using a simple XPath expression.
    -Matt

  • Problem with Reader 9.3

    Reader 9.3 does not respond or responds very slowly. I tried updating it - no change. I tried downloading it and I get the following message. Error 1316 network error occurred while attempting to read from file C:/users\chuck\AppData\Local\Adobe\Reader9.3\Setupfiles\AdbeRdr930_en_US.msi
    I can use reader to open stuff saved on my computer, but it responds slowly or sometimes not at all.

    I have the same problem.
    The problem seems to be that the install application does not extract the file it is trying to read.
    During the install, a directory "Setup Files" is created, i.e.:
    C:\Documents and Settings\Administrator\Local Settings\Application Data\Adobe\Reader 9.3\Setup Files
    Then the install application extracts installation setup files in this directory. Unfortunately, the file "AdbeRdr930_en_US.msi" is not one of them. So later in the install process; when it looks for the file, it gives "Error 1316" because it can't find it.
    However, the problem seems to be that the file never was there in the first place.
    I have tried this several times now, and opened a file manager (windows explorer) to view this (temporary) directory.
    The only files I see there are:
    File name
    File size
    abcpy.ini
    2 kb
    AcroRead.msi
    3,880 kb
    Data1.cab
    107,103 kb
    Setup.exe
    338 kb
    setup.ini
    1 kb
    If you cancel the install (give-up) after error; then this directory folder and all the above files are erased.
    This is clearly an issue with the install program: "AdbeRdr930_en_US.exe" ... which probably should be renamed, because the (second) setup dialog box is clearly titled "Adobe Reader 9.3.2 - Setup" (not, 9.3.0).  In spite of this, the properties for the install file say version is 2.0.0.41.  Seems a bit confusing. 
    Anyway, the main issue is that it can't find the "AdbeRdr930_en_US.msi" file because it does not exist in the "Setup Files" directory because, presumably, the installer was unable to extract it in the first place.
    The "Error 1316" appears after the "Validating install" phase of installation and during the "Publishing product information" phase when the green progress bar appears to be at 100%.  Frustrating, so close, but yet so far away from success.
    Oh, and don't run the "Windows Installer Cleanup Utility" ... this is (was) to resolve problems with Microsoft Office installations, but even there Microsoft has retracted this since it is found to actually cause damage to Microsoft Office.  See:
    [Wikipedia] Windows Installer CleanUp Utility
    [Microsoft] How do I uninstall Office, if I cannot uninstall it from Control Panel?
    Hope somebody out there can fix this issue.  With luck, someone on the development team is watching this thread...
    ~~

Maybe you are looking for

  • White halo around image

    Hi there, I have a font set to a  large size 1065 pt as it's for a banner - however I am getting a slight grey white border around the image, kind of like a faint stroke but the stroke is turned off. Turning a stroke on matching my font colour doesn'

  • Delivary schedules

    hi experts our scenario is we are adding 1000 finished materials to in below  activity,according to that procurement type reservation is generated to that finished product ,we maintained MRP views to the that finished material ,in project  requiremen

  • How to save a Signature captured using InkManager in byte[] to be read in Crystal Report.

     Hi.  I'm developing an enterprise app in Xaml where I capture a signature using the InkManager control in windows 8.1, the user can print the document from the device just fine with the signature, but the document is sync back to the server and from

  • Spry Accordion Link on PannelTab

    After updating the Spry framework to 1.6, the link i used on the AccordionPannelTab stopped working. How should i do it?

  • Did 4G LTE kill my Galaxy SIII or did the Radio develop narcolepsy???

    I apologize up front for the length and tedium of this post.  This is wits end, and the last attempt to find a solution or at the very least an honest explanation of the problem and commitment to a solution, without activating an old phone and throwi