UDP write causes generic error

Hi,
I have a test system made out of cFP-2210 and some modules. Test System is a stand alone but it should also be controlled with PC. Test system should send a short UDP message to all 139.0.0.* adresses (port 12343) when it has loaded some sequence, but writing to 139.0.0.255 address causes error 42. If I change it to write directly to my PC's ethernet card(ip 139.0.0.3), sending works fine(sender picture). Anyone have any idea why? Is there some fixed limit that cfp can write to at the same time?
Or can it cause some problems that cfp's own ip is 139.0.0.30?
My firewall does not show any traffic in those ports I have used, even when the UDP writing is succeeded. In other ports do have a lot of action (mainly ports 5000 and 6000). And there is not any firewalls blocking traffic.
  this the receiver on PC
 and this is the sender on cFP when working. When I change the ip to 139.0.0.255, it does not work.
Thanks for replies,
Mika

And I forgot to say that I am using Labview RT 8.5.1

Similar Messages

  • PremierePro PC 8.2.0 (65) replace footage causes error "The importer reported a generic error"

    Hi there
    I tried everything multiple PC's and windows installs, goggled every support site available for answers to no avail so far.
    The following is tested on a brand new and untampered win8 install (all win8 updates included)
    Trail and fully updated versions of Premier Pro 8.2.0 (65) and AE 13.2.0.49 are the only two programs installed on to the PC.
    The problem.
    Create a new project in Premiere Pro
    I make a single sequence
    Add a single Black video item to the sequence
    Now pick the black video item in the Premiere project Bin area, right click it and choose  "Replace footage"
    Then the browser opens and I pick a After effect project file (.aep) that I prepared earlier.(the most simple AE project file I can make, consisting of a single Comp with a shape drawing in it)
    When I click the Select button to confirm my choice of .aep file a window immediately opens that says "The importer reported a generic error".
    Next I am back in the PP bin and the black video item has turned "off line".
    This option / featured executed in the 100% similar way works as expected without errors in an old CC6 setup.
    Please help as the this is an very useful feature that needs to be fixed/work.
    Thank you
    ============================================
    Duplicate post removed by moderator. Please do not double post. If a thread has not received a reply after a reasonable period, feel free to "bump" it.

    No key frames what so ever.
    The AE project I refer to, only involves a standard hdtv 720p comp with a text element or a simple shape drawn. (Actually I am pretty certain that an empty comp will yield the same result)
    The problem is consistent no matter if it's the most simple AE project I can possible make or a complexed project with many comps in it.
    Personally, I am pretty sure the potential bug is isolated in PP and has nothing to do with AE. The reason why I believe so, is that when I try to pick large AE project the error message pops up much quicker than the time it takes to loads and analyze the AE .aep file.
    Please before you go, can you tell me wether or not you get the same result when doing a simple test as I described in a somewhat similar set up.
    And please pass the information on to the developer team. (I have already written a bug report) but I am desperate for a quick fix to this issue, so any help bringing their attention to the problem is much appreciated.
    Thank you and enjoy the holidays

  • Cause of "unable to write to disk error"

    Using a epson perfection v100 scanner and keep getting an unable to write to disk error after it  scan and will not copy.   Any ideas about what to try to fix this? thank you..
    p.s. using snow leopard and I have already tried to re-dowload software off the epson site.

    Have you tried...
    Trashing preferences?
    Run Disk Utility?
    Instead of control-clicking on the drive, try control-clicking on the Capture Scratch folder and the project Subfolder and changing permissions.

  • UDP Close resulting in Error 1

    Hello,
    I'm creating a UDP connection, writing and reading data from that connection, but get Error 1 when I close that connection.  A post similar to this (http://forums.ni.com/t5/LabVIEW/UDP-close-causing-error-1/td-p/355173) suggested using shift registers for the connection ID, which I have done to no avail.  I've attached my VI for reference. Any suggestions?
     

    Crossrulz: That's next on my list if there's no other options to try since it takes forever to get into that error condition, and I'll have to sit there and stare at it.
    Altenbach: The subvi originally only cleared out the timeout error, but I added in to clear out error 1 while trying to work on this problem. It kinda appears that way, except the error message always pointed at UDP close as the vi that caused the error.
    Yes, it appears to work fine now when I constantly clear the error.
    I don't believe this to be the case since the initial write/read in the loop would have been unsuccessful, and the error message I received would indicate that this error occured during one of those steps and not at close.
    Running a long test, so I can't stop it and revert to get the exact error message, but it basically said "Error 1 at UDP Close.vi.  Input paramter invalid" or something along those lines.  When I get the chance I'll try to get the exact error message.
    The IP address is set through user input, but is set to a default value if there is no user input. This value is not changed during the duration the program is ran. If it was malformed, wouldn't the initial UDP open have a problem? If that's the case, that shouldn't be the problem since the program runs fine for a period of time before encoutering the error.
    Ah, you are absoultely right.  Looks nicer too. Thanks!

  • A view, function and TO_DATE causing an error.

    I have the following statement which calls a view, VW_DIST_RPT_WORK_LIST which in turn calls a function which returns either 'Null' or a date string e.g. '07 Oct 2003' as a VARCHAR2 (alias PROJECTED_DELIVERY_DATE).
    Statement:
    SELECT CUSTOMER_NAME, PROTOCOL_REFERENCE, SHIPPING_REFERENCE, CUSTOMER_REFERENCE, COUNTRY, PROJECTED_DELIVERY_DATE, STATUS, NOTES,
    TO_DATE(PROJECTED_DELIVERY_DATE)
    FROM VW_DIST_RPT_WORK_LIST
    WHERE EXPECTED_DESP_DT IS NOT NULL
    AND UPPER(PROJECTED_DELIVERY_DATE) NOT LIKE('NULL%')
    AND EXPECTED_DESP_DT <= TO_DATE('07/10/2003', 'DD/MM/YYYY')
    AND TO_DATE(PROJECTED_DELIVERY_DATE) <= TO_DATE('31/12/2003', 'DD/MM/YYYY') --< Problem here
    I need to be able to specify a date filter on the PROJECTED_DELIVERY_DATE field and hence used the TO_DATE(PROJECTED_DELIVERY_DATE) <= TO_DATE('31/12/2003', 'DD/MM/YYYY') but this is generating an ORA-01858: a non-numeric character was found where a numeric character was expected.
    I think the problem lies with the fact that this field can contain 'Null' which cannot be converted to a date using TO_DATE. I've tried adding a NOT LIKE ('NULL%') statement to catch any nulls which may be creeping in bu this doesn't solve the problem.
    I've added TO_DATE(PROJECTED_DELIVERY_DATE) to the select above to determine if the nulls are being caught and if the TO_DATE in performing the conversion correctly which it is on both counts.
    Any ideas anyone ?

    The answer provided above by Monika will work for this situation. However, you should seriously think whether you should be using a string for date datatype. Ideally, you should rewrite the function that returns PROJECTED_DELIVERY_DATE and change the return type to DATE. The least you should do is to return NULL (instead of the string 'NULL') from the function. Oracle handles nulls perfectly, there is no reason you should write code to handle nulls;
    One more thing. Looking at the type of error you are receiving, it seems that you are using rule based optimizer. Why do I think so? Because, in rule based optimizer, the conditions are evaluated in a specific order (viz, bottoms-up for AND clauses). To show this, look at the following simple demonstration. I did this in Oracle 8.1.6 (also in 9.2.0.4.0 on Windows).
    -- Check the database version
    select * from v$version;
    BANNER
    Oracle8i Enterprise Edition Release 8.1.6.1.0 - Production
    PL/SQL Release 8.1.6.1.0 - Production
    CORE 8.1.6.0.0 Production
    TNS for Solaris: Version 8.1.6.0.0 - Production
    NLSRTL Version 3.4.0.0.0 - Production
    -- Create the test table
    create table test (a number(2));
    insert into test(a) values (0);
    insert into test(a) values (1);
    insert into test(a) values (2);
    insert into test(a) values (3);
    insert into test(a) values (4);
    insert into test(a) values (5);
    insert into test(a) values (6);
    insert into test(a) values (7);
    commit;
    -- See that I have not analyzed the table. This will make use of RULE based optimizer
    select * from test
    where a > 0
    and 1/a < .25;
    and 1/a < .25
    ERROR at line 3:
    ORA-01476: divisor is equal to zero
    -- Look at the query clause. Even though I specifically asked for records where a is positive
    -- the evaluation path of rule based optimizer started at the bottom and as it evaluated the
    -- first row with a=0, and caused an error.
    -- Now look at the query below. I just re-arranged the conditions so that a > 0 is evaluated
    -- first. As a result, the row with a=0 is ignored and the query executes without any problem.
    select * from test
    where 1/a < .25
    and a > 0;
    A
    5
    6
    7
    -- Now I analyze the table to create statistics. This will make the query use the
    -- cost based optimizer (since optimizer goal is set to CHOOSE)
    analyze table test compute statistics;
    Table analyzed.
    -- Now I issue the erring query. See it executes without any problem. This indicates that
    -- the cost based optimizer was intelligent enough to evaluate the proper path instead of
    -- looking only at the syntax.
    select * from test
    where a > 0
    and 1/a < .25;
    A
    5
    6
    7
    Does the above example seem familiar to your case? Even though you had the AND UPPER(PROJECTED_DELIVERY_DATE) NOT LIKE('NULL%') in your query, a record with PROJECTED_DELIVERY_DATE = 'NULL' was evaluated first and that caused the error.
    Summary
    1. Use dates for dates and strings for strings
    2. Use cost based optimizer
    Thanks
    Suman

  • GDI+ Generic Error, multple frame tiff, multiple image formats

    This is a question I posted on stack exchange, but have not gotten any answers.  This is occurring on Windows Server 2008 R2 systems.
    I have seen many issues involving the GDI+ Generic Error, but I have not seen this particular matter raised before. We are consistently getting the error, on Windows systems other than Windows 8, when attempting to read (System.Drawing.Image.SelectActiveFrame)
    a multiple-frame tiff that includes frames in mixed Photometric Interpretation formats. That is to say, the file includes both RGB color and min-is-white formats, with corresponding differences in the Bits/Sample and Samples/Pixel frame parameters. The error
    is consistently raising as soon as a frame is encountered with a format that is different from that of the first frame.
    // Convert File from .tiff to .PDF
    static void ConvertFile(string file, string pdffilename)
    string localMessage = string.Empty;
    try
    //if it's a PDF Just renamed it and continue
    if (file.ToLower().Contains(".pdf"))
    File.Copy(file, pdffilename);
    return;
    // If file exists return
    if (File.Exists(pdffilename)) { return; }
    using (var stream = new FileStream(pdffilename, FileMode.Create))
    localMessage = "01";
    var document = new iTextSharp.text.Document();
    localMessage = "01";
    var writer = iTextSharp.text.pdf.PdfWriter.GetInstance(document, stream);
    localMessage = "02";
    var bm = Bitmap.FromFile(file);
    localMessage = "03";
    var total = bm.GetFrameCount(FrameDimension.Page);
    localMessage = "04";
    document.Open();
    //iTextSharp.text.pdf.PdfContentByte cb = writer.DirectContent;
    localMessage = "05";
    iTextSharp.text.Image img = null;
    for (var currentframe = 0; currentframe < total; ++currentframe)
    localMessage = "06=>" + currentframe.ToString();
    bm.SelectActiveFrame(FrameDimension.Page, currentframe);
    localMessage = "07=>" + currentframe.ToString();
    img = iTextSharp.text.Image.GetInstance(bm, ImageFormat.Bmp);
    localMessage = "08=>" + currentframe.ToString();
    img.ScalePercent(72f / img.DpiX * 100);
    localMessage = "09=>" + currentframe.ToString();
    img.SetAbsolutePosition(0, 0);
    localMessage = "10=>" + currentframe.ToString();
    iTextSharp.text.Rectangle pageRect = new iTextSharp.text.Rectangle(0, 0, img.ScaledWidth, img.ScaledHeight);
    localMessage = "11=>" + currentframe.ToString();
    document.SetPageSize(pageRect);
    localMessage = "12=>" + currentframe.ToString();
    document.NewPage();
    localMessage = "13=>" + currentframe.ToString();
    document.Add(img);
    localMessage = "14";
    bm.Dispose();
    localMessage = "15";
    document.Close();
    localMessage = "16";
    stream.Close();
    catch (Exception exception)
    string msg = exception.Message + "\r\n" +
    "Coversion Error--\r\n" +
    "\tinput file name: " + file + "\r\n" +
    "\toutput file name: " + pdffilename + "\r\n" +
    "\tlocal message" + localMessage + "\r\n";
    Console.WriteLine(msg);
    SaveError(msg);
    throw;
    The "local message" is always "06=>n", where n is the 0-based index of the frame that transitions to a new format.
    The error occurs whether the transition is from black and white to color, or color to black and white.  The issue does not seem to occur on Windows 8 boxes, but we only have W8 developer PCs, not servers.  It is a production process and needs to
    be deployed on a server.
    Does anyone know why this is happening or how to fix it?

    Hi,
    For the GDI related issue, i think you may ask in the following forums:
    http://forums.asp.net/150.aspx/1?System+Drawing+GDI+
    Thanks for your understanding.
    Regards.
    Vivian Wang

  • ExternalException was unhandled : A generic error occurred in GDI+.

    I am try to save this bitmap as jpg file for every 5 sec. It works fine at another application, before I move this method to another app. The error message shows ExternalException was unhandled : A generic error occurred in GDI+. I do not know if
    it is write permission issure or anything else. Since I use same computer and try to save at same file path, the error message keep going. I think I need help.
    The error code:
    public void captureScreen()
    bmpScreenshot = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
    Debug.WriteLine("width:{0}, height:{1}", Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
    gfxScreenshot = Graphics.FromImage(bmpScreenshot);
    gfxScreenshot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy);
    //Save the screenshot to the specified path that the user has chosen
    i++;
    string i1 = Convert.ToString(i);
    string name = "good" + i1 + ".jpg";
    ImageCodecInfo jpg = GetEncoder(ImageFormat.Jpeg);
    System.Drawing.Imaging.Encoder myEncoder = System.Drawing.Imaging.Encoder.Quality;
    EncoderParameters myEncoderParameters = new EncoderParameters(1);
    EncoderParameter myEncoderParameter = new EncoderParameter(myEncoder,
    50L);
    myEncoderParameters.Param[0] = myEncoderParameter;
    bmpScreenshot.Save(name, jpg,
    myEncoderParameters);
    Bitmap bitmap = new Bitmap(name);
    System.Drawing.Image image = (System.Drawing.Image)bitmap;
    The error shows here:
    bmpScreenshot.Save(name, jpg,
    myEncoderParameters);
    And Only alow me save one jpg, then pop up error

    Hi
    Since I can't reproduce your issue with some
    undefined code.
    Just take a look at from
    Graphics.FromImage Method
      in MSDN  document.
    You should always call the Dispose method to release the
    Graphics and related resources created by the
    FromImage method.  Please try and test it again.
    If still can't resolve, please post the complete code.  Thanks.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Report not rendering charts in pdf (A generic error occurred in GDI+)

    I've found the following exception stack trace in the Report Server log:
    ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: , Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: A generic error occurred in GDI+. ---> System.Runtime.InteropServices.ExternalException:
    A generic error occurred in GDI+.
       at System.Drawing.Image.Save(Stream stream, ImageCodecInfo encoder, EncoderParameters encoderParams)
       at Microsoft.Reporting.Chart.WebForms.Chart.Save(Stream imageStream, ChartImageFormat format)
       at Microsoft.ReportingServices.OnDemandReportRendering.ChartMapper.GetImage(ImageType imageType)
       --- End of inner exception stack trace ---;
    I've got no idea what this is, any help would be appreciated. I don't know what could potentially cause this, so I don't even know how to start looking for a fix.
    Other info:
    SSRS 2012 BI
    Win Server 2008 R2 (Running on Hyper-V)
    The pdf report(s) renders and is saved to the location it is meant to, but devoid of any charts. A data driven subscription controls the rendering.

    Hi,
    This is a known issue with Windows GDI+. To resolve the issue, please install the hotfix for youR Windows Server 2008 R2 from:
    http://support.microsoft.com/kb/2495074
    Regards,
    Mike Yin
    TechNet Community Support

  • Bitmap.Save 'A generic error occurred in GDI+'

    Hello All,
    I was just going to play around by generating some bitmaps programatically.
    I started off with this simple example, expecting everything to go smoothly, but have run into a strange error.
    The following code is by no means good, just something simple and complete I would expect to work:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    namespace BitmapOutput
        public partial class Form1 : Form
            /// <summary>
            /// The picture i am drawing
            /// </summary>
            System.Drawing.Bitmap myBitmap;
            /// <summary>
            /// Graphics object for drawing
            /// </summary>
            System.Drawing.Graphics myGrafx;
            public Form1()
                InitializeComponent();
                this.myBitmap = new Bitmap(800, 600);
                this.myGrafx =                 System.Drawing.Graphics.FromImage(this.myBitmap);
                this.DrawPicture();
                this.ShowPicture();
                this.SavePicture();
            public void DrawPicture()
                this.myGrafx.DrawEllipse(
                    new Pen(System.Drawing.Color.AliceBlue),                 new Rectangle(0, 0, 100, 100));
            public void ShowPicture()
                this.pictureBox1.Image = this.myBitmap;
            public void SavePicture()
                this.myBitmap.Save("Output\\out.bmp" ,                    System.Drawing.Imaging.ImageFormat.Bmp );
    This runs fine until the SavePicture(...) function is called.
    I get the exception:
    "A generic error occurred in GDI+."
    at the this.myBitmap.Save(...); line.
    Most likely there is some detail that I have overlooked, and I appreciate it if anyone could point out to me what I could do to fix it.
    But, I'd like to think that this code would work, it makes sense, and requires little effort, that should be one of the goals of .net
    Any help or ideas are greatly appreciated!
    P.S. how do I use 'code' tags?

    Actually, the fix is to properly dispose of your objects in order.  This is one advantage of C#, with the using() syntax:
    // new image with transparent Alpha layer
    using (var bitmap = new Bitmap(330, 18, PixelFormat.Format32bppArgb))
    using (var graphics = Graphics.FromImage(bitmap))
    // add some anti-aliasing
    graphics.SmoothingMode = SmoothingMode.AntiAlias;
    using (var font = new Font("Arial", 14.0f, GraphicsUnit.Pixel))
    using (var brush = new SolidBrush(Color.White))
    // draw it
    graphics.DrawString(user.Email, font, brush, 0, 0);
    // setup the response
    Response.Clear();
    Response.ContentType = "image/png";
    Response.BufferOutput = true;
    // write it to the output stream
    bitmap.Save(Response.OutputStream, ImageFormat.Png);
    Response.Flush();
    Notice how I dispose (end the using) of the graphics parameter, before I save it?  You don't have to use the using() statements, just call Dispose() at the end of the scope I show above.
    I ran into this problem today on Azure (works locally in the cloud, just an Azure 1.3 thing!), and I saw the link to the blog post above.  That was a good link, as it pointed me in the direction of disposing the graphics earlier.
    But, there is no point of increasing hte memory usage of two bitmaps if you dispose of your graphics properly before saving.
    http://eduncan911.com

  • Application Builder comes up with generic error #42

    Building a large application that has previously built without a problem in LabVIEW 2009 SP1. 
      The error message returned is -
    "Error 42 occurred at D:\EMSolutions\Automation\PTMP\System Measurement Functions\System Measurements.llb\PTMP - Tx Performance.vi
    Possible reason(s):
    LabVIEW:  Generic error."
    Would appreciate some clues as to what might cause this error.
    Herbert Niesler

    Have had it happen to me again and managed to play around a bit and found the following -
    1.  The error 42 occurs in relation to a Start Up vi (I have multiple startup vi's in this project).  Doesn't happen to any other vi.
    2.  If I remove the offending vi from the project, the error 42 then occurs on another startup vi.
    3.  Putting that vi back in and making it a startup vi again triggers the problem with that vi.
    4.  Then I opened the offending startup vi (note that the project was compiled with all startup vi's closed).  On building the application the error 42 occurred on another startup vi (the same vi as happend in 2.).
    5.  When I opened this 2nd offending vi and did a build, I had success.
    Now I realise I have not seen the problem before because I usually did a build with all the startup vi's open.  Its only recently that I have started doing builds with all front panels closed.
    So advice at this stage is - open the front panels of your startup vi's and that should get rid of the error 42.
    Herbert Niesler

  • UDP with cRIO and error 113

    Hi all,
    i'm using the UDP protocol to exchange information between a PC and a cRIO; the first is the master, the second is the slave.
    In the cRIO i developed a piece of code in order to realize a loopback, so that the message sent from the PC is sent back to the PC itself as it has been received, without any modification.
    First, i tried sending a short message (100 B) from the PC to the cRIO; in this case, no problem at all
    Then, i tried sending a long message (20 kB) from the PC to the cRIO; in the cRIO code, the error number 113 was raised when trying to send back the message to the PC (calling the UDP write function)
    What can be the origin of the different behaviour between the PC and the cRIO? Seems to be a question of buffer size... Can it be dependent of the OS? How can i increase it in the cRIO?
    Thanks!
    aRCo

    Hi aRCo,
    According to Wikipedia (https://en.wikipedia.org/wiki/User_Datagram_Protoc​ol), the max. theoretical limit for a UDP datagram is 8 bytes for header + 65,527 bytes of data (65,535 bytes in total). However, "the practical limit for the data length which is imposed by the underlying IPv4 protocol is 65,507 bytes (65,535 − 8 byte UDP header − 20 byte IP header)". The wiki article goes on to say that larger packets are possible with Jumbograms.
    As for the NI documented limits of 8K, this would appear to be a LabVIEW-imposed limitation. (Perhaps this was related to an earlier limitation of the UDP protocol that has since been upgraded. If I recall correctly, the Windows version of LabVIEW also had this 8K limitation in the past.)
    Perhaps NI relaxed this limit, or maybe you have jumbo packets enabled on youir PC, and this is allowing more throughput (-- of course both of these possibilities are only speculation on my part).
    In any event, if you limit the UDP packet size to the documented 8K limitation, your code should probably be fine across all LV platforms. (How's that for stating the obvious..?)
    Anyway, good luck with your application.
    -- Dave
    www.movimed.com - Custom Imaging Solutions

  • Generic error VOB files

    I have recently copied videos onto a sony DVD recorder and from there, burnt them onto a DVD in VOB format. From the DVDs. I have transferred them onto a laptop. The problem is, when i attempt to import them into adobe premiere elements 12 the first 2 VOB files give a "generic error". Here is the full error:
    VIDEO_TS.VOB
    VTS_01_1.VOB
    The importer reported a generic error.
    I believe that this may be caused by the menu in the files as they both have a blue video selection menu.
    Is there any other way to import these files because they contain the first few minutes of our films!

    vwsprocket
    Thanks for the additional details.
    After all the steps from source to Premiere Elements, it is interesting to note that you say your only problem is a few seconds of missing footage which you believe is in the VTS_01_1.VOB video file.
    From my perspective, the VIDEO_RM here and often the Audio_TS are useless Folders. It is those video files in the VIDEO_TS Folder that are of consequence.
    I found this informative article on VIDEO_RM and its possible shortcomings.
    VIDEO_RM - AfterDawn: Glossary of technology terms & acronyms
    Could you compile the following information?
    Are you using Add Media/Files and Folders/....assuming for now, yes
    When you go to Premiere Elements Add Media/Files and Folders, what are the specific names of all the files that you ask the Add Media to gather?
    Right now I would like to know details on the etc when you wrote
    - VTS_01_1.VOB
    - VTS_01_2.VOB
    ect...
    My target is only VIDEO_TS Folder and its video files. The VIDEO_RM Folder and its contents are of no consequence in this import.
    There are instances where the significant video files start in the group VTS_02_1 VOB and not VTS_01_1.VOB. Therefore, if you have not already, I need for you to check out the contents of each of those video files for content and sequence of content.
    But backing up a little, what happens if you take the DVD-VIDEO on DVD you produced (before you copied anything to the laptop) and insert that DVD disc into the burner tray and open Premiere Elements Add Media/DVD camera and computer hard drive/Video Importer and just selected the VTS_01_1.VOB and its files in the series of 0.99 GB files? Have you been there and done that?
    I do not want to distract from the above, but I will note that I will address the matter of an Audio_TS Folder. That is an easy one to address if it is absolutely necessary to have. Typically, nothing needs to be in the Audio_TS Folder. An empty Audio_TS Folder seems to meet some sort of compatibility matter between disc and player.
    Please review. I want to make sure that we are in sync on the troubleshooting information.
    Thank you.
    ATR

  • Getting 'generic error' when trying to 'add media'

    Working with a brand new Surface Pro 2.  New user of Premier Elements 12.  Cannot get 'Add Media' to work.  Getting an error message of 'add media error - generic error'.
    Media is on a Kodak Z981 with a file type of .MOV.
    I am thinking that there is some simple error that is preventing me from 'adding media'.
    What is it?

    Welcome to the forum.
    Do you have the latest version of Apple's QuickTime Player installed?
    If one does not, that can cause a Generic Error, upon Import.
    Good luck,
    Hunt

  • Attempted to read or write protected memory error on reportdocument.load

    Reportdocument.load causes "System.AccessViolationException: Attempted to read or write protected memory" error.
    The error is not consistent. Sometimes a report will print. Sometimes a report will error.
    I am at a loss as to what to try.
    I have uninstall the app, reinstalled the app, uninstall and reinstalled .NET frameworks, Visual C++ runtime, etc.,
    reworked the code to try to capture the error. Nothing helps. Application crashes with Unhandled exception.
    Attempted to read or write to protected memory.
    Has anyone been able to resolve this issue?

    Hi Mary,
    What happens if you set your project to use 4.0 framework?
    Anything else in the Event Viewer to show an access violation?
    Have you tried updating the printer driver to one that is supported in the Framework? I find most legacy printers tend to use the old DEVMODE structure and not the Framework. Try using the printer off the Window CD rather than the Manufacturers driver.
    Is your app doing "Report Bursting"? In other words sending multiple reports one right after the other with no time between?
    Are you using any legacy UFL's? Try renaming u2lcom.dll if you are not using them. If you do you'll get an error in formula.
    Are you using try/catch in your code around each CR API? It may catch something more for you also.
    AND, can you try a C# project, some thing very simple also. I've of issues in VS VB that do not show up in other dev languages. Neither Microsoft or SAP can figure out what the cause is.
    Thank you
    Don
    Edited by: Don Williams on Feb 11, 2011 2:34 PM

  • UDP Write

    I am trying to send flattened data of images through UDP in a wireless network of sizes of around 8000 bytes. After sending around 50 frames , the UDP write gets stuck. It doesnt return error and it doesnt even time out (I have 10 sec time out time).
    Is it because of the size of data?

    Hi aman,
    I was actually looking for the how much of the processer LabVIEW is using not
    how much memory.  If you take a look at
    the image below I need the number highlighted. 
    I need this information for while the VI is locked up and while your
    computer is idle.  This will help me know
    if the VI is completely using your computers resources or if maybe it has stopped
    executing.  It would also be good to know
    what version of LabVIEW you have and what you are trying to communicate with.
    Is the communication going over a network or to another computer through a
    crossover cable?  How reliable is this
    issue?  In words does it happen every
    time you run it or will it sometimes work and sometimes not?
    Adam H
    National Instruments
    Applications Engineer

Maybe you are looking for

  • How to delete the short dump list in st22

    Hi all,           i want to clear the runtime error list in ST22. How to clear the list of short dump in ST22. is there any T.code kindly suggest thanks in advance Sundar.c

  • Cut the rope

    Hi. I am using nokia 500. When will cut the rope game available for this device?. After fruit ninja it was written in some websites that cut the rope will soon come for nokia 500. Please tell me the release date.

  • Atomic block of code in SwingWorker thread?

    Hi, I am coding a Swing application. It has a SwingWorker thread that can be interrupted by a Progress bar. Inside the worker thread, there are a few lines of code (not a method) that should be executed all or none. In another word, if the thread run

  • EL Expression questions

    Hi, I have two questions on the El Expression in the JSF: 1)Can anyone link a El Expression (for JSF) references page? 2)Can I use a El Expression (like the ternary selection operator) in action attributes or in actionListener or valueListener attrib

  • BW Production supporting issues documents

    Hi Respected members.  At present i am working as a B.W.Consultant in implementation. This is my first project once the project is live my company is including me in the supporting team.  I dont have experience in B.W Supporting.  Can anybody help me