Device error "sequence contains no matching element"

Hallo,
I just received the VirtualBench and I could use it as I connect it for the first time. I then downloaded and run the program for Window7, so that I would be able to run the program from my PC.
Since then, I cannot work anymore more with the virtualbench. It always give the same error: device error: sequence contains no matching element.....
What it wronf what shall I do?
Note: I read a similar question, but it seemed that the error disppeared somehow for unexplained reason. So, there were actually no solution mentionned for this problem.
Thanks in advance for any support.
Solved!
Go to Solution.

For anybody that has this problem in the future, we'd really like to get to the root of the problem.  To help with that I have created a small utility that will pull the configurations from your device and save them to files.  These configurations appear to be corrupted in these situations.
The easiest way to use the utility is to run it from the command line.  It will find the first USB VirtualBench on your system and save any configuration files it has to your temporary directory.  For example:
C:\Users\User\Desktop>nivb_cfgutil.exe
Saving files to C:\Users\User\AppData\Local\Temp\
Connecting to device 'vbzach'
Found config: ni-virtualbench-preferences.vbconfig
Wrote config to file C:\Users\User\AppData\Local\Temp\ni-virtualbench-p​reference
s.vbconfig
Found config: test_cfg.vbconfig
Wrote config to file C:\Users\User\AppData\Local\Temp\test_cfg.vbconfig
Found config: test_cfg2.vbconfig
Wrote config to file C:\Users\User\AppData\Local\Temp\test_cfg2.vbconfi​g
It also has some options that allow  you to specify the device to connect to (either by name, IP address, or hostname), where to put the files, and whether or not to overwrite existing files on your PC.  For example:
C:\Users\User\Desktop>nivb_cfgutil.exe --help
Usage: nivb_cfgutil.exe [options]
Main options:
  -h, --help
      Shows help.
  -d, --dev=device
      Device name to target.
  -o, --out=directory
      Output directory to save config files.  If not specified, the temporary di
rectory is used.
  -w, --overwrite
      Overwrite existing files.
What we would like is that when people run into this issue they perform the following steps:
Attach the application preferences files:
Open a file explorer
In the address bar, enter this path (copy/paste can help):
XP: %USERPROFILE%\Local Settings\Application Data\National Instruments\NI-VirtualBench
Vista, 7, 8: %USERPROFILE%\AppData\Local\National Instruments\NI-VirtualBench
Attach the file ni-virtualbench-preferences.vbconfig to a post here so we can inspect it.
Run the nivb_cfgutil.exe utility attached to this post, and post any *.vbconfig files it creates to a post here so that we can inspect it.
Once you have done that, you should be able to fix the issue by doing the following:
Use the reset button on the back. The application also uses information stored on the PC when it starts. If the problem is there, then resetting the device alone won't help.
NI VirtualBench Help :: Reset Button http://zone.ni.com/reference/en-XX/help/371526A-01/vbhelp/wirelessbutton/
Launch the app.  If it works, you're done.
If the issue was not resolved, you may also need to delete the file mentioned above.
Open a file explorer
In the address bar, enter this path (copy/paste can help):
XP: %USERPROFILE%\Local Settings\Application Data\National Instruments\NI-VirtualBench
Vista, 7, 8: %USERPROFILE%\AppData\Local\National Instruments\NI-VirtualBench
Delete the file ni-virtualbench-preferences.vbconfig
Zach Hindes
NI R&D
Attachments:
nivb_cfgutil.zip ‏991 KB

