Syntax problem

<%
IncomeTax = "Yes";
%>
<form>
<div align="center"><center><table border="0">
<tr>
<td colspan="2" align="center">Income Tax1</td>
</tr>
<tr>
<td><input type="radio" value="No" name="IncomeTax1"
<% If IncomeTax = "No" Then Response.Write("checked"); %>></td>
</tr>
<tr>
<td><input type="radio" value="Yes" name="IncomeTax1"
<% If IncomeTax = "Yes" Then Response.Write("checked"); %>></td>
</tr>
</table>
</center></div>
</form>
this code is showing an error in the line Response.Write... error says syntax error on token "Then", ; expected. Can somebody solve this?

Well i donno if this is possible in ASP..come on this is JSP forum...
I would use
<input type="radio" value="No" name="IncomeTax1"
<%= (IncomeTax = "No"?"checked":"") %> >

Similar Messages

  • Some syntax problems (I guess)

    Hi, I'm having problem with the first constructor in this simplified example code... I want to create a "default" Comparator. I'm not quite sure how to do this.
    public class MyClass<E> {
        private Comparator<E> comp;
        public MyClass() {
            MyClass(new ComparableComparatorBridge());
        public Myclass(Comparator<E> comp) {
            this.comp = comp;
        private class ComparableComparatorBridge<E extends Comparable> implements Comparator<E> {
            public int compare(E o1, E o2) {
                return ((Comparable)o1).compareTo(o2);
    }

    Event if you fix the syntax problems, following the advice of the other posters, you'll have a semantic problem:
    MyClass<E> is parameterized with an unbounded type parameter.
    You cannot assume that E implements Comparable<E>.
    What you'd really need is a parameterizd constructor like this (won't compile):public <C extends E & Comparable<E>> MyClass() {
    this(new ComparableComparatorBridge<C>());
    }Unfortunately, this isn't valid Java. I see two possibilities:
    1. Derive from MyClass and introduce the additional bound on the type parameter of the subclass. Then you can create a default-constructor using the ComparableComparatorBridge in that subclass.
    2. Add a static factory function to MyClass, like this:
    public class MyClass<E> {
        private final Comparator<E> comp;
        public MyClass(Comparator<E> comp) {
            this.comp = comp;
        public static <E extends Comparable<E>> MyClass<E> defaultComparable() {
            return new MyClass<E>(new ComparableComparatorBridge<E>());
        private static class ComparableComparatorBridge<E extends Comparable<E>> implements Comparator<E> {
            public int compare(E o1, E o2) {
                return o1.compareTo(o2);
    }

  • Dreamweaver silently detects syntax problem

    I have a .cfm file which I've been maintaining for a few years. Recently while editing the file in DW6, DW began to fail to recognize that the file is a Cold Fusion file.  Common keyboard shortcuts, both general and CF-specific just won't function.  Menu items under "Insert...ColdFusion Objects" are all disabled.
    After 90 minutes of progressively removing a few lines of code, saving and closing, then reopening the file, I tracked the problem down to the presence of 1 line of ColdFusion code.
    I happened to see at the bottom of the edit window (in the part of the status bar which shows CF code nesting) that <cfinvoke> was listed, where there was none in the file I was having trouble with.  It turns out the line of "bad" code was a <cfinclude>, and the file it referenced had a <cfinvoke> without a closing </cfinvoke>
    The reason for this long post under Dreamweaver, is that DW was clearly detecting a syntax problem, but instead of identifying the problem, it just stopped functioning normally, and acted in a truely weird way.
    I do NOT have "Enable Related Files" active.  For DW to wanter out into other files and gag on a syntax error, then not to report the problem, was totally unexpected.
    I consider the primary "bug" to be in failing to report the syntax error.  Secondarily, syntax checking in related files should probably be controlled by the "related files" preference option.
    This is DW CS6, v 12.1, build 5949.

    Did you report this to Adobe?
    Bug Report & Feature Request Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Nancy O.

  • Syntax problem After the Upgrade to SCM 7.0

    We are facing one problem during the upgrade process in the sandbox environment.
    After the upgrade we have completed the SPAU corrections ,while doing the SPAU corrections we found that one function module is not in active mode. We have checked the syntax,problem is there. we have tried to retrieve to the older version. But there are some notes were implemented during the 4.1 version. Those notes are now appearing in the SPAU with question mark.
    We have reverted all the notes but still the code is having syntax problem and the code is in the 4.1 version only.
    Please tell me how to solve it...
    Moderator message - Welcome to SCN.
    But
    Moderator message - Cross post locked(please pick one forum or the other)
    Edited by: Rob Burbank on Nov 3, 2009 12:03 PM

    Hello Bouchards,
    Thank you for the question.  You can find Frequent Locations under Settings > Privacy > Location Services > System Services:
    You can find more information at the following link:
    iOS 7: Understanding Location Services
    http://support.apple.com/kb/HT5594
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Syntax problem with BDC perform

    Dear Friends,
    small problem in BDC Perform syntax but I am not getting how to do this..
    I have writen the code like this in my BDC byt its throughing the error...Here I want to do the validation on each and every field. I mean If that field values are empty i don't want to change the SAP field value.
    my code is like this.
        PERFORM dynpro USING:
        'X' 'SAPLMGMM' '0080'.
        IF NOT p_int_matl-werks IS INITIAL.
        ' ' 'RMMG1-WERKS' p_int_matl-werks.
        ENDIF.
        IF NOT p_int_matl-werks IS INITIAL.
        ' ' 'RMMG1-LGORT' p_int_matl-lgort.
          ENDIF.
        ' ' 'BDC_OKCODE' '/00'.
    pls give me exact code how to do this...
    Thanks
    Sridhar

    Hi sridher,
    1. this kind of syntax ie. IF will give error.
    2. If ur requirement is : blank value should not be put in bdc,
    3. then one way is to change / write the logic
        inside the form itself.
    4. ie. inside the routine/form DYNPRO.
    5. So, it will be then general for all performs.
    regards,
    amit m.

  • Simple SQL syntax problem

    Ok, I'm sure this is a very simple problem but I'm confused.
    Statement s = con.createStatement();
    s.execute("SELECT COUNT (*) FROM table WHERE id = 6 AND somechar = 'N'");java.sql.SQLException: Syntax error or access violation message from server: "You have an error in y
    our SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax
    to use near '(*) FROM table WHERE id = 6 AND somechar = 'N'' at line 1"
    This works fine when input into the phpMyAdmin database interface. Is there something blatantly wrong with my syntax, or...?

    Maybe it doesn't like the space between COUNT and (*)
    %Yuck.
    Yep, that was it. Thanks.
    Weird, I'm accustomed to programs ignoring most whitespace as long as it doesn't create ambiguity.

  • PowerShell Syntax Problem.....

    Trying to develop a PowerShell GUI to run some Exchange 2010 Cmdlets, IM having trouble getting the textbox / variable value to work correctly within the syntax.... 
    This command works....
    Works Get-Mailbox -identity myalias | Search-Mailbox -SearchQuery `Subject:"MyStringValue"' -Force -DeleteContent >\\server\c$\temp\outreport.txt
    This command doesn't work....
    Get-Mailbox -identity myalias | Search-Mailbox -SearchQuery `Subject:'$Sub'` -Force -DeleteContent >\\myserver\c$\temp\outreport.txt
    When I say doesn't work, the command actually runs but doesnt produce the desired outcome.... Generates the report file which reports 0 item count. Any thoughts????? Thanks
    Djoe

    Use double-quotes if you're going to put a variable inside of a string and expect the variable's value to be displayed. You may hear this as the variable is being expanded.
    Edit: By the way, I am referring to the value you are supplying for the -SearchQuery parameter. I suspect this may be where your problem lays.

  • Syntax problem in insertion sort

    What I'm trying to do is use different types of algorithims, to sort the text file.
    I'm using bubble, selection, and insertion sorts, which are being implemented with an arraylist. The bubble, and selection, comes out fine, but having problems getting the syntax right for the insertion sort.
    The error comes in the inner for loop when I try to compare tmp and data.get(j-1) I get this error "The operator && is undefined for the argument type(s) boolean, int. Obviously I screwed this part of the coding, and I need help trying to figure out how to correct it. Thanks for any help.
    public static void insertionSort (List data)
                 Comparable tmp;
              int i, j;
                 for(i = 1; i < data.size(); i++)
                      tmp =  (Comparable)data.get(i);
                       for(j = i; j > 0 && tmp.compareTo(data.get(j - 1)) ; j--) // <--- right here
                            data.set(j, data.get(j - 1))  ;
                       data.set(j, tmp)  ;
    }

    You need to check whether the compareTo returns less
    than zero or greater than zero (depending on your
    sort order).
    (j > 0) && (tmp.compareTo(data.get(j - 1)) >
    0)I added parentheses around the two boolean
    expressions. Probably not necessary, but makes it
    easier to read--and you don't have to remember the
    operator precedence rules.
    You might want < 0 at the end--as I said, depends on
    your sort order.That fixed it thanks alot, oh and it was in decending order, so I just had to switch the ending part around.

  • RecordStore Syntax Problem

    Hello, I am having much difficulty getting my syntax correct in my classes. Here is what I am talking about. I am giving snipts.
    basically I am attempting to check for a record with parameter empid. I am having problems getting the syntax correct. I have another method that dumps the recordstore. I know the method works. I got it from the tips and tricks that Eric Giguere wrote. Any ideas or some direction would be extremely appreciative. I know that if I get a little direction I can go on it. I also have a command actions that control some other stuff like adding records, but for the life of me I can figure the syntax! Logically its simple, but actually coding it is becoming a difficult...
    public Form loginForm() {
    System.out.println("Inside Login Screen()");
    // Go ahead and open our RecordStore empWorkDB, or rather Try to open...
    try {
    System.out.println("Attempting to open RecordStore");
    rs = RecordStore.openRecordStore(db, true);
    System.out.println("RecordStore Opened " +db);
    // test var
    byte[] empid = new byte[100];
    // Lets check for the empid value in our RecordStore.
    dumpRecordStore(rs);
    System.out.println(rs);
    catch (Exception e) {loginForm.append("Error 2601: DB Failed Open"); }
    loginForm = new Form("Login");
    done = new Command("OK", Command.OK, 1);
    login = new TextField("Enter Employee ID:", "", 20, TextField.NUMERIC);
    loginForm.append(login);
    loginForm.addCommand(done);
    loginForm.addCommand(cancel);
    loginForm.addCommand(newemp);
    loginForm.setCommandListener(this);
    return loginForm;
    } // End loginForm()

    Please be specific what you want to do ..
    --Senthil                                                                                                                                                                                                               

  • SYNTAX Problem in User-Exit (Perform/Form)

    Hi,
    i use this User-Exit:
    FUNCTION EXIT_SAPLAD15_010.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(I_DLISRC) LIKE  AD01DLIA-DLISRC
    *"     VALUE(I_KOKRS) LIKE  TKA01-KOKRS
    *"  TABLES
    *"      T_COVP STRUCTURE  COVP OPTIONAL
    *"      T_COSPA STRUCTURE  COSPA OPTIONAL
    *"      T_COSSA STRUCTURE  COSSA OPTIONAL
    *"      T_COVPR STRUCTURE  COVPR OPTIONAL
    *"      T_COSRA STRUCTURE  COSRA OPTIONAL
    *"      T_V_COFP STRUCTURE  V_COFP OPTIONAL
    *"      T_FMSUA STRUCTURE  FMSUA OPTIONAL
    *"      T_CKF_DIP_CUSTOMER_EXIT STRUCTURE  CKF_DIP_CUSTOMER_EXIT
    *"       OPTIONAL
    *"      IT_OBJECTS STRUCTURE  AD01OBJ OPTIONAL
      INCLUDE ZXAD1U10.
    ENDFUNCTION.
    *   INCLUDE ZXAD1U10                                                   *
    CASE I_DLISRC.
      WHEN '0001'. "Istkosten
        PERFORM DP90.
      WHEN '0021'. "Plankosten
        PERFORM DP80.
    ENDCASE.
    FORM DP80.
    BREAK-POINT.
    ENDFORM.                                                    "DP90
    FORM DP90.
    BREAK-POINT.
    ENDFORM.                                                    "DP90
    I get this syntax-error:
    Incorrect nesting: Before the statement "FORM", the structure
    introduced by "FUNCTION" must be concluded by "ENDFUNCTION
    Isn't it possible to use own Forms in includes of exits?
    Thanks, Regards Dieter

    when you do this:
    function.
      include zx
    endfuncion.
    include ZXAD1U10
    form aaa.
    endform.
    the abap engine see this:
    function.
      form aaa. " this is because the incorrect nesting error apperars
      endform.
    endfuncion.
    so, you can do two things:
    1° put your include sentence in the top of the function group, not inside the exit.
    2° try with dinamyc sencentes include (zx...)  perform (routine).

  • [SOLVED] Xmobar syntax problem possibly wrong

    I'm configuring xmobar to my needs as shown in my configuration file:
    Config { font = "-*-Fixed-Bold-R-Normal-*-13-*-*-*-*-*-*-*"
    , bgColor = "black"
    , fgColor = "grey"
    , position = Static{xpos=0, ypos=0, width=1905, height=16}
    , lowerOnStart = True
    , commands = [ Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 10
    , Run Memory ["-t","<usedratio>%"] 10
    , Run Date "%a %b %_d %Y %H:%M:%S" 10
    , Run Com "/home/josealejandro93/scripts/volume.sh" [] "volume" 10
    , Run Com "/home/josealejandro93/scripts/bstatus.sh" [] "bstatus" 10
    , Run Battery ["-t","<left>%","-L","50","-H","75","-h","green","-n","yell","-l","red"] "battery" 10
    , Run Com "/home/josealejandro93/scripts/brightness.sh" [] "bright" 10
    , Run Com "/home/josealejandro93/scripts/user.sh" [] "user" 500
    , Run StdinReader
    , sepChar = "%"
    , alignSep = "}{"
    , template = "%StdinReader%}<fc=#ee9a00>%date%</fc>{Vol: <fc=green>%volume%</fc> | [Bat: %battery% | Status: %bstatus%] | Brightness: <fc=green>%bright%</fc> | [%cpu% | Mem: <fc=green>%memory%</fc>] | <fc=#ff0000>%user%</fc> "
    I can't see anything wrong in that code but Xmobar is not starting (previously it was, after a reboot my battery indicator was not working so I tried to mess around with the configuration file and broke it). When I run
    xmobar config.file
    I get:
    configuration file contains errors at:
    "Config" (line 16, column 10):
    unexpected "s"
    expecting space or "Run"
    But I don't see why it should be asking for a space or a
    Run
    since I'm closing the commands list one line above.
    This file was made with emacs and I also ran dos2unix on it since I thought that maybe the new-line character was causing this problem but still got the same result.
    Do you think that maybe I should try another editor like nano? I have never had this kind of problems with emacs before so it's quite strange.
    Thanks in advance for your help!
    Last edited by josealejandro93 (2013-12-14 19:25:42)

    skottish wrote:I was able to run your xmobarrc with the changes that I posted locally without your scripts. The scripts themselves shouldn't matter as xmobar just complains about them in the status bar itself. There is some inconsistency with spacing when I pasted your code into vim, but it still runs if I don't fix it. Please post your updated config file.
    Here it is:
    Config { font = "-*-Fixed-Bold-R-Normal-*-13-*-*-*-*-*-*-*"
    , bgColor = "black"
    , fgColor = "grey"
    , position = Static{xpos=0, ypos=0, width=1905, height=16}
    , lowerOnStart = True
    , commands = [ Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 10
    , Run Memory ["-t","<usedratio>%"] 10
    , Run Date "%a %b %_d %Y %H:%M:%S" "date" 10"
    , Run Com "/home/josealejandro93/scripts/volume.sh" [] "volume" 10
    , Run Com "/home/josealejandro93/scripts/bstatus.sh" [] "bstatus" 10
    , Run Battery ["-t","<left>%","-L","50","-H","75","-h","green","-n","yell","-l","red"] 10
    , Run Com "/home/josealejandro93/scripts/brightness.sh" [] "bright" 10
    , Run Com "/home/josealejandro93/scripts/user.sh" [] "user" 500
    , Run StdinReader
    , sepChar = "%"
    , alignSep = "}{"
    , template = "%StdinReader%}<fc=#ee9a00>%date%</fc>{Vol: <fc=green>%volume%</fc> | [Bat: %battery% | Status: %bstatus%] | Brightness: <fc=green>%bright%</fc> | [%cpu% | Mem: <fc=green>%memory%</fc>] | <fc=#ff0000>%user%</fc> "
    I tried deleting those lines where I call my script but I get the same error about expecting space or Run

  • Oracle 9i Vs 10g Express Edition PL SQL syntax problem?

    The following code works perfectly on Oracle 9i , but fails in 10g Express Edition. Please help me figure out what the problem is
    product_master table exists and there is nothing wrong in there.The problem is a syntical one. Is there some 9i compatible mode? I'm using oracle express edition of 10 g. Login using the webbrowser. That itself is annoying.Why isnt there an SQL+ ide unlike 9i?
    Code :
    declare
    pd_no varchar2(6);
    cst number(8,2);
    begin
    pd_no:=&pd_no;
    SELECT cost_price INTO cst
    from product_master
    where product_no=pd_no;
    cst:=cst-200;
    IF cst >= 3000 THEN
    UPDATE product_master SET cost_price=cost_price-200
    WHERE product_no=pd_no;
    END IF;
    END;
    The error I get is
    ORA-06550: line 5, column 14:
    PLS-00103: Encountered the symbol "&" when expecting one of the following:
    ( - + case mod new not null
    avg
    count current exists max min prior sql stddev sum variance
    execute forall merge time timestamp interval date
    pipe
    3. cst number(8,2);
    4. begin
    5. pd_no:=&pd_no;
    6. SELECT cost_price INTO cst
    7. from product_master
    I changed & to : .The it asked for input but the following error came up
    ORA-06550: line 16, column 2:
    PLS-00103: Encountered the symbol ";"
    1. declare
    2. pd_no varchar2(6);
    3. cst number(8,2);

    One, possibility of occuring this error(PLS-00103) is, if you leave input without entering anything this will occur.
    Solution: Enter the value in quotation, like 'hello', below is one example which asks value for a, but i left it without entering any input, so the error occured.
    Once check out this in your case.
    SQL> @sample.sql
    Enter value for a:
    old   4: a:=&a;
    new   4: a:=;
    begin;
    ERROR at line 3:
    ORA-06550: line 3, column 6:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    ( begin case declare exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    continue close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe purge
    SQL> spool off;

  • Linking same table together syntax problem

    Hi All
    I've never had to link a table to itself before, but as I try and do it now I keep getting "missing keyword" error message at the point I try and assign a different name to the second instance of my table. Can anyone point out my mistake please?
    Here is the SQL:
    SELECT FSA_CO, FSA_NO, FSA_ADESC, FSA_MFNO, FSA_SREF, ERE_RET.ERE_BELONGS_TO, ERE_RET_1.ERE_DESC
    FROM (FSA_ACC LEFT JOIN ERE_RET ON FSA_ACC.FSA_HIRE_GRP = ERE_RET.ERE_ID) LEFT JOIN ERE_RET AS ERE_RET_1
    ON ERE_RET.ERE_BELONGS_TO = ERE_RET_1.ERE_ID WHERE (((FSA_ACC.FSA_CO)='01') AND ((FSA_ACC.FSA_NO)='P008'))
    Many thanks in advance
    Chris

    Well, the regular Oracle syntax would be
    SELECT fsa_co,
           fsa_no,
           fsa_adesc,
           fsa_mfno,
           fsa_sref,
           a.ere_belongs_to,
           a1.ere_desc
      FROM fsa_acc, ere_ret a, ere_ret a1
    WHERE fsa_acc.fsa_hire_grp = a.ere_id
       AND a.ere_belongs_to = a1.ere_id
       AND fsa_acc.fsa_co = '01'
       AND fsa_acc.fsa_no = 'P008'I think the AS is what it's complaining about - it didn't care for it in regular syntax.

  • Query of Qeries Syntax problem

    I'm getting an error on the syntax for my SELECT statement in
    a Query of Queries. The code is:
    <cfquery name="OnOrderLogData" dbtype="Query"
    result="result3">
    SELECT *,
    ROW_NUMBER() OVER([ORDER] [BY] RowNumber [ASC]) + 0 AS
    PageOrder
    FROM OOLogView
    WHERE RowNumber > 3 AND RowNumber <= 33
    </cfquery>
    The error is:
    Encountered "(. Incorrect Select Statement, Expecting a
    'FROM', but encountered '(' instead, A select statement should have
    a 'FROM' construct.
    I know that certain reserved words need to be escaped with
    square brackets, and I have surrounded all the words that were on
    the list in the reference manual with square brackets. I did not
    see anything in the reference manual that says I can not use
    parenthesis in the SELECT statement, nor anything that says I can
    not use the SQL function ROW_NUMBER. I have spent several hours
    trying many different things and still can't get it to work. It
    works fine when I execute it as an Ad Hoc query in SQL Server 2005
    Studio Express (when I take out the square brackets).
    Can anyone please help me figure out what is wrong and how to
    fix it? Thanks.

    > Adam, your's was the least impolite
    Heh. Talk about "damning with faint praise".
    > I have Ben Forta's 3 volumes, the CF Reference Manual
    and the CF User's Guide.
    > None are very specific about what IS OK to do,
    I actually find livedocs to be the best resource for looking
    up CF stuff.
    http://livedocs.adobe.com/coldfusion/8/using_recordsets_1.html
    Or googling these forums (NB: *Google*, not the in-built
    search function,
    which is rubbish).
    > If I would say something to my boss such as, "You
    shouldn't expect..." or
    > "What do you expect..." in the context as these answers,
    I would be in the dog
    > house.
    Sure. But you're not our boss. If we were to draw parallels
    like that,
    it'd be the other way around if anything. (I would not draw
    the parallels
    either way, that said). I actually *would* talk to one of my
    subordinates
    like that, but I'm noted at work for my "terseness" at times
    (some might
    describe it in harsher terms than that ;-). We've all got
    different
    expectations, I guess.
    > That is the kind of criteria used to judge the
    appropriateness of how
    > one should converse with other people.
    OK, well I think - for the reasons you outlined - you're
    going to be a bit
    disappointed there. I recommend ignoring the tone (or at
    least the tone
    you're perceiving), and just take the info as given. On the
    whole, people
    here are pretty polite, actually.
    But anyway. I think you got your answer, so job done.
    Although now you've
    got to work out another way of sorting out your issue...
    Adam

  • ZXF08U06 - userexit coding - Idoc syntax problem.

    I am doing IDOC coding in the userexit <b>ZXF08U06</b> in which I am   modifying values in structure edidd.
    It was working fine previously.
    But in further testing we got below error :
    26  Error during syntax check of IDoc (outbound).
    Could you please help me in solving this issue.
    Thanks in advance.

    yeah
    u go to TCODE WE30 and give ur object name and enter.
    then u will see all the segments related to ur object.
    u can double click on each segment and see whethet it is mandatory or not.
    regards
    jai
    please reward if helpful.

  • Syntax problem: send the path to a function to another one

    Hello!
    What's the correct syntax:
    I want a function in a remote mc to trigger another function
    (situated on another mc: this is dynamic(may change):
    Thanks for your help!

    I would suggest that your life would be much easier as well
    as communication between your movieclips if you learned to program
    with classes and in an object-oriented way. Use xray (
    http://osflash.org/xray) as a
    way to see the hierarchy of your movie clips and better understand
    the relationships between them.

Maybe you are looking for

  • Why doesn't my apple tv show up in my source list on itunes?

    I purchased a movie and then realized it didnt sync on my apple tv. So I go to my computer to see that the apple tv isn't listed in the sources. So far I have unplugged the apple tv, restarted it, restarted my computer, made sure all available update

  • Can't get stereo on real guitar track

    Hi, This is driving me nuts! I can't get anything but mono 9from left speaker) when I play my guitar, even though stereo is selected. I am using GB 3.0.4. I have been exchanging files with a friend in another state and he has the same problem with hi

  • LR3: random showings of metadata settings icon (the exclamation point in Library grid)

    While working in the Library module, I will every so often get random popups of the exclamation point icon in the upper right of the grid cell, the one that gives the warning: "The metadata for this photo has been changed by both Lightroom and anothe

  • Terrible software PC suite

    This is the 3rd phone i've tried to use this software with and none has ever worked. Personally I think it should be scrapped and written again. Now my new 6500c wont sync half the time, music tranfer usually don't or half work and most of the other

  • Avchd video to final cut express

    I was able to import the video from my Sony high definition hdr-sr11"AVCHD" video to my apple computers desktop. I cannot import the video that is now on my computer to final cut express. I am new to computers and do not have any idea how to do this.