Syntax errors for smarty code

I work with smarty a lot, and I mean a lot.  Every single day in fact, all day long.  Is there a way to turn off the syntax errors for my smarty code?  Basically every file I open is going to tell me there are syntax errors all over the page...
Thanks!

I am not familiar with smarty but the options for disabling syntax errors can be found under the view menu,
View > Code View Options > Syntax Error Alerts in Info Bar (tick or untick)
Richard

Similar Messages

  • Syntax Error in Login Code PHP

    Hello,
    I am currently building my first log-in page and have come to the following issue. I am getting Syntax Error's on lines 39 & 49.
    I'm sure it's something simple that I am missing here?
    NOTE* Excuse me if I didn't post the code correctly, I am new to the forums.
    Click here to enter the members area";         $_SESSION{'username'}=dbusername;             }     else         echo"Incorrect Password";     }         else         die "that username doesnt exist";                 } else     die ("Please Enter a username and password");     } ?>

    Thanks for the reply!
    I fixed what you noted above and will look into not using the "die" command, I understand what you are saying about not using it and why
    However, here is where I am getting the syntax errors specifically:
    $_SESSION{'username'}=$dbusername;
    else
    echo"Incorrect Password";
    <syntax Error>
    else
    die "that username doesnt exist";
    else
    die ("Please Enter a username and password");
    }       <syntax Error>
    ?>

  • (x86) Inline assembler syntax errors for 8bit variables

    Hello,
    I am porting some gcc code to Solaris and have some issues
    with the inline assembler. It works reasonably well on most of
    my code but with some instructions I have difficulties.
    In gcc, when I declare a variable as char/unsigned char and
    reference it within an asm-statement the assembler will generate
    'half'-register names for it (e.g. %al, %cl, ...).
    sunCC generates full registers for these variables and so
    certain instructions fail to assemble.
    e.g.
    char flag;
    asm ("setz %0" : "=q"(flag) : :);
    Syntax error is given then for:
    "setz %eax"
    Is there a way to force the use of 8bit registers?
    --L                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Even worse:
    char flag, char* ptr;
    asm("xchgb %0, %1" : "=q"(flag),"=m"(*ptr):"0"(1), "m"(*ptr):);
    produces
    xchgb %edx,(%eax)
    on sunCC even when no "-O" flag is given.
    But
    char flag, char* ptr;
    flag = 1;
    asm("xchgb %0, %1" : "=q"(flag),"=m"(*ptr):"0"(flag),"m"(*ptr):);
    produces
    xchgb %dl,(%eax)
    on sunCC if no "-O" flag is given.
    Strange behaviour indeed... :/
    --L                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Designer syntax errors in correct code.

    I have added some trigger code to a bound item. The designer syntax checker finds errors in the code but the generated form runs correctly. It appears that the syntax checker doesn't like DECLARE. The code doesn't do anything and I believe it is fine but I would like to get the syntax checker to stop complaining about it. Any suggestions on how I might arrange things to stop the syntax error messages would be appreciated. Here is the offending code with error messages:
    DECLARE
    item_id     Item;
    BEGIN
    item_id := FIND_ITEM('M1.STATE');
    END;
    The Syntax Checker found the following errors:-
    PLS-00103: (Line 1) Encountered the symbol "DECLARE" when expecting one of the following:
    begin function package pragma procedure separate subtype type
    use <an identifier> <a double-quoted delimited-identifier>
    form current cursor external language
    The symbol "begin" was substituted for "DECLARE" to continue.
    PLS-00103: (Line 20) Encountered the symbol "end-of-file" when expecting one of the following:
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
    <an identifier> <a double-quoted d
    [2] error(s), [0] warning(s)

    This will not work correctly in 32-bit Windows (or 64-bit) The type of wParam *must* be WPARAM, the type of lParam *MUST* be LPARAM, and for a dialog handler the return type should be BOOL. The old _export keyword no longer exists, and is not needed in
    Win32. FAR is a macro with an empty body and its appearance in all places can be deleted. The quaint and confusing PASCAL keyword may still work, but it would be better to use the now-correct term CALLBACK. Since this is clearly antique Win16 code, there may
    be other problems dealing with size of integers. The types int, long, DWORD, UINT and others all represent 32-bit values. The return type for window handlers must have the return type LRESULT, and for dialog handlers, BOOL. All wParam and lParam types must
    be changed as I indicated. Note that for Win16, wParam was 16-bit and lParam 32-bit. For Win32, WPARAM, LPARAM and LRESULT are all 32-bit values, and for Win64 they are 64-bit values. Any place the code casts a pointer to an integer type, the code is inherently
    incorrect. You must use types like INT_PTR, UINT_PTR, DWORD_PTR and other _PTR-suffixed types for such casts; in Win32 these are pointer-sized integer types (32-bit) and in Win64 they are pointer-sized integer types (64-bit). Types like int, long, DWORD, etc.
    are 32-bit values in both Win32 and Win64. Converting code to run on Win32/64 from Win16 requires great caution, because the programming "standards" that were taught for Win16 did not plan on true platform portability, and programmers were taught
    terrible techniques such as declaring wParam as WORD and LPARAM as long. And casting pointers to ints and back. All of these techniques lead to disaster.

  • Help me find syntax error in AS3 code to chain FLV videos.

    I posted a how to do this a couple of weeks back & someone was kind enough to offer this advice to an AS newbie...
    "you should create a fla, drag an flvplayback component to the stage, create an array of your flvs, initialize an index at zero, assign the flv to start playing your first flv and increment the index in a function that executes when an flv complete and play that array element until all are played.  you'll publish your html and swf from that fla." 
    And he gave me a code sample which is below... modified to show my "instance" name as FlvChain
    and my flv file names... vid1.flv, vid2.flv, and vid3.flv...
    My code...
    import fl.video.VideoEvent;
    var flvA:Array=["vid1.flv","vid2.flv","vid3.flv"];
    var index:uint=0;
    FlvChain.source=flvA[index];
    FlvChain.addEventListener(VideoEvent.COMPLETE,completeF){
    index++;
    if(index<flvA.length){
    FlvChain.source=flvA[index];
    } else {
    // all flvs played
    When I attempt to Debug I get this message...
    "1087: Syntax error: extra characters found after end of program."
    I'm sure I made a silly error. I've never done AS before I'm running CS3 & AS3 on a PC with XP Pro.
    Thanks for any help.

    use:
    import fl.video.VideoEvent;
    var flvA:Array=["vid1.flv","vid2.flv","vid3.flv"];
    var index:uint=0;
    FlvChain.source=flvA[index];
    FlvChain.addEventListener(VideoEvent.COMPLETE,completeF);
    function completeF(e:VideoEvent)
    index++;
    if(index<flvA.length){
    FlvChain.source=flvA[index];
    } else {
    // all flvs played

  • ECC syntax error for ADDFIELD.

    Dear Friends,
    I am getting a syntax error in ECC, for ADDFIELD.
    My original code is :
    data:   XI_SELTAB LIKE RSPARAMS OCCURS 0 WITH HEADER LINE.
          ADDFIELD XI_SELTAB 'ARBPL' V_GEWRK.
    Changed code is :
    *data:   XI_SELTAB LIKE RSPARAMS OCCURS 0 WITH HEADER LINE.
    TYPES: ty_XI_SELTAB TYPE RSPARAMS.
    Data:  XI_SELTAB TYPE  standard table of  ty_XI_SELTAB.
    Data:  wa_XI_SELTAB   type ty_XI_SELTAB.
    ADDFIELD WA_XI_SELTAB 'ARBPL' V_GEWRK.
    What is the exact syntax at here?? it not taking from work area.
    Thanks,
    Sridhar

    Sorry to all,
    Yes Its Micro and defined a like this :
    Macros
    DEFINE addfield.
      &1-sign = 'I'.
      &1-kind = 'S'.
    use operation cp if the value contains wildcards
      if &3 ca '*'.
        &1-option = 'CP'.
      else.
        &1-option = 'EQ'.
      endif.
    append the field name/value to the selection table
      if not &3 is initial.
        &1-selname = &2.
        &1-low     = &3.
        append &1.
      endif.
      clear &1.

  • MS SQL - Syntax error for valid query

    I have a problem with the second query in this code (gives me
    a syntax error in my HAVING line)
    <cfquery name="getDupes" datasource="#application.ODBC1#"
    dbtype="ODBC" username="#application.userNameODBC1#"
    password="#application.userPassODBC1#">
    SELECT *
    FROM view_FormCount
    WHERE formCount >= 2
    ORDER BY formNum
    </cfquery>
    <cfset variables.lstForms = "">
    <cfoutput query="getDupes">
    <cfset variables.lstForms=
    listAppend(variables.lstForms,"'#getDupes.formNum#'")>
    </cfoutput>
    <cfset variables.whereClause = "(formNum =
    #ReplaceNoCase(variables.lstForms,',',' OR formNum =
    ','ALL')#)">
    <cfquery name="getDetails"
    datasource="#application.ODBC1#" dbtype="ODBC"
    username="#application.userNameODBC1#"
    password="#application.userPassODBC1#">
    SELECT tblForms.formNum, tblForms.formName,
    tblForms.formCustNum, tblCompanies.companyAbbr
    FROM tblForms INNER JOIN tblCompanies ON tblForms.formCustNum
    = tblCompanies.companyNum
    GROUP BY tblForms.formNum, tblForms.formName,
    tblForms.formCustNum, tblCompanies.companyAbbr
    HAVING #variables.whereClause#
    ORDER BY tblForms.formNum, tblForms.formCustNum
    </cfquery>
    Now, the really odd thing is if I just take the query text
    out of the CFQUERY tags and use CFOUTPUT instead (to see in my
    browser what query is getting executed) I get a query that I can
    paste into Enterprise Mgr and runs fine.
    I can even paste the resulting text into my code in a CFQUERY
    and CF will run it fine.
    In other words, the dynamic version query gives me an error,
    but if I just output the SQL statement, copy-and-paste that into
    the CFQUERY that's erroring out (replacing what's there) to run as
    a static query, it works fine (sample of static query below).
    The error I get when I try to do it dynamically is "Error
    Executing Database Query. [Macromedia][SQLServer JDBC
    Driver][SQLServer]Line 4: Incorrect syntax near '10169318'. The
    error occurred on line 21." which is where the HAVING clause
    starts.
    SELECT tblForms.formNum, tblForms.formName,
    tblForms.formCustNum, tblCompanies.companyAbbr FROM tblForms INNER
    JOIN tblCompanies ON tblForms.formCustNum = tblCompanies.companyNum
    GROUP BY tblForms.formNum, tblForms.formName, tblForms.formCustNum,
    tblCompanies.companyAbbr HAVING (formNum = '10169318' OR formNum =
    '1016CONCERTA' OR formNum = '1016NSAIDS' OR formNum =
    '1016STRATTERA' OR formNum = '1016WELLBUTRIN' OR formNum =
    '18504211' OR formNum = '185093807' OR formNum = '73208565' OR
    formNum = '732120027' OR formNum = '7322154' OR formNum = '7323402'
    OR formNum = '7323522' OR formNum = '73238900' OR formNum =
    '7324211' OR formNum = '7324211S' OR formNum = '7324265' OR formNum
    = '73242891' OR formNum = '732434341' OR formNum = '732434342' OR
    formNum = '73243435' OR formNum = '73243436' OR formNum =
    '73243439' OR formNum = '73243440' OR formNum = '73243441' OR
    formNum = '73243442' OR formNum = '73243443' OR formNum = '7324359'
    OR formNum = '7324360' OR formNum = '7324370' OR formNum =
    '7324560' OR formNum = '7324959' OR formNum = '7326411ptreg' OR
    formNum = '7326599' OR formNum = '7326600' OR formNum = '7326620'
    OR formNum = '7326707' OR formNum = '7326931' OR formNum =
    '7328410' OR formNum = '732851031TOP' OR formNum = '7328512' OR
    formNum = '7328548' OR formNum = '7328548P2' OR formNum =
    '7328548P3' OR formNum = '7328548P4' OR formNum = '73289400' OR
    formNum = '73290D' OR formNum = '7329154' OR formNum =
    '73291544JHS' OR formNum = '73291545JHS' OR formNum =
    '73291546JHSMH' OR formNum = '73291547JHSMH' OR formNum = '7329174'
    OR formNum = '7329308' OR formNum = '7329402' OR formNum =
    '7329424' OR formNum = '7329455' OR formNum = '7329520' OR formNum
    = '7329539' OR formNum = '73297701JH' OR formNum = '73298273' OR
    formNum = '73298400' OR formNum = '73298403' OR formNum =
    '73298404' OR formNum = '7329883' OR formNum = '73298860' OR
    formNum = '7329887' OR formNum = '73298974' OR formNum = '7329899'
    OR formNum = '7329899S' OR formNum = '73299190' OR formNum =
    '7329987' OR formNum = '7329999PTO' OR formNum = '732AV5160' OR
    formNum = '732CMHFRAZ' OR formNum = '732HIPAA' OR formNum =
    '732HIPAAFLYERS' OR formNum = '734HEART' OR formNum = '7444711' OR
    formNum = '7449230' OR formNum = '744HR4991' OR formNum =
    '7538014MI' OR formNum = '77511044' OR formNum = '77511045' OR
    formNum = '775stampnochange' OR formNum = '80851001BLUE' OR formNum
    = '80MR4200' OR formNum = '80MR4273' OR formNum = '80MR4274' OR
    formNum = '80MR4300' OR formNum = '80MR9934' OR formNum =
    '80MR9935' OR formNum = '80SHC100' OR formNum = '80SHC4301' OR
    formNum = '80SHC9830' OR formNum = '80SHC9832') ORDER BY
    tblForms.formNum, tblForms.formCustNum

    AWFrueh1808 wrote:
    > OK, that's simple enough. But then I'm really confused
    as to why the query in
    > my original post/example didn't work.
    >
    > The only single quotes in my #whereClause# variable were
    wrapped around each
    > varchar value in the WHERE clause (well, HAVING) as in
    HAVING formNum = '12345'
    > OR formNum = '54321'
    >
    > I never used a single quote within the value itself. And
    yet
    > preservesinglequotes fixed it. So what was CF doing? Why
    did the single
    > quotes still show up in the error msg - and in the right
    place?
    >
    As I said the default behavior is to escape the quotes in
    your variables
    as data. So the default output of your SQL statement, before
    preserveSingleQuotes() would be like this.
    HAVING formNum = ''12345'' OR formNum = ''54321''
    As you can see that is not the desired results in your case.
    In your
    case you have the proper number of single quotes in your
    string and you
    do not want any added. You want to preserve them so to say.
    Thus
    adding preserveSingleQuotes() around your whereClase
    variable, i.e.
    preserveSingleQuotes(whereClause) says do not add any quotes,
    keep them
    all single.

  • ABAP Syntax error in this code - Could anyone help?

    Hi,
    I have this code which runs fine in our non-unicode SAP system.
    REPORT  ECC5_OFFSETS.
    DATA: W_KONV TYPE KONV.
    DATA: TKOMK LIKE STANDARD TABLE OF KOMK
                     WITH KEY KEY_UC
                     INITIAL SIZE 2
                     WITH HEADER LINE.
    DATA: TKOMK2 type STANDARD TABLE OF KOMK
                     WITH KEY KEY_UC
                     INITIAL SIZE 2.
    * Get some test data
    SELECT SINGLE * INTO W_KONV FROM  KONV
           WHERE  KNUMV  = '0000000061'.
    MOVE-CORRESPONDING W_KONV TO TKOMK.
    APPEND TKOMK.
    tkomk2[] = TKOMK[].
    * Original non-Unicode compliant code
    DATA: LENGTH_KEY_TKOMK(3) TYPE P.
    FIELD-SYMBOLS: <TKOMK_KEY> like TKOMK2.
    DESCRIBE DISTANCE BETWEEN TKOMK-MANDT AND TKOMK-SUPOS
              INTO LENGTH_KEY_TKOMK
    * ( Original Unicode syntax fix! )
              IN BYTE MODE.
    * Copy all the fields between these two into TKOMK_KEY field-symbol.
    * ( In Unicode this assignment fails, causing short dump at read )
    ASSIGN TKOMK2(LENGTH_KEY_TKOMK) TO <TKOMK_KEY>.
    * Read the current record.
    READ TABLE TKOMK2 WITH KEY <TKOMK_KEY>.
    But I get the following error message in our UNICODE complaint SAP system:
    <b>"<TKOMK_KEY>" cannot be a table, a reference, a string, or contain any of these objects.</b>     
    Does anyone know how I could get around this/suggest a solution?
    Thanks in advance!

    Hi,
    Sorry if I'm being unclear.
    My requirements are twofold:
    1)the line of code:
    ASSIGN TKOMK2(LENGTH_KEY_TKOMK) TO <TKOMK_KEY>
    does not assign anything to the fields symbol <TKOMK_KEY>
    2)The read statement does not like the fields symbol <TKOMK_KEY> being used as a key.
    Both these bits of code worked in our 4.6b system but now in the ECC5 environemtn I get syntax errors.
    Let me know if you need anything else!

  • TRIED THis CODE for TO FIND THE FIBONACCI USING THREAD ,BUT SHOWING ERROR FOR FOLLOWING CODE  fib = fib(k+1);

    showing following error in line 34
    error: cannot find symbol
    fib = fib(k+1);
           ^
      symbol:   method fib(int)
      location: class FibN
    1 error
    import java.util.*;
    class AsynchFunctionTest
    public static void main(String[]args)
    Scanner in = new Scanner(System.in);
    System.out.print("enter value for n");
    int n = in.nextInt();
    FibN t = new FibN(n);
    t.start();
    try
      t.join();
    catch(InterruptedException e){}
    System.out.println("Fib("+n+") = "+ t.getResult());
    class FibN extends Thread
    private int n;
      private long result;
    public FibN(int nn)
      n = nn;
      public void run()
    long fib = 1;
    int k = 0;
    while(k < n){
    fib = fib(k+1);
    k++;
    result = fib;
    public long getResult()
    return result;

    rinojoseph wrote:
    sorry for that this is the error i getting for that code
    error: cannot find symbol   line 34
    fib = fib(k+1);
           ^
      symbol:   method fib(int)
      location: class FibN
    1 error
    Process completed.
    sorry
    Hmm - well you declared 'fib' like this:
    >
    long fib = 1;
    >
    So how do you expect to call a 'long' as if it were a function?

  • Syntax Error in Generated Code

    Hi All,
                I am facing the syntax error in WD4A.
    Web Dynpro Comp. / Intf. Z_PO_REQUEST,Web Dynpro Component Controller COMPONENTCONTROLLER
    Error in Generated Code
    The type "ZIWCI_PO_Request" is unknown, but there is a type with the
    similar name "IG_Z_PO_REQUEST". "IG_Z_PO_REQUEST". "IG_Z_PO_REQUEST".
    Any Suggestions to fix this?.
    Thanks in Advance,
    Rajen.

    Hi All,
                I am facing the syntax error in WD4A.
    Web Dynpro Comp. / Intf. Z_PO_REQUEST,Web Dynpro Component Controller COMPONENTCONTROLLER
    Error in Generated Code
    The type "ZIWCI_PO_Request" is unknown, but there is a type with the
    similar name "IG_Z_PO_REQUEST". "IG_Z_PO_REQUEST". "IG_Z_PO_REQUEST".
    Any Suggestions to fix this?.
    Thanks in Advance,
    Rajen.

  • Syntax error in my code and I can't figure out the problem

    When I try to compile a program, I get this message:
    Syntax error on token "(", "Identifier" expected
    This is the part of the code that is giving me trouble:
    JTextPane textPane = createTextPane();
              JScrollPane paneScrollPane = new JScrollPane(textPane);
              paneScrollPane.setVerticalScrollBarPolicy(
                                  JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
              paneScrollPane.setPreferredSize(new Dimension(250, 155));
              paneScrollPane.setMinimumSize(new Dimension(10, 10));Can you see what's wrong?
    Thanks

    The code's syntax is perfectly fine. The compiler is not falgging an error message in this part of your code. One silly thing you can do:
    Try out this silly change...I don't think it will make any difference but still.
    paneScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);That is, put it all in a single line.
    If it is already in a single line then you can be sure that the problem is being flagged from elsewhere in your code and this portion.
    Vijay :-)

  • Syntax error for using Regular Expression

    HI all,
    I tried to use Regular expresion to convert my string
    my sample code is like this:
    REPLACE ALL OCCURRENCES OF REGEX '\w*' IN INTAB-SCITY WITH '$1_$2'.
    REPLACE ALL OCCURRENCES OF REGEX '\w*' IN INTAB-DCITY WITH '$1_$2'.
    REPLACE ALL OCCURRENCES OF REGEX '\w*' IN INTAB-BCITY WITH '$1_$2'.
    While activating, I got this syntax error:
    The word REGEX is reserved
    What happen?  Did I got a old ECC version?  Or something else got wrong??
    Any help would be appreciated.
    Edited by: Chih-Chieh Chan on Dec 10, 2008 8:58 AM

    My ECC version is 5.0
    does it make some difference?

  • How to remove syntax error for the method which i deleted?

    Hi,
    I implemented a attribute NAME2 in BP_ADDR/AddressDuplicate , in that i implemented GET_P_NAME2 and later deleted attribute it self now i am getting the error "ZL_BP_ADDR_ADDRESSDUPLICA_CN02CP Method "GET_P_NAME2" does not exist. There is, however, a method with the similar name "GET_BP_NAME"
    how to remove this error?
    regards
    Vinay

    Hi Pankaj,
    I tried that it is giving dump
    The following syntax error occurred in program
    "ZL_BP_ADDR_ADDRESSDUPLICA_CN02CP " in include
    "ZL_BP_ADDR_ADDRESSDUPLICA_CN02CM01D " in
    line 1:
    "Method "GET_P_NAME2" does not exist. There is, however, a method with "
    "the similar name "GET_BP_NAME"."
    any clue how to solve this?
    Vinay

  • SLIN issues error for jvascript code in iterator class.

    Hi All,
    concatenate '<input o n Change=checkValidity(this.value,"' p_cell_id '");' into replace .
    If i check the iterator classes in SLIN Extended syntax check it throws error
       Program:  ZCL_SRM_OCI_ITERATOR==========CP  Include:  ZCL_SRM_OCI_ITERATOR==========CM002  Row:     99  [Prio 3]
    Char. strings w/o text elements will not be translated:
    '<center>End Date</center>'
    The message can be hidden with "#EC NOTEXT)
    But even after giving "#EC NOTEXT after the specified line in iterator class code I get the same error in SLIN.
    Kindly suggest how to hide this error.
    Regards,
    Anubhav

    This frankly is terrible, terrrible, terrible advice.If it wasn't obvious, and probably it wasn't obvious to the adviser: granting all permissions grants all permissions to all applets. So once you do that, any applet you download from any site has permission to do anything it likes on your system.
    It might be worthwhile for some spammer or malware writer to write an applet that looks for stupid people who have done this to their systems.
    And here's another reason why it's terrible advice: it only solves the problem for one computer. If somebody else wants to run your applet off your website then you have to give them the same advice, and now you move from stupidity to criminal negligence.
    And if you only ever plan to run it on your own computer, there was no point in writing an applet in the first place. Java applications don't have to deal with the security issues.

  • Syntax helper for ABAP code?

    Please, I would like to ask any of you ABAP developers with some expirience...is there any tool (inside or outside the Workbench) that can color the syntax of ABAP code... (the way it is done in some other IDEs like Visual Studio, JBuilder or even Ultra Edit...) ???

    There are some IDE external of SAP that do that. But .. I try it and don't like that.
    Ex : http://www.sapedit.com/
    Wait for next release, there will be some new stuff.
    Frédéric

Maybe you are looking for

  • Sales Set

    Hai Guys, I am having a problem on having a Sales Set. We have two company codes. I am creating the sales set by the following steps. 1. Create an article, (type: Sales set instead of single article) and in the Basic Data, click the components button

  • Icloud mail no longer exist

    Hi, I want to delete my old icloud account because my icloud mail no longer exist. ([email protected]) On the other hand, my apple id account and icloud account are not the same. If possible, I want to use my current apple id account as the same with

  • No track/artist names or artwork after transfering from CD-R

    Hi, when I first got my Ipod I was using a PC that I no longer have access to. I purchased and downloaded a number of albums and songs to my Itunes account. I have since set up Itunes on my own PC and wished to retrieve the songs I had previously dow

  • SYSTEM ERROR WHILE OPENING CHECK IN

    I format my C7 recently, After that while opening check in it shows SYSTEM ERROR, The same message shows while opening signal boost . . . Whats a remedy . . ?

  • Decimal clipping

    I am using Crystal Report 10. In the Cross Tab object, summarized fields, I am using the Distinct Count of a field value and also using the option "show as percentage". The field format takes on the form of Decimal 1 and Rounding 1 by default and doe