Similar Messages

  • Virtual bench "system error" Sequence contains no matching element

    We have a Virtual Bench that will not correctly connect. We get a pop up "System Error" and the text in the middle reads "Sequence Contains No matching element"

    Thanks :-)
    I have two requests -- please do them in this order.
    Attach the application preferences file:
    Open a file explorer
    In the address bar, enter this path (copy/paste can help):
    XP: %USERPROFILE%\Local Settings\Application Data\National Instruments\NI-VirtualBench
    Vista, 7, 8: %USERPROFILE%\AppData\Local\National Instruments\NI-VirtualBench
    Attach the file ni-virtualbench-preferences.vbconfig
    Try switching to Demo Mode after you receive the error:
    How Can I Switch between the Hardware and Demo Modes of VirtualBench?
    http://digital.ni.com/public.nsf/allkb/89A7E8A6F39D4FAA86257D3A00791312
    If the application can use Demo Mode, please let me know.
    Joe Friedchicken
    NI VirtualBench Application Software
    Get with your fellow hardware users :: [ NI's VirtualBench User Group ]
    Get with your fellow OS users :: [ NI's Linux User Group ] [ NI's OS X User Group ]
    Get with your fellow developers :: [ NI's DAQmx Base User Group ] [ NI's DDK User Group ]
    Senior Software Engineer :: Multifunction Instruments Applications Group
    Software Engineer :: Measurements RLP Group (until Mar 2014)
    Applications Engineer :: High Speed Product Group (until Sep 2008)

  • Error: Sequence does not match type xs:string

    I am using BDB XML 2.5.16 to store and query my XML  documents in Java. The documents are IMDB xml documents containing actors information
    obtained from INEX website https://inex.mmci.uni-saarland.de/login.jsp.  One of  the document I stored in the database is the following
        <?xml version="1.0" encoding="UTF-8"?>
         <persons>
          <person>
              <name>jason angeles
              </name>
              <filmography>
                 <act>
                    <movie>
                       <title>prison planet 3 the revenge 1998
                        </title>
                      <year>1998
                      </year>
                     <character>evil ninja
                      </character>
                   </movie>
                 </act>
              </filmography>
             </person>
             </persons>
    I want to  search using XQuery  for filmography element whose title element contains ANY of the following keywords ('planet', 'revenge', '1998'). Below is the query I used
                  // declaring function functx:contains-any-of
                String qryRk = "declare namespace functx = 'http://www.functx.com'; " 
                      + "declare function functx:contains-any-of "
                     + "( $arg as xs:string?" + " , "  + " $searchStrings as xs:string* )  as xs:boolean { "
                     + "some $searchString in $searchStrings "
                    +  " satisfies contains($arg,$searchString)} ; ";
                 String myQuery101 = qryRk + "for $entity in collection('simpleExampleData2.dbxml')//filmography "
                      + "where functx:contains-any-of ( $entity/act/movie/title ,  ('planet', 'revenge', '1998'))"
                      + "return $entity";
    When I  execute the query  i  expect to get at least get the following element as mu output
                           Document : person_31000.xml:
                        <filmography>
                               <act>
                                     <movie>
                                     <title>prison planet 3 the revenge 1998
                                    </title>
                                    <year>1998
                                    </year>
                                   <character>evil ninja
                                   </character>
                                  </movie>
                               </act>
                             </filmography>
    However instead of the above element i got the  following Error
                                 Exception in thread "main" com.sleepycat.dbxml.XmlException: Error: Sequence does not match type xs:string? - the sequence contains more than one item [err:XPTY0004], <query>:1:343, errcode =               
                                  QUERY_EVALUATION_ERROR
                                      at com.sleepycat.dbxml.dbxml_javaJNI.XmlManager_query__SWIG_0(Native Method)
                                      at com.sleepycat.dbxml.XmlManager.query(XmlManager.java:544)
                                     at com.sleepycat.dbxml.XmlManager.query(XmlManager.java:320)
                                     at xmlirsystemstruxplus.XQueryEngine.queryEngine(XQueryEngine.java:269)
                                     at xmlirsystemstruxplus.XMLIRSystemStruXplus.main(XMLIRSystemStruXplus.java:109)
                                     Java Result: 1
        Note that i used  contains-any-of() function because the contains () function does not work with  'planet revenge 1998' string may be because the keywords do not appear in the order they appear in the element content.
       Please  can any body help me to find out  (1) why i have the  above error ? and solution  (2)  why  the condition contains  ( $entity/act/movie/title ,  'planet revenge 1998') is not working ? how do i use contains() function w.r.t this
    Thank you in advance
    Message was edited by: RokoA 19/01/2015  by RokoA

    Using the shell dbxml in both 2.5 and 6.0 I created a container and put the document example you gave into it.  Then I executed the following query:
    [code]
    declare namespace functx = 'http://www.functx.com';
    declare function functx:contains-any-of ( $arg as xs:string?, $searchStrings as xs:string* )  as xs:boolean {
    some $searchString in $searchStrings
    satisfies contains($arg,$searchString)
    for $entity in collection('simpleExampleData2.dbxml')//filmography
    where functx:contains-any-of ( $entity/act/movie/title ,  ('planet', 'revenge', '1998'))
    return $entity
    [/code]
    And got the results you expected instead of an error.
    Since you are using the Java API it is possible the problem is in how you configured and executed the query, instead of in the query itself.  If you could post an example program or code section that produces the error, then I can continue you help you with this.
    Lauren Foutz

  • Sequence Contains No Elements

    Hi Experts,
    I am new to SAP BPC and is in the process of self learning.
    I have created dimensions and a new model. Now I want to fill some master data from flat file to one of the dimensions. For this purpose I am opening the excel add-in and then trying to connect to my newly created model. But it is giving error "Sequence contains no elements". However I am able to connect to the standard models already existing in the system. Please help.
    Regards,
    Arun.

    Hi Firoz,
    Even I got the same issue. your solution solved my issue but
    What is the need of dummy members here ?
    cant we create with out dummy members ?

  • Sequence contains more than one matching element

    Hi
    I have checked all threads and none answers my issue.
    I am trying to drop a user and am following this blog:
    http://sanderstechnology.com/2013/login-and-user-management-in-sql-azure/12826/#.U46Hh_mSweo
    Below is a series of screen-shots of the issue. Please assist. Thanks, Mark.
    Mark

    Hello,
    Based on your descritpion, you create a SQL database with WEB edition and try to connect to the MASTER database from Windows Azure Management portal. But it is failed with "Sequence contains more than one matching element" occasionally.
    Due to the uncertainty and randomness factors, it requires higher level troubleshooting methods.I suggest you contact Windows Azure support team by creating a support ticket at 
    http://www.windowsazure.com/en-us/support/contact if you recevied this error again.
    As for drop login, it may caused by the premssion. In SQL databae, only server-level principal login (created by the provisioning process) or the credentials of an existing member of the "loginmanager" database role can manage logins. If you are not use
    a server-level principal login, please ask the adminstrator add the login to loginmanager databaserole:
    EXEC sp_addrolemember 'loginmanager', 'login-you-used';
    Reference:http://msdn.microsoft.com/en-us/library/azure/ee336235.aspx
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • Sequence contains more than one element error in MVC 5

    I created some models, added the migration and then did an update database operation, though at my last update database operation I got the error message saying:
        Sequence contains more than one element
    Below you can find my migration configuration:
            context.Categories.AddOrUpdate(p => p.CategoryName,
                new Category
                    CategoryName = "Sport"
                new Category
                    CategoryName = "Music"
            context.Subcategories.AddOrUpdate(p => p.SubcategoryName,
                new Subcategory
                    SubcategoryName = "Football"
                new Subcategory
                    SubcategoryName = "Basketball"
                new Subcategory
                    SubcategoryName = "Piano"
                new Subcategory
                    SubcategoryName = "Violin"
            context.Services.AddOrUpdate(p => p.ServiceType,
                new Service
                    ServiceType = "Football player",
                    Category = { CategoryName = "Sport" },
                    Subcategory = { SubcategoryName = "Football" }
                new Service 
                    ServiceType = "Piano lessons",
                    Category = { CategoryName = "Music" },
                    Subcategory = { SubcategoryName = "Piano" }
    The problem occurs with when I add new Services. I already have categories and subcategories, and if I do like Category = new Category { CategoryName = "Music" } then it works but I get Music entry twice in my database (for this example). I want to
    use the already added categories and subcategories. Below also you can find my models definitions.
    public class Category
        [Key]
        public int CategoryID { get; set; }
        public string CategoryName { get; set; }
    // Subcategory is defined the same way...
    public class Service
        public int ServiceID { get; set; }
        public string ServiceType { get; set; }
        public virtual Category Category { get; set; }
        public virtual Subcategory Subcategory { get; set; }
    }

    After reading the article in the link that you have provided, I did the following changes in my models, and created controllers for each of them using Entity Framework, then I created a migration and named it InitialServices. Afterwards, I added a few
    entries in my Configuration.cs file and when I typed Update-Database, I got an error message in package manager saying "RenameIndexOperation", which is marked with red. Below you can find my changed models and my Configuration.cs file, along with the migration
    file created automatically.
    Category.cs:
        public class Category
            [Key]
            public int CategoryID { get; set; }
            public string CategoryName { get; set; }
            public virtual ICollection<Subcategory> Subcategories { get; set; }
    Subcategory.cs:
        public class Subcategory
            [Key]
            public int SubcategoryID { get; set; }
            public string SubcategoryName { get; set; }
            [ForeignKey("Category")]
            public int CategoryID { get; set; }
            public virtual Category Category { get; set; }
            public virtual ICollection<Service> Services { get; set; }
    Service.cs:
        public class Service
            [Key]
            public int ServiceID { get; set; }
            [Required]
            [Display(Name="Service type")]
            public string ServiceType { get; set; }
            [ForeignKey("Subcategory")]
            public int SubcategoryID { get; set; }
            public int Count { get; set; }
            public virtual Subcategory Subcategory { get; set; }
    _InitialServices.cs:
        public partial class InitialServices : DbMigration
            public override void Up()
                DropForeignKey("dbo.Services", "Category_CategoryID", "dbo.Categories");
                DropIndex("dbo.Services", new[] { "Category_CategoryID" });
                RenameColumn(table: "dbo.Services", name: "Subcategory_SubcategoryID", newName: "SubcategoryID");
                RenameIndex(table: "dbo.Services", name: "IX_Subcategory_SubcategoryID", newName: "IX_SubcategoryID");
                AddColumn("dbo.Subcategories", "CategoryID", c => c.Int(nullable: false));
                CreateIndex("dbo.Subcategories", "CategoryID");
                AddForeignKey("dbo.Subcategories", "CategoryID", "dbo.Categories", "CategoryID", cascadeDelete: true);
                DropColumn("dbo.Services", "Category_CategoryID");
            public override void Down()
                AddColumn("dbo.Services", "Category_CategoryID", c => c.Int(nullable: false));
                DropForeignKey("dbo.Subcategories", "CategoryID", "dbo.Categories");
                DropIndex("dbo.Subcategories", new[] { "CategoryID" });
                DropColumn("dbo.Subcategories", "CategoryID");
                RenameIndex(table: "dbo.Services", name: "IX_SubcategoryID", newName: "IX_Subcategory_SubcategoryID");
                RenameColumn(table: "dbo.Services", name: "SubcategoryID", newName: "Subcategory_SubcategoryID");
                CreateIndex("dbo.Services", "Category_CategoryID");
                AddForeignKey("dbo.Services", "Category_CategoryID", "dbo.Categories", "CategoryID", cascadeDelete: true);
    Configuration.cs:
    protected override void Seed(Workfly.Models.ApplicationDbContext context)
                var categories = new List<Category>
                    new Category { CategoryName = "Sport" },
                    new Category { CategoryName = "Music" }
                categories.ForEach(c => context.Categories.AddOrUpdate(p => p.CategoryName, c));
                context.SaveChanges();
                var subcategories = new List<Subcategory>
                    new Subcategory { SubcategoryName = "Football", CategoryID = categories.Single(c => c.CategoryName == "Sport").CategoryID },
                    new Subcategory { SubcategoryName = "Basketball", CategoryID = categories.Single(c => c.CategoryName == "Sport").CategoryID },
                    new Subcategory { SubcategoryName = "Piano", CategoryID = categories.Single(c => c.CategoryName == "Music").CategoryID },
                    new Subcategory { SubcategoryName = "Violin", CategoryID = categories.Single(c => c.CategoryName == "Music").CategoryID }
                foreach (Subcategory s in subcategories)
                    var subcategoriesInDB = context.Subcategories.Where(c => c.Category.CategoryID == s.CategoryID).SingleOrDefault();
                    if (subcategoriesInDB == null)
                        context.Subcategories.Add(s);
                context.SaveChanges();
                var services = new List<Service>
                    new Service { ServiceType = "Football coach", SubcategoryID = subcategories.Single(s => s.SubcategoryName == "Football").SubcategoryID },
                    new Service { ServiceType = "Piano lessons", SubcategoryID = subcategories.Single(s => s.SubcategoryName == "Music").SubcategoryID }
                foreach (Service s in services)
                    var servicesInDB = context.Services.Where(t => t.Subcategory.SubcategoryID == s.SubcategoryID).SingleOrDefault();
                    if (servicesInDB == null)
                        context.Services.Add(s);
                context.SaveChanges();
            }

  • "The stylesheet does not contain a document element" error

    Hi,
    I'm using Hyperion Financial Management 11.1.1.3
    I successfully created intercompany transactions but when I select the "auto match" to perform the matching process, the running task page ensure that the process is completed successfully. However, when I press "log" I found the following error:
    Error Number:-2147467259
    Error Description:The stylesheet does not contain a document element. The stylesheet may be empty, or it may not be a well-formed XML document.
    Error Source:msxml6.dll
    Page On which Error Occurred:/hfm/Administration/ShowRunningTaskLog.asp
    My environment is win server 2003 on a VM and EPM 11.1.1.3
    Thank you and best regards,
    Ahmed.

    Hi taku,
    Yes I've solved my issue.
    Firstly, make sure that the entities and accounts used in the Intercompany Transaction are allowed for ICP in the metadata file by setting the attribute "IsICP=Y" to yes.
    Then, after you press the "Match" button, wait until the process finished and don't open the log. Just close the running task page, after the status showed that it is completed, and open the "process IC transactions" page again you will find the square sign becomes green which means that the transactions are matched.
    I followed the following example on Oracle by Example [http://www.oracle.com/technetwork/middleware/financial-management/tutorials/mictrans-094190.html?ssSourceSiteId=otncn]
    It's about "Managing Intercompany Transactions in Financial Management".
    I wish you can solve your issue soon.
    Best wishes,
    Ahmed.

  • TOAD error : Missing close tag in element Container.

    Hi ,
    when i try to open TOAD 8.6.1.0 fo oracle data base login ,
    It gives the error " Missing close tag in element Container", further i am not able to login and i have to forcefully kill the TOAD session , Please help me in this regard.
    Thanks & Rgds
    Ashok

    Hi;
    TOAD is a product from Quest,not from Oracle. It may be better you ask such a question in an appropriate TOAD forum:
    http://toadfororacle.com/index.jspa
    I totaly agree to Werner . You can post upper related link about your issue, by the way you can use Oracle sql_developer instread of toad.
    For more details please check:
    http://www.oracle.com/technology/products/database/sql_developer/index.html#news
    Regard
    Helios

  • Blu-ray error device error code "3" create sequence fail to write m25 file

    Continue to get this error message when outputting to blu-ray, can burn to dvd just fine. It seems I have experienced this issue in the past but don't recall how I resolved.
    tried re-saving to new file name.

    I found 3 other discussions... one of them may help
    Re: Blue ray Error -  "Device not ready", Code:"3", Notes -   Any ideas what this means?
    Blu-ray error: "device error", Code "3", Note: "AS_StorageError = -97064
    Blu-ray Error: "divide error", Code: "3", Note: "AS_StorageError = -97060

  • Version 4 Error: Expected Container, found Object Reference

    We're in the process of upgrading our sequences from 3.5 to
    4.0 and for the most part, everything is seamless.  However, there is one situation I’ve found
    that throws a RTE in 4.0 but works fine in 3.5. 
    When calling SetPropertyObject on an object reference, the following
    error is thrown:
    Parameter 'newValue': Expected Container, found Object Reference.
    -17308; Specified value does not have the expected type.
    Attached is a sequence snippet illustrating this
    behavior.  The last step should assign
    the variable in Parameters with the name in TempStr (“Fred” in this example) to
    the first element in the TraceObjRefs array (an array of object references).  
    What is really confounding is that this works as expected in
    3.5.  Any insight as to what changed or
    what’s the best way to work around this?
    Attachments:
    AliasBreak35.seq ‏46 KB

    We are seeing something similar in TS 4.1.
    We have a container with subproperties which are also containers (of the same type actually). Technically, this is an array, we are using the container to be able to address by name. When I extract one of the sub-properties either by GetPropertyObject or by GetNthSubproperty and then try to assign it to a container of the same type, I get the error "Expected container, found object reference".
    I attached a sequence with some experiments, using the NI_Limits type  and found a solution: the Evaluate method seems to actually copy the values from the source container to the target; but only when it is not called as "PropertyObject.Evaluate()" but stand alone.
    But I did not quite understand the mechanics of the aliases. In the sequence, I create an alias, as indicated in the previous posts. Then I can apparently not change that alias again. I used the "Data" member in the NI_Limits container to differentiate between the individual containers.
    After the second SetPropertyObject, the value stays the same as before. But when I then change the value in one of the source objects, the other changes with it.
    So I am not quite clear what an alias actually is and what its effects are.
    Regards
    Peter
    Attachments:
    TestObjRef.seq ‏6 KB

  • MAM Synchronization Error-Skip Container ID

    Hi All
    We have implemented MAM in one of the clients places.We are facing one issue which is troubling us for the last 2 months.
    Few devices are throwing an error when it is synchronized.Initially we thought that this error occured when the data cable got disconnected whenever the Sync was on.But now, it doesn't seem to be the reason.
    The error that we are getting is :
    Skip container ID <Device GUID> because container has wrong sequence number 998( Expected 1168)
    Skip container ID <Device GUID> because container has wrong sequence number 999( Expected 1168)
    Skip container ID <Device GUID> because container has wrong sequence number 1000( Expected 1168)
    Skip container ID <Device GUID> because container has wrong sequence number 1167( Expected 1168)
    When we check in Merep_mon, we find that there is no data with the sequence number 1168 in any of the Sync BO's.
    Also, we see few entries in 'O-waiting' in the Sync BO  "MAM30_031" which results in no sent data in Sync BO " MAM30_041".
    MI Server Details are:
    SAP_ABA     700     0014     SAPKA70014     Cross-Application Component
    SAP_BASIS     700     0014     SAPKB70014     SAP Basis Component
    PI_BASIS     2005_1_700     0014     SAPKIPYJ7E                          PI_BASIS 2005_1_700
    SAP_BW     700     0016     SAPKW70016     SAP NetWeaver BI 7.0
    Kindly Suggest.Thanks in advance.
    Regards, Obish Kumar
    Edited by: Obish Kumar on Sep 22, 2011 1:11 PM

    Hi,
    I'm not sure but check what the server "thinks" he needs to process for this device and what the device "sends" to the server as the next package to process. I think you'll see a lack in this sequence numbers.
    I think that changing this last seq.num. well procesed by the server with the number that you see in the error message will work.
    Regards.
    Joan Estruch.

  • Sequence does not match type document()

    Hi all,
    I am having a problem with building a query - maybe one of you can point out my mistake!
    First of all I have a sequence of nodes in the variable '$__mpqfEngineVar_13' which are built in a FLWOR using the following construct:
    <engine:document ID='{'NoID'}' recordNumber='{0.0}' Rank='{0.0}' Score='{$__mpqfEngineVar_8}'>{$__mpqfEngineVar_1}</engine:document>
    I am trying to filter out those which have a specific value in a descendant node (actually present inside the tree $__mpqfEngineVar_1 from above):
    $__mpqfEngineVar_15 := ($__mpqfEngineVar_13[/mpeg7:FamilyName = $__mpqfEngineVar_14])
    However I get the following error message:
    Sequence does not match type document() - found item of type element({urn:dimis:mpqfQueryEngine:schema:2009}document, {http://www.w3.org/2001/XMLSchema}untyped)
    If I use the following relative path instead (which is not an option since the path is user define) it actually works (notice the '*')....
    *//mpeg7:FamilyName
    Any ideas what I am doing wrong? Honestly I can't really see the semantic difference..
    Thanks for your help,
    Alex

    Hi Alex,
    The expression "//mpeg7:FamilyName" is an abbreviated XQuery step that expands to this:
    root() treat as document-node()/descendant-or-self::node()/mpeg7:FamilyNameThis shows you why you're getting an error about the root node not being a document node.
    I expect that the expression you really want is ".//mpeg7:FamilyName" - the "." prefix makes it a relative path rather than an absolute path.
    John

  • Error while burning dvd in pre 8.0 "device error-the target device isn't suitable for use."

    I am trying to burn a dvd in premiere elements 8.0 but after 96%  iam getting this error :
    "device error-the target device isn't suitable for use."
    I have tried all of these steps according to this link :http://kb2.adobe.com/cps/515/cpsid_51553.html.
    System configration :
    win vista 32 bit .
    Processor :Amd athlon 64 dual core 2.60 ghz .
    Ram :3 gb
    Graphic card :nvidia geforce 6150 se .
    Camcoder model number  :JVC gz-hm320.
    Format :.mts
    Frame size :1920/1080
    Frame  rate :29.97.
    Please look into this problem .
    Regards
    Manoj Khati

    This is a user to user forum, not Adobe support... YOU look into things, based on advice other users are able to give
    Things and Software to AVOID when authoring/burning a DVD
    Read all links/sub-links to create a "best" burned disc
    Start --> http://forums.adobe.com/thread/608660?tstart=0
    #2 has WHY Explained http://forums.adobe.com/thread/607390
    Plus a Microsoft note http://support.microsoft.com/kb/314060
    And another note http://support.microsoft.com/kb/982116

  • Error trying to backup photoshop elements 4.

    Error trying to backup photoshop elements 4.  Getting windows error:  unable to save all data for file b0000408.jpg  data lost  try to save this file elsewhere; 
    and getting photoshop error "error encountered while writing file"  and a bunch of numbers.
    I have backed up to this device without problems.

    Thank you for your reply.
    I have tried the backup multiple times and it crashes in different places each time - it seems.
    I did the select all and "ctrl W".  This did nothing.  Did you really mean "ctrl + W"?  Remember I have version 4.0.
    I was able to do a successful back up onto a drive that has none of my pictures on it.  Could this be the problem?  I have an external hard drive that I have been using for my backups which have been working just fine.  I recently started storing my pictures in my catalog on this external hard drive.  Since then, I have not been able to back up to that drive.  Nor have I been able to back up to any other drive that has pictures on it.

  • Device Error

    I'm getting constant error message when attempting to burn a DVD.
    "Device Error: Target device isn't suitable for use"
    The Burner is a LG DVD drive, and works well with other applications, however Premiere Elements 8.0 doesn't seem to like it.
    I'm able to use drive to burn from within Windows 7 (data files for backup), Windows Movie Maker etc.
    Anyone else have this problem? Any solutions?
    Thanks,
    Gene N.

    Gene,
    Welcome to the forum.
    It is more likely that PrE does not like some other burning software, that is installed. This ARTICLE will give you things to look at and for.
    PrE looks for the burner at the OS-level, and if some other program has hooked it at bootup, and reported to the OS that it is, say a removable HDD, then PrE cannot use it.
    One workaround, if one needs that other software, is to Burn to Folder, and then use a burning utility, like the great, free ImgBurn, to do the physical burn.
    Good luck,
    Hunt

Maybe you are looking for

  • Problem importing text file with null value

    I used the following codes to import a text file and it worked perfectly. However, it skipped the TAB (chr(9)) on the imported row when there is no data (empty string) in one of the columns. Can someone help? thanks! sample text file data: 00001 desc

  • Cant't use scanner after upgrading to Windows 8.1 Pro

    I recently bought a new laptop that came with Windows 8.1 Pro.  I downloaded and installed the print drivers for my Laserjet 3055 and the printer works fine.  Windows Fax and Scan can not see the scanner.  I also installed the Printer and Scanner doc

  • Flex custom style (skin)

    Hello. How can I modify standart style of progress bar controll?

  • APEx reports - Groups

    Hi, I have the following requirement to do either in classing or IR report. Please help. Here is my queries output 5     John Smith     HRA     HR Concepts     01/01/12     12/28/12     5421100001     Y     Y 5     John Smith     HRA     HR Concepts 

  • TIF vs EPS: Commercial printing standard

    I just started reviewing the Learning Photoshop CS4 Videos on Adobe TV, Specifically: 11 Saving and file formats. The person says something which surprised me when referring to file formats to save to... he referred to TIF format as the Commercial Pr