Ampersand in text

Hello,
When I enter text in eg. a purchase order (me21n) and I use the ampersand character "&" in there in for instance the header text. The text is stored in the table as <(>&<)>. When I request the PO with the BAPI BAPI_PO_GETDETAIL this <(>&<)> is also given as a result in the BAPI.
When I use this BAPI remote i do not want the extra characters around the &. Is there anybody who knows how to avoid these extra characters.
tnx.
Emile

Hi Emile,
SAP Note 730598 covers this.  As you suggested, this is normal behavior because the ampersand is stored in the database with extra characters.  The text can be converted from SAPScript to plain text using function module CONVERT_ITF_TO_ASCII.

Similar Messages

  • Ampersand (&) in text passed to OSP

    I know this is a stupid question... but our client wants to search based on a free-form text column which may or may not contain ampersands. The OSP reads the text as a parameter and builds the search condition. No problem, but if the text passed contains an ampersand the entire OSP fails and sends an error to the client.
    Is there some way to escape or work around this problem? In PL/SQL I can SET DEFINE OFF or SET SCAN OFF and deal with ampersands.
    Any ideas?
    Jeff

    OSP - Oracle Stored Procedure, called via ODBC passing string parameters. One of the strings contains & (ampersand) which appears to be causing some issues...
    Sorry about the acronym, and the ASP page uses ODBC, that is the relevance.
    null

  • How to get around Ampersand in text field in Select statement

    I have an SQL statement I am trying to run in SQL*Plus. In one of my subqueries, I have a select statment in which some of the fields I am trying to pull have an "&" within the text. So, when I try and run the query it returns "Enter value for 35:". I've even tried wildcard characters and it is still not working. If anyone could help me with this, I would appreciate it. Here is a sample of my statement (the subquery is at the bottom of the statement):
    select real_case.file_dt, real_case.dscr, pty_cd, first_name, last_name, addr_line1, addr_line2, city, st_cd, zip_cd
    from real_case, pty, idnt, ptyaddr s1, addr
    where real_case.case_id = pty.case_id
    AND pty.idnt_id = idnt.idnt_id
    AND pty.case_id = s1.case_id
    and pty.seq = s1.seq
    and s1.addr_id = addr.addr_id
    and (real_case.file_dt >= '01-NOV-06'
    and real_case.file_dt <= current_date)
    and (real_case.dscr like '79D01-%'
    or real_case.dscr like '79C01-%'
    or real_case.dscr like '79D02-%')
    and (pty.pty_cd like 'DFNDT')
    and (s1.ins_dttm in
    (select max(s2.ins_dttm) from ptyaddr s2
    where s2.case_id = s1.case_id
    and s2.seq = s1.seq))
    and (real_case.case_id in
    (select case_id from ptychrg
    where ptychrg.actn_cd IN ('35-41-5-1&35-48-4-1')));Thanks,
    Shannon

    this?
    SQL> set define off
    SQL> ed
    Wrote file afiedt.buf
      1  with t as
      2    (select 'a&b' col from dual
      3      union all
      4      select 'abc' from dual)
      5   select    * from t
      6*  where col like '%\&%'
      7  /
    COL
    a&b
    or this
    SQL> ed
    Wrote file afiedt.buf
      1  with t as
      2    (select 'a&b' col from dual
      3      union all
      4      select 'abc' from dual)
      5   select    * from t
      6*  where col like '%'||chr(38)||'%'
    SQL> /
    COL
    a&bjust '%'||chr(38)||'%' will not work.
    You nedd either set scan off or set define off
    correction
    Message was edited by:
    devmiral

  • Escape the Ampersand in SQL Interface

    How can I escape the & in the SQL Interface? Backslash doesn't work. I don't have any subvars.
    Essbase 11.1.1.3

    Have you tried putting quotes around the member name?
    Anytime you have a space, then ampersand, then text, it will try to resolve it as a subvar. Now if you have a member name with Text & Text, you would naturally have quotes around it as "Text & Text", which would be ok.
    As a best practice, just don't nestle the & up to text on the right side as it will always look for it to be a subvar. I've even encountered issues with that in ASO, as membernames are enclosed by brackets(not quotes).
    Robert

  • Org.xml.sax.SAXParseException

    Hi All,
    I am trying to parse an xml file whcih contains some special characters like "&" using DOM parser.
    So, i am gtting the saxparse exception "The reference to entity "T" must end with the ';' delimiter"
    Is there any way to overcome this exception, since i could not modify the xml file to remove the special characters, since it is coming from different application.
    Pls suggest a way to parse this xml file to get the root element?
    My XML contains:
    <P>Net: J^l </P>
    <P>Total: JL'J </P>
    *<P><Figure ActualText="&T ">*
    <ImageData src="images/17PT 07009K_img_1.jpg"/>
    &T </Figure>
    Checked by </P>
    Thanks in advance...

    It appears that this "other application" is generating malformed XML. Apparently its author did not code it to escape ampersands in text elements correctly.
    There is no way for you to parse that. You will have to get the other application fixed.

  • Encoding Issue : JMS and Mapping : utf-8 iso8859-1

    Hi All,
    I am facing some problem with encoding issue.
    Scenario :  JMS -->  SAP PI --> JMS
    Requirment : Input plain text file contain some special characters,"©®" . Based on this condition,In Java Mapping
                       we check the Payload and changed the 'encoding' tag to UTF-8 or   ISO8859-1.                                                     
                   : <?xml version="1.0" encoding="UTF-8"?>     in the target XML output.
    While testing in Operation mapping our Java mapping works fine. as the encodeing tag changes from
                 UTF-8 to ISO8859-1 if the special character exists.But if I test the same in Integration Directory(Test Configuration)
                 or did a end to end  testing. The encoding tag did'nt changes.
    For testing we had to a set of Plain Text files with UTF-8 and ISO8859-1 .
    I tried the options of using beans in Adapter modules in Sender JMS channel.
    MessageTransformBean, TextCodepageConversionBean, XmlAnonymizerBean
    These doc & threads ,was also referred[How to Handle Encoding in PI|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42]
    Regards,
    Ashutosh R

    Hi
    public static boolean fixSpecialCharforWeb(String text) {
            int i = 0;
            Character c = null;
            char[] ctext = null;
            StringBuffer newText = new StringBuffer("");
            //boolean encodingType = false;
            if ((text == null) || (text.trim().length() == 0)) {
                return encodingType;
            } else {
                try {
                                   for (i = 0; i < text.trim().length(); i++) {
                        ctext = text.trim().substring(i, i + 1).toCharArray();
                        c = new Character(ctext[0]);
                        //Single quote
                        if ((text.trim().substring(i, i + 1).equals("'")) || (c.hashCode() == 8217) || (text.trim().substring(i, i + 1).equals("?")) || (c.hashCode() == 146) || (c.hashCode() == 145)) {
                            //newText.append("'");
                            encodingType = true;
                            return encodingType;
                        //Double quotes
                        if ((c.hashCode() == 8220) || (c.hashCode() == 8221) || (c.hashCode() == 147) || (c.hashCode() == 148)) {
                            //newText.append(""");
                            encodingType = true;
                            return encodingType;
                        // bullet point
                        if ((c.hashCode() == 8226) || (c.hashCode() == 149)){
                            encodingType = true;
                            return encodingType;
                        // tilde
                        if ((c.hashCode() == 732) || (c.hashCode() == 152)){
                            encodingType = true;
                            return encodingType;
                        // Soft Hypen
                        if (c.hashCode() == 173){
                            encodingType = true;
                            return encodingType;
                        // En-Dash
                        if ((c.hashCode() == 8211) || (c.hashCode() == 150)) {
                            encodingType = true;
                            return encodingType;
                        // Em-Dash
                        if ((c.hashCode() == 8212) || (c.hashCode() == 151)) {
                            encodingType = true;
                            return encodingType;
                        // Euro Sign
                        if ((c.hashCode() == 8364) || (c.hashCode() == 128)) {
                            encodingType = true;
                            return encodingType;
                        // Yen Sign
                        if (c.hashCode() == 165) {
                            encodingType = true;
                            return encodingType;
                        // Pound Sign
                        if (c.hashCode() == 163) {
                            encodingType = true;
                            return encodingType;
                        // 1/2 sign
                        if (c.hashCode() == 189) {
                            encodingType = true;
                            return encodingType;
                        // 1/4 sign
                        if (c.hashCode() == 188) {
                            encodingType = true;
                            return encodingType;
                        // 3/4 sign
                        if (c.hashCode() == 190) {
                            encodingType = true;
                            return encodingType;
                        // Sword/dagger
                        if ((c.hashCode() == 8224) || (c.hashCode() == 134)) {
                            encodingType = true;
                            return encodingType;
                        // Trademark
                        if ((c.hashCode() == 8482) || (c.hashCode() == 153)) {
                            encodingType = true;
                            return encodingType;
                        // Ampersand &
                        if ((text.trim().substring(i, i+1).equals("&")) || (c.hashCode() == 38)) {
                            encodingType = true;
                            return encodingType;
                        //Registered mark
                        if ((text.trim().substring(i, i + 1).equals("?")) || (c.hashCode() == 174)) {
                            //newText.append("®");
                            encodingType = true;
                            return encodingType;
                        //Copyright mark
                        if ((text.trim().substring(i, i + 1).equals("?")) || (c.hashCode() == 169)) {
                            encodingType = true;
                            return encodingType;
                        // Question.
                        if (c.hashCode() == 63 && c.toString().equals("?")){
                            //newText.append("?");
                            encodingType = true;
                            return encodingType;
                        //handling symbol ?
                        if ((text.trim().substring(i, i+1).equals("?")) || (c.hashCode() == 233)) {
                            encodingType = true;
                            return encodingType;
                        if ((text.trim().substring(i, i+1).equals("?")) || (c.hashCode() == 232)) {
                            encodingType = true;
                            return encodingType;
                        if (c.hashCode() == 144) {
                            encodingType = true;
                            return encodingType;
                } catch (Exception e) {
                    e.printStackTrace();
            return encodingType;

  • How can I get an ampersand to show up when between two other letters, in a text variable?

    Using Indesign CC 2014, on Windows 7.
    Creating a catalog.
    The company name is used throughout.
    Since this catalog will be re-branded for distributors at random, the company name will change all the time.
    So, here's a text variable I'm defining:
    The issue is that when I attempt to use an ampersand (&) between two letter with no spaces, the ampersand disappears.

    Yes!! You got it!
    Works. Thank you!
    Wish I'd thought of that . . .

  • Ampersand in a radio button text

    Please, can somebody tell me how do I get an ampersand (&) in a radio button text using screen painter.
    Thanks

    On the Element list/General attr. tab I have:
    Name     Type     Line     Column     Format
    G_PRJ     Radio     21     30     CHAR
    G_PRJ     Radio     21     32     
    On the Element list/Texts/ I/O templates tab I have:
    Name     Type     Text
    G_PRJ     Radio     _
    G_PRJ     Radio     P&S
    With these settings, I am getting a fullstop instead of &, so adding the text in the element list didn't work for me. BTW The text where it says _ (underline) is read-only.
    Thanks.

  • Problem with display of ampersand in reports

    I enter the following text into a "notes" item on a page:
    Send request to AT&T.
    When I use this notes item in a report the following is displayed:
    Send request to AT
    Note the ampersand and the T are missing.
    If I remove the period at the end of the note:
    Send request to AT&T
    The report displays properly:
    Send request to AT&T
    If I append text to the original note like this:
    Send request to AT&T for test.
    The report note will display properly:
    Send request to AT&T for test.
    The issue seems caused by the period following AT&T. This is APEX 3.2.1.00.12.
    Besides the work around of editing the text, does anyone know what else might fix the problem?

    Doesn't appear to be anything out of the ordinary there.
    The obvious solution is to escape the ampersand, which will stop it being specially treated by either APEX or HTML:
    SELECT n.note_id, l.lce_type, htf.escape_sc(n.note) note, n.created_by, n.created_date, n.last_updated_by, n.last_updated
    FROM ticket_lces l, lce_notes n
    WHERE l.ticket_id = :P33_TICKET_ID
    AND l.lce_id = n.lce_idAlthough I'm not sure why this is necessary. Can't say I've come across a report column doing this before...
    Standard or interactive report?
    If it's a standard report: What is the Display As property of the <tt>note</tt> column? Is there any post-query manipulation of the <tt>note</tt> column in the report: HTML Expression, Link etc?

  • Single quote used with in text data renders to inalid display

    I have the following text snipit that is coming from an Oracle database column: ...did not include 'special decontamination'. New ...
    I am putting this into a pretty standard text object.  When the report is previewed and subsequently printed as a PDF each single quote is transformed to the text string &_#_3_9_; code (without the underscores). This also occurs for quotation marks appearing as &_q_u_o_t_; and ampersands appearing as &_;_a_m_p_;
    I've tried changing the text interpretation property from none to rtf and, with a refresh, nothing changed.  It is hard for me to believe that no one else has seen this but since you can not search the forum for this string (as it converts it to the single quote) may not one has asked.
    Thanks in advance.

    Hi Don,
    The CLOB would do it. 
    Not sure there is a way around this aside from how you've already been dealing with it. 
    To simply your formula a bit, you don't need to do a loop just have it check for each of the tags like:
    stringVar TempText := {PPR_Main.CONCERNS};
    TempText := Replace (TempText, '&_#_3_9_;', "'") ;
    TempText := Replace (TempText, '&_;_a_m_p_', "&") ;
    TempText := Replace (TempText, '&_q_u_o_t_;', '"') ;
    TempText
    I agree though that there may be other tags added later on based on other characters so it could be infinite.  Try the common characters like Exclamation and Question marks. 
    Good luck,
    Brian

  • Using html in cf report builder and escaping the & ampersand character

    Some of the data we collect is entered via a WYSIWYG editor.  Therefore formatting such as bold, italic etc is translated into HTML.
    The text could also contain special characters/accented characters, again these are translated into their html equivalents.
    In CF Report Builder, I have set the XHTML Text formatting to TRUE.  However the report won't render the text in these boxes.  From what I can see it doesn't like the '&' character (ampersand).
    I have read elsewhere that report builder is limited in the characters etc that it can read and that I should translate the values.  I ended up doing this in the database to try and save some time.
    CREATE  OR REPLACE FUNCTION translatexhtmltoasci(var_text IN appendix3%TYPE)
      RETURN clob
    ISvar_translated_text clob;BEGIN
     select  replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(re place(replace(
      replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(re place(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace
      (replace(replace(replace(replace(replace(replace(replace(replace(replace(
    var_text , chr(38) || 'lt;', chr(60))
      , chr(38) || 'gt;', chr(62))
      , chr(38) || 'euro;', chr(49792))
      , chr(38) || 'iexcl;', chr(49825))
      , chr(38) || 'cent;', chr(49826))
      , chr(38) || 'pound;', chr(49827))
      , chr(38) || 'curren;', chr(49828))
      , chr(38) || 'yen;', chr(49829))
      , chr(38) || 'brvbar;', chr(49830))
      , chr(38) || 'uml;', chr(49832))
      , chr(38) || 'copy;', chr(49833))
      , chr(38) || 'ordf;', chr(49834))
      , chr(38) || 'laquo;', chr(49835))
      , chr(38) || 'not;', chr(49836))
      , chr(38) || 'shy;', chr(49837))
      , chr(38) || 'reg;', chr(49838))
      , chr(38) || 'macr;', chr(49839))
      , chr(38) || 'deg;', chr(49840))
      , chr(38) || 'plusmn;', chr(49841))
      , chr(38) || 'sup2;', chr(49842))
      , chr(38) || 'sup3;', chr(49843))
      , chr(38) || 'acute;', chr(49844))
      , chr(38) || 'micro;', chr(49845))
      , chr(38) || 'para;', chr(49846))
      , chr(38) || 'middot;', chr(49847))
      , chr(38) || 'cedil;', chr(49848))
      , chr(38) || 'sup1;', chr(49849))
      , chr(38) || 'ordm;', chr(49850))
      , chr(38) || 'raquo;', chr(49851))
      , chr(38) || 'frac14;', chr(49852))
      , chr(38) || 'frac12;', chr(49853))
      , chr(38) || 'frac34;', chr(49854))
      , chr(38) || 'iquest;', chr(49855))
      , chr(38) || 'Agrave;', chr(50048))
      , chr(38) || 'Aacute;', chr(50049))
      , chr(38) || 'Acirc;', chr(50050))
      , chr(38) || 'Atilde;', chr(50051))
      , chr(38) || 'Auml;', chr(50052))
      , chr(38) || 'Aring;', chr(50053))
      , chr(38) || 'AElig;', chr(50054))
      , chr(38) || 'Ccedil;', chr(50055))
      , chr(38) || 'Egrave;', chr(50056))
      , chr(38) || 'Eacute;', chr(50057))
      , chr(38) || 'Ecirc;', chr(50058))
      , chr(38) || 'Euml;', chr(50059))
      , chr(38) || 'Igrave;', chr(50060))
      , chr(38) || 'Iacute;', chr(50061))
      , chr(38) || 'Icirc;', chr(50062))
      , chr(38) || 'Iuml;', chr(50063))
      , chr(38) || 'ETH;',

    I also stuck with this . Still no answer, no solution

  • How can I find and change text in Hyperlinks?

    I have 6000 hyperlinks in my document, I need to change all of the "&" they contain (in the url destination, not in the textflow) to "%26" so I can export to Epub correctly (I'm getting the classic "Export failed" and found out in forums that ampersands in hyperlinks are the problem).
    Can this replacement be automated? Maybe with Javascript? I just don't know how to search just through hyperlinks' text (url).
    Thanks a lot.

    It's perfect! Thanks a lot again!
    2011/7/19 John Hawkinson <[email protected]>
    Oh, incidently, Harbs has a script that does this with a UI.
    >
    >
    http://in-tools.com/downloads/indesign/scripts/ReplaceHyperlinkUrlValues.jsx
    >
    It's basically the same thing, but maybe a bit more user-friendly.
    >

  • Transfer document header text from billing document to FI document

    Dear all,
    Where do I specify that the document header text out of the billing document should be transferred to the corresponding FI document?
    Currently, the FI document header text (BKPF-BKTXT) remeans blank after transfer from billing document. We need this field to be filled in, but I haven't found how to have this filled in.
    In copy control from sales doc to billing doc, there is the possibility to transfer the Reference number & Assignment, but nothing about document header texts.
    Some say that it would only be possible via coding, but anybody has any idea if it might be possible via standard SAP?
    Many thanks!
    Best regards

    Hi,
    We also had a bit same requirement, which is to copy the billing header text to FI item text (BSEG-SGTXT). The solution we took is to use FI Substitution (t-code GGB1), so that every time a FI document created from SD... the substitution reads the billing header text and put it in the FI item text. I think the same method could be used for FI header text (BKPF-BKTXT). Below is the solution for your reference.
    Prerequisite:
    Document Type = 'RV' AND Reference <> '' AND
    ( Transaction code = 'VF01' OR Transaction code = 'VF02' OR
    Transaction code = 'VF03' )
    Substitution:
    Using exit which coding is as below.
    *&      Form  u900
          Copy Billing Header Text to SGTXT
         -->P_SGTXT    FI Item Text
    FORM u900 USING p_sgtxt TYPE bseg-sgtxt.
      DATA: lv_name TYPE thead-tdname,
            lt_line TYPE STANDARD TABLE OF tline,
            lw_line TYPE tline.
      lv_name = bkpf-xblnr.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          id                      = 'Z001'
          language                = sy-langu
          name                    = lv_name
          object                  = 'VBBK'
        TABLES
          lines                   = lt_line[]
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      IF sy-subrc EQ 0.
        READ TABLE lt_line
          INTO lw_line
          INDEX 1.
      In Billing Header Text, the sign '&' (ampersand) is automatically
      added some characters so it becomes '<(>&<)>'.
      The logic below is to fix that issue.
        REPLACE ALL OCCURRENCES OF '<(>' IN lw_line-tdline WITH space.
        REPLACE ALL OCCURRENCES OF '<)>' IN lw_line-tdline WITH space.
        p_sgtxt = lw_line-tdline.
      ENDIF.
    ENDFORM.
    Regards,
    Teddy Kurniawan

  • How to remove representation of grammar correction of text (FM read_text)?

    Hi ABAP Gurus,
    I am working on a program that downloads data to Excel.
    The data comes from the text using the FM read_text.
    I tried to look at the data and it contains grammatical error like no spaces are provided after end of each sentence.
    When I tried to view it, an ampersand sign (#) appeared in between of those words. See sample below:
    This account should be used to hold the Raw Material related variances within Finished Product Variances.#This Account is being set-up as open item managed account to support the global requirement.
    If you notice, the correct grammar entails us that there should be spaces after period (.) of the 'Variances' before the 'This' word. As a result when viewing such text, an ampersand appeared  using the old editor though the ampersand sign did not appear using the new text editor.
    My case then is to remove the such appearance of ampersand but I cannot remove it since the abap code cannot determine it  as a character.
    It helps me conclude then  that the ampersand sign that appeared in representation of grammar check (usually words are highlighted in red)  is not really a character. It is the representation of that crooked red line during grammar chek of the text.
    I have to get rid of that ampersand since I am downloading the data to excel, otherwise it causes the data to move to another row in excel file.
    Please help me.
    Thank you.
    Regards,
    Onyx

    What I have had to do, in one similar instance, is find the special characters that were being 'pasted in' by someone who was copying and pasting from a desktop file that had oddball hex characters in it...Here's the approach I took (to the best of my memory).
    Look in debug and identify the hex value of the characters...
    Turn off the unicode switch in porgram attributes, so you can declare type x.
    Set fields like this: 
    lc_hex1 type x value '09'.  "1 character hex field...put in the bad hex value you saw in debug...
    declare as many of these constants as you need....
    then ....
    field-symbols <fs> type tline.
    loop at itxt assigning <fs>.
    if <fs> is assigned.
    replace all occurrences of lc_hex1 with space into <fs>-tdline.
    replace all occurrences of ... with space into <fs>-tdline.  "as many times as needed for each "bad" character.
    condense <fs>-tdline.  "squeeze all the extra spaces out
    endif.
    endloop.
    Then you might want to call something like RKD_WORD_WRAP to reformat to the length you'd like, breaking on word (space) boundardies.
    Edited by: BreakPoint on Jun 25, 2010 8:15 PM  ... use replace all occurrences instead of do...enddo.

  • Importing special characters from text file

    My project requires me to import a text file into a dynamic
    text field by using the loadVariables() function. My problem is
    that the text file contains a ampersign "&" . It seems that the
    ampersign stops the rest of the text from being imported into my
    flash movie. Is there a special character or escape character that
    I can use to allow me to import the ampersign?
    I've tried using the &amp; and setting my dynamic text
    field to HTML. No luck. Oh.. I'm using flash MX :(
    Any ideas?

    Hey I've run into this problem and found the solution lies
    with JavaScript which can read the text just fine and then parse it
    back to Flash as escape characters:
    //JavaScript code:
    var origText = 'blah blah & then i did this & then
    blah blah";
    var newText = String(escape(origText).replace(new
    RegExp('\\+', 'g'), '%2b'));
    FlashWin.sendText(newText); // << this is a reference
    to a flash window with ExternalInterface enabled
    // end
    However, I was using HttpRequest in JS to get my original
    data. So this method is dependent on something other than Flash to
    retrieve the original text (with ampersands).
    I really hope they fix this bug in the future, it can drive
    you nuts....
    -Dan

Maybe you are looking for

  • Ipad mini's screen freezing.

    What seems to be the problem of my ipad mini, the screen keeps on freezing and also it keeps on popping up a lot of pictures and texts?

  • How can i fix my sound

    how can i fix my sound on my laptop

  • R.I.P Steve Jobs

    Adam came to the earth with biting an apple and Steve went back to heaven with same bite, rest in peace and thank you for all you have done!

  • The right click menu pops up after I push the right mouse button, instead of when I release it.

    I am using an extension All-In-One Gestures. It works on my other installation of Firefox 4 - particularly, the right-click menu pops up if I click right mouse button and then release it so I can perform gesture or turn the wheel instead of getting a

  • Super Easy Tomcat 4.0 question

    I have a bunch of JSPs at d:\rhhshn\ (Tomcat is on the same drive). How can I get them to compile and run? It was like two lines of code in Tomcat 3.2 but 4.0 is literally several dozen and cut-and-paste didn't work. My classpath is already set for t