What is an input file

trying to access peace fm manchester and keep getting message no input file specified can anyone tell me how i do this

Hi @mariejoe ,
Thank you for visiting the HP Support Forums and Welcome. I have read about your HP Notebook displaying No input file specified while trying to get to Peace Fm Radio. Here is a link that might work.
Looks like there is a plugin that is needed.
Are you able to play a CD?
I would be happy to assist if needed as there are many models of HP Notebooks, I would need the model number.
How Do I Find My Model Number or Product Number?
Please respond with which Operating System you are running:
Which Windows Operating System am I running?
Please let me know.
Thanks.
Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Similar Messages

  • Metagen is skipped sometimes complaining because all output files are up-to-date with respect to the input files

    Hi,
    In one of my dll (VS2010), the process Skipping target "MetaGen" because all output files are up-to-date with respect to the input files.
    it is at  random.  I have checked the time stamps of the dll and metagen.write.1.tlog both having the time stamp on the failed build.  But all files in release folder did not have the same time.  They are one hour earlier than the dll
    and the  metagen.write.1.tlog.
    On the good build  it said the input file is is newer than output file ".\Release\\metagen.write.1.tlog" and allfiles in the release folder have same time stamp.
    Any clue to solve this ?
    Regards,

    Hi,
    Based on your post, I am not very clear about your issue. I feel your issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
     Could you please provide us more information so that we resolve your issue better?
    What type of project are you working with? C++ MFC project?
    How was the
    metagen.write.1.tlog file generated in your project?
    What error messages did you get?
    What is the 'input file'?
    If possible, please provide us a sample project to reproduce your issue.
    Thanks,
    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.

  • Doubt regrading Bath Input File

    Hi ,
    I have requirement something like that:
    -Select of releavant Items
    -Process MB04 on the selected items
    -Collect errorneous records in batch input file
    -Display  results
    Can you please let me know that <i>Collect errorneous records <b>in batch input file</b></i>
    I don't understand <b>what is batch input file</b> and how here I ensure that I have to do Call transaction or Session method.
    As per my understanding I should do <b>Call transaction MB04</b> to post the data and if there is error record <b>create the session</b> and do the<b> bdc_Insert</b> so all error records will be stored in the session.But i not sure about this.
    Thanks
    PK

    Hi,
      In Sesssion method, u no need to worry about the error records in the input file SM35 will take care of it,so u have to run the BDC by Call Transaction Only to display the errors in the output at SE38 level.
    First Declare an internal table of the same structure as ur input file to capture Error records (eg.IT_ERROR)
    In the Call transaction, when the Sy-Subrc is NE 0 mean the record is an Error record, so simply append that record to IT_ERROR.
    at last u display IT_ERROR data as error records, better if u maintain the index of the record also which give more accurate error record in the input file,
    regards
    ganesh

  • What does Java do with the input file?

    Hello everyone --
    I have a freaky Java problem. I'm running a program that takes an input file, reads it one line at a time, and determines whether the info I'm looking for is contained in it or not. For each line it reads, it decides if that line is good or bad, and broadcasts the findings in a System.out.println(). Every line gets one. When I run the program, I redirect the output to a log file. What's going on when the input file is 13000+ lines long and the log file is only 2500 lines long? This is tweakin' me out.
    Thanks for the advice,
    -Kwj.

    Here's what I have:
    boolean isGood = true;
    int count = 1;
    while((line = in.readLine()) != null)
    if (/*some condition is met*/)
    {*do some stuff*/}
    else
    isGood = false;
    System.out.println("***" + line);
    if (isGood)
    /*do some more stuff*/
    System.out.println(count + ". " + line)
    count++;
    }//process all lines
    As far as I can tell, I have every line accounted for in the else statement or the last if statement. If the line doesn't meet the req., it doesn't get to go on to the last if processing. All the good ones get processed. I think.

  • What is the use for the input file name?

    Some of Livecycle function need inputfilename besides the document object, such as following. The document object already give as a input parameter, why still need inputfilename? Actually I use some other dummy name that is different from the physical file name, it still works. So just do not get it why need input file name parameter in some Adobe LiveCycle class functions?
    CreatePDFResult createPDF(Document inDoc, String inputFileName, String pdfSettings, String securitySettings, Document inSettingsDoc, Document inXMPDoc)
    Thanks for your help,
    P

    Hi,
    Please help me.
    My requirement is to develop a standalone java program to convert Word documents to PDFs using Adoble LC ES.
    I found the code from the Adobe LC ES documentation. Please help me what's wrong in the code.
    I don't understand what i'm missing in the code...The "test.doc" file
    is there in the given location with proper data and Document object is not "NULL". Program is able to connect to Adobe LC Server. No issues with connection. But why the error ??
    Code & exception are below :
    CODE:
    import java.io.File;
    import java.util.Properties;
    import com.adobe.idp.Document;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.livecycle.generatepdf.client.CreatePDFResult;
    import
    com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient;
    public class GeneratePDFFromNativeFiles {
    public static void main(String[] args)
    Properties ConnectionPropsForSOAP = new Properties();
    ConnectionPropsForSOAP.setProperty("DSC_DEFAULT_SOAP_ENDPOINT",
    "http://workspace-d.web.abbott.com:8080/soap/services/
    ConvertAllFileTypesToPDF?wsdl");
    ConnectionPropsForSOAP.setProperty("DSC_TRANSPORT_PROTOCOL", "SOAP");
    ConnectionPropsForSOAP.setProperty("DSC_SERVER_TYPE", "JBoss");
    ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_USERNAME",
    "epaspdfgen");
    ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_PASSWORD",
    "epaspdf1");
    ServiceClientFactory factory =
    ServiceClientFactory.createInstance(ConnectionPropsForSOAP);
    try{
    String currentDirectory = System.getProperty("user.dir");
    String sourceDocPath="/test.doc";
    String resultDocPath ="/bin/arg/util/simpleFTP/test.pdf";
    String inputFilePath = currentDirectory+sourceDocPath;
    File file = new File(inputFilePath);
    String adobePDFSettings = "Standard";
    String securitySettings = "No Security";
    String fileTypeSettings = "Standard";
    GeneratePdfServiceClient gps = new
    GeneratePdfServiceClient(factory);
    Document inputDoc = new Document(file,true);
    CreatePDFResult docResult = gps.createPDF(inputDoc, inputFilePath,
    fileTypeSettings, adobePDFSettings, securitySettings, null, null);
    Document createdDocument = docResult.getCreatedDocument();
    createdDocument.copyToFile(new File(currentDirectory
    +resultDocPath));
    catch (Exception e) {
    e.printStackTrace();
    System.out.println("Error OCCURRED: " + e.getMessage());
    EXCEPTION:
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal
    error.
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.throwExceptionHandler(So apAxisDispatcher.java:
    207)
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
    125)
    at
    com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:
    57)
    at
    com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:
    208)
    at
    com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient.createPDF(GeneratePdfServ iceClient.java:
    172)
    at
    arg.util.simpleFTP.GeneratePDFFromNativeFiles.main(GeneratePDFFromNativeFiles.java:
    73)
    Caused by: ALC-DSC-002-000:
    com.adobe.idp.dsc.RequiredParameterException: Parameter: inputDocument
    is required.
    at
    org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:
    221)
    at
    org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:
    128)
    at
    org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:
    1087)
    at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown
    Source)
    at
    org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown
    Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
    $FragmentContentDispatcher.dispatch(Unknown Source)
    at
    org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
    Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown
    Source)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
    at
    org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:
    227)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
    at org.apache.axis.Message.getSOAPEnvelope(Message.java:424)
    at
    org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:
    62)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
    at org.apache.axis.client.Call.invoke(Call.java:2748)
    at org.apache.axis.client.Call.invoke(Call.java:2424)
    at org.apache.axis.client.Call.invoke(Call.java:2347)
    at org.apache.axis.client.Call.invoke(Call.java:1804)
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
    123
    Please help me.
    Thanks a lot.
    VJ.

  • What does the open file dialog do 'under the hood' and is there a way to simulate it

    What does the open file dialog do 'under the hood' and is there a way to simulate it?
    I have a bug in my code (that I've posted about before, here) which I can't fix at the moment, but I do have a workaround.
    Briefly, the bug:
    I call a dll from a function node, to initialise and run a spectrometer. If I start up the PC, LabVIEW and run my vi the code runs without complaint, the first call to the dll to initialise the spectrometer doesn;t return an error but the spectrometer is not detected either.
    I've tried various solutions, see the link above, and none work
    The workaround:
    If, at any time before running the code containing the function node I open an 'open file' dialog window, select the dll and click ok/hit enter then everything is fine. When I run the main code the spectrometer is detected.
    I use an express vi to open the file dialog, I specify the start path and file name as constant inputs and just click ok/hit return when the dialog pops up. I don't do anything with the dialog outputs. In fact the vi that contains the open file dialog can be run before the project containing the bug is even open.
    I have to do this everytime I turn the PC on.
    So, either
    1) Can somewone suggest a fix for the original bug?
    2) What is the easiest way to simulate the enter keypress when the open file dialog pops up
    or
    3) Can someone tell me what the open file dialog does under the hood that somehow causes the dll to work and can it be simulated in straight LabVIEW
    I suspect that the dll itself is dodgy ( I have in the past talked to the supplier but not got very far, and I will try again but I would like a quick, temporary solution too). I'm guessing that the file dialog is making some kind of check on the file, and possibly registering its presence with the OS (winXP). I tried using the file/folder exists vi to see if checking the file like that worked but no luck.
    Any help greatly appreciated.
    Dave

    Hi David
    I am very conscious about thread hijacking but this sounded like my issue so I hope you dont mind me asking about your issue. I am hoping that you have a spectrometer from the same vendor as me and its not just me seeing an Error 1097 issue. My spectrometer is from a company called Stellarnet.
    So far I have unable to get it to work with other VIs. There is one condition where I can get it to work but its no good for me.
    Case 1
    I open the VI in a fresh labview environment with no other VIs in memory. The code runs with no issue.
    Case 2
    Labview is not opened. I double click the spectrometer VI in windows explorer.  The VI opens but it fails to run resulting in Error 1097. Personally, I dont see the difference between this and Case 1 above and yet it fails.
    Case 3
    If I already have other VI's in memory and try to load the spectrometer VI and run it fails with Error 1097. This case is the one that most important to me. I have a test executive that will load test VIs dynamically and I can't get this to work. Same problem Error 1097.
    I wanted to share what I have seen with you and to let you know that maybe somebody else has the same issue. I am convinced its the DLL but the vendor dis-agreed saying it was LabVIEW. I couldn't convince him otherwise.
    Thanks in advance
    David

  • How to count Number of Input files onTarget Location?

    Hi Experts,
    I want to identify number of Input files available in Directory of Target system. Input file format is Input*.txt
    Once if I have this Count then based on that I can apply further logic in SAP R/3 coding.
    Please suggest me for the same.
    Regards,

    >
    Jagesh Lakdawala wrote:
    > My requirement is to read the Input Text file available on a given Location.Filename format is Input*.txt because Number of Input file is not fixed. All the Input file data needs to be available at the same time in R/3 coding (Internal table). i.e in a single XML message payload.
    > My question is in this BPM how do i know the LOOP Counter?? because LOOP should run depending on the Number of Input files available with the format Input*.txt.
    >
    > Please suggest.
    >
    > Regards,
    > Jagesh
    so say at one instance there are 7 files and XI picks them up, your BPM collects it and when you send it to R3 you need to know how many files have been processed?
    Well if this is the case, modify your BPM to accommodate collect pattern based on time. So fix a time period basically a time out say an hour. So the BPM will run for an hour after it receives the first file in and if within an hour say 7 files have come in, once the time out kicks in the BPM will exit. In you mapping of N:1 inside the bpm you can write a UDF which will count the occurrance of the root node of the source (a mandatory node of the source) and populate it to any field in the target tht you want to use.
    Is this what you are looking for?

  • How to do the header and trailer validation in the input file?

    hi,
    what are the ways we can validate whether header and trailer record exists in the input file?
    how to do that?
    regards
    Ruban

    File to Proxy Validation
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/99593f86-0601-0010-059d-d2dd39dceaa0
    /people/swaroopa.vishwanath/blog/2005/06/24/generic-approach-for-validating-incoming-flat-file-in-sap-xi--part-1
    /people/swaroopa.vishwanath/blog/2005/06/29/generic-approach-for-validating-incoming-flat-file-in-sap-xi--part-ii
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy

  • Can I find out the full filename of input file in message mapping?

    I have in XI 2.0 the following scenario :
    In the inbound fileadapter I read my input file. The filename of the input file is part fixed, part variable (Like INDATA01.txt, INDATA03.txt, etc).
    So in my Adapterconfiguration, I specify the filename with a wildcard (INDATA*.txt).
    What I now want to do, is in my Message Mapping use the full filename , so I can do something different for every filenumber. Is there a way where I can get the full filename available in my message mapping (I did not find the filename in the XML in the message trace).

    You're backing up hundreds or thousands of files:  There's the catalog (database) itself and also the media files. 
    In PSE10, when doing a backup, PSE displays the size of the backup before you begin the actual backup:
    I assume PSE8 will have something similar.
    Ken

  • Camera Raw Policy of Writing Back into Input Files

    This came up in another thread, and I think it deserves its own discussion.  I'd hope that we can influence the Camera Raw team's future direction.  I welcome your input and opinions.
    Given:  Under some conditions Camera Raw writes data back into (overwrites) its input files.
    Assuming you use Camera Raw to open your out-of-camera original files as many of us do, Adobe seems to be all over the road on whether to keep its hands off them or overwrite them...
    Camera Raw will not touch a proprietary raw file, such as a Canon .CR2 or Nikon .NEF.  There's a whole process for remembering settings in a separate database or sidecar XMP files.  So far so good.
    If you open a JPEG, TIFF, or DNG through Camera Raw, data WILL automatically be written back into it to tell another run of Camera Raw in the future what settings you used - without the software ever having warned you it will do so.
    Some functions EXPLICITLY rewrite input files.  You can ask the software to write new thumbnails back into DNG files, for example.   This is fine - the user has instructed the software to overwrite the file, and the user is in charge, after all.
    Overwriting/rewriting an input file without being instructed to do so is NON-INTUITIVE BEHAVIOR for an application. No one would expect an input file to be overwritten.
    We do see that it causes people confusion.  I'm sure there are people right now reading this in disbelief.  I recommend you go test it for yourself (on a copy of one of your original files).
    The original file being overwritten is one of the reasons why I don't configure Photoshop to open my out-of-camera JPEGs through Camera Raw.
    Adobe's [mis]handling of input files on the surface seems to be derived from the history of DNG - where no camera actually writes the DNG file directly but it has been generated as an intermediate format through the DNG Converter, and as such can be handled with less "care" than an original camera file.
    It seems to me that Camera Raw should NEVER write back into an INPUT file it is opening without a) letting the user know or b) being directed to do so.
    Adobe:
    Please give those of us who don't want our input files overwritten an option for using the database/XMP sidecar instead in EVERY case.
    Thanks.
    -Noel

    Noel wrote: >>  If you open a JPEG, TIFF, or DNG through Camera Raw, data WILL automatically be written back into it to tell another run of Camera Raw in the future what settings you used - without the software ever having warned you it will do so.<<
    It depends.
    As far as I can tell:
    When a JPG or TIF file is Locked,
    Camera Raw > Done results in a Write Permission Error.
    When a DNG file is Locked,
    Camera Raw > Done - writes a separate xmp sidecar file.
    The JPG / TIF handling seems to me inconsistent. With a locked file I'd prefer to have a sidecar xmp created as well. Some of my JPG / TIF files are originals for me.
    Peter
    Windows Vista, CS4 w/ACR 5.7

  • The file size of selected file in input file control is shown as 0 for multiple file selection in Safari 5.1

    The file size of selected file in input file control is shown as 0 for multiple file selection in Safari 5.1. If you select single file, then it is able to return file size correctly. However, if you select multiple files, then the file size of each of the selected file is always returned as 0 from javascript. This works correctly in Safari 4.0 but it does not work in Safari 5.1.
    How do I get the correct file size in Safari 5.1 ?

    If you want to post (or send me) a link to the lrcat file, I'd take a look at it for you, and give you a break-down what's consuming all the bytes. But it might be fun to learn how to do that yourself (e.g. using SQL). I use SQLiteSpy, but other people have their favorites.. (or you can use a command-line client if you prefer..). One way: just run "drop table "{table-name}" on each table then look at filesize (do this to a copy, not the real thing).
    Anyway, it's hard to imagine keywords and captions etc. taking much of the space, since even if you had 1000 10-character words of text metadata per photo average that still only adds up to 117MB, which isn't a substantial portion of that 8G you're seeing occupied.
    Anyway, if you've painted the heck out of most of them and not cleared dev history, that'll do it - that's where I'd put my money too...
    One thing to consider to keep file-size down:
    ===================================
    * After reaching a milestone in your editing, take a snapshot then clear edit history, or the top part of it anyway (e.g. leave the import step), using a preset like:
    Clear Edit History.lrtemplate
    s = {
        id = "E36E8CB3-B52B-41AC-8FA9-1989FAFD5223",
        internalName = "No Edit",
        title = "Clear Edit History",
        type = "Develop",
        value = {
            settings = {
                NoEdit = true,
            uuid = "34402820-B470-4D5B-9369-0502F2176B7F",
        version = 0,
    (that's my most frequently used preset, by far ;-})
    PS - I've written a plugin called DevHistoryEditor, which can auto-consolidate steps and reduce catalog size - it's a bit cumbersome to use a.t.m. but in case you're interested...
    Rob

  • Need some Help ( formating strings vs formatting input files)

    I have a program that reads in a text file and stores each line as a string. The input file has no delimiters and varying amounts of white space. The problem is, I am trying to display each line of the file the same way. Here is an example of what the string looks like when I read it in and then output the strings.
    (I am using the underline to represent white space just in this message post.)
    1.Fred Smith____GA_____23_______42______23.5_____3____5
    2.Jon Doe____SC___42_______3_______39.2_____6_____12
    Now here is is how I would like the output to look like.
    1.Fred Smith_______GA_______23_____42_____23.5_____3_____5
    2.Jon Doe__________SC_______42_____33_____39.2_____6_____12
    Any thoughts or insight on how to achieve this would be great. Thanks for the time.

    Hi, before I'd do anything more complicated, I'd replace some spaces with tabs and see if that does the trick.
    Cheers, HJK

  • Limit on the number of characters of the Input file of Input Agent

    HI
    I am working on the Input Agent of one of my IPM applicaton. I just want to know what would be the limit on the number of characters in the input file of input agent. That means that what should be the total count limit of the characters of the Input file of the Input Agent, so that IPM Efficiently process the Input file.
    Thanks & Regards
    Chandan Kumar
    SYSTIME, India

    Thank you t quinn for your reply as I do really appreciate the help.
    I don't quite understand what your suggestion was and before I try to figure it out and play around with numbers, I thought I should clarify further. When i wrote I want to paste the content into the cell and have it limited to 100 characters I was mis-spoken. I actually have all the content already in the columns in a spreadsheet and would now like to just limit some of the columns to hold only 100 characters in a cell so that when its a CSV file it will be accepted to the program I'm trying to upload it to.
    SO does that change the way you can answer my question?
    Is there a way to just limit the content currently in a spreadsheet to 100 characters per cell?
    Kindly

  • How to overcome the standard program check that changes my input file data?

    Hi
    when we r uploading PO thru bapi_po_create1, we give tax codes in the input file...but when the code gets into this MM06EFKO_PREISFINDUNG include of SAPLMEPO, there is a logic that changes the tax code (ekpo-mwskz = tkomv-mwsk1) and hence it gets reflected in the PO created...is there any way where i can by pass this one for the POs that i create thru my prog...pl shed some light on this
    Sathish R

    enter the program name in the SE38 editor
    click on copy button
    then it will ask you for the new name
    when ever you click on the copy transfer buton
    then it will raise a pop and saying that what ever you want from the program like
    1) INCLUDES
    2)SCREENS
    3)USER INTERFACES
    4)VARIANTS
    5) DOCUMANTATION
    ETC..
    hat ever you clcik on that check box
    thats all
    rewar dif usefull

  • 1 input file to 2 output file mapping. Please help!

    Hi Experts,
      I have a snenario where from one input file I have to generate two output files. My sender and receiver systems are the same since I want to generate the output files in the same location. I am using both the systems same just for testing purpose.
    So in IR I have created
      1. one outbound interface for the input file
      2. two inbound interfaces for the output files
      3. one message mapping containing one input message  
          transformation to two output messages.
      4. one interface mapping containing one input interface
          transformation to two output interfaces.
      In ID I have created
        1. one file sender channel and two receiver channels for two output files with different names.
        2. two receiver agreements
        3. one sender agreement
        4. one interface determination of type "Enhanced".
        5. one receiver determination
      But when I run the scenario given one valid input file  I am getting the error in the sxmb_moni : RuntimeException in Message-Mapping transformation: Cannot produce target element.
    However message mapping and interface mapping works perfectly if I test it in IR with the same input file. 
    Can somebody help me understand what I might be doing wrong?
    Have I done the configuration correctly for 1:N mapping?
    Please help! I will be greatfull to you if you can help me.
    Thanks
    Gopal

    If my input file is like this:
       <ns1:LocationMsg_MT xmlns:ns1="http://www.abc.com/Gopal">
             <Location>
             </Location>
    </ns1:LocationMsg_MT >
    Then my scenario is working.
    But my input file will be like this:
    <LocationMsg_MT>
             <Location>
             </Location>
    <LocationMsg_MT >
    This is giving problem.
    How to handle this kind of file?
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on Mar 14, 2008 3:19 PM

Maybe you are looking for

  • P67A-GD65 will not boot after OC Genie

    Built my initial system in early September.  Rosewill Challenger-U3 ATX Mid Tower Intel I5-2500k Crucial M4 256GB 8GB (2x4G) G.SKILL Ripjaws DDR3 1333 (PC3 10666) MSI P67A-GD65 (B3) OCZ ModXStream Pro 600W power supply Velociraptor 160GB Drive DVD bu

  • IPhoto 6.01: lost links to pictures (thumbs fine) and forgets rotations too

    First problem is broken links. Within my library some photos exhibit strange behaviour, this applies to some (not all) photos within one roll. The thumbnails work, both in Library and in Filmstrip. However, when I double click on the image I get a gr

  • Can't Access Supplementary Editing with Photoshop CS2

    I was a user of Elements3 for a long time mainly because I liked that the catalog's "edit with" feature worked with Photoshop CS2.  I recently got a new PC with Windows 7 so I could not install PSE 3. I downloaded PSE9 trial version to see if all wor

  • SAP Standard report in R/3

    HI,   I am checking an standard R/3 report in FI. Accounting>Controlling>Cost Center Accounting>Information System>S_ALR_87013611 How can i check the source code for this..... When i treid in SE38 WITH S_ALR_87013611 ....it is not working Thanks

  • How to manually configure and then use DHCP

    I'm having problems with internet connectivity. If I try to configure in Airport Utility, there are two choices - manual or use DHCP. If I allow AU to renew the DCHP lease, I end up with a bad IP address (one of those 169.... ones). If I configure ma