Spanish character label

Hi - I need to put the Spanish upper case N with the tilde as
the label parameter of a button component. How do I do that??
TIA your help.
d2

No offense, redbaron1616, but when I clicked on your link, my
McAfee SiteAdvisor program told me that the site that the link took
me to had links to sites that were known for breaching browser
security. Again, no offense...
To answer your question, if you are running Windows, I would
suggest that you use Character Map. However, if you're using Mac OS
X, my only way to help is to provide most of the characters (I left
out Japanese and Latin symbols) that you cannot access through
typing on the keyboard. Simply COPY the character you need, and
PASTE it in Flash. Tell me if any characters do NOT appear normal
on your computer:
¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúû üýþÿĀāĂ㥹ĆćĈĉČčĎďđĒēĘęĚěĜĝĤĥħĨĩĪīıĴĵĹ弾ŁłŃńŇňŋŌōŐőŒœŔŕŘřŚśŜŝŞşŠšŢţŤťŨũŪūŬŭŮůŰűŸŹźŻżŽžƒƓǂ ‰⁰⁴⁵⁶⁷⁸⁹₀₁₂₃₄₅₆₇₈₉™⅓⅔⅕⅖⅗⅘⅙⅚⅛⅜⅝⅞
I've included the copyright symbol, the registered trademark
symbol, the trademark symbol, the cents sign, fractions 1/3, 2/3,
3/5, 4/5, 7/8 and more. I even included the Spanish upper case N
with the tilde.
Before using these, make sure that your selected font has
these characters.

Similar Messages

  • How to find out the ASCII Values for Spanish character

    Hi,
    I had an requirement to store Spanish character and also need to fileter the records based on the Spanish character.
    Kindly guide me for below.
    To filter the Records which contains spanish characters?
    To get the ASCII Values for the particular column?
    E.g. we can find out the ASCII value of 'a' by using the syntax select ASCII('a') from dual.
    But I want to find the ASCII Values for the particular column value. Ie. name.
    E.g., Client name is "Suresh", I want to the ASCII Values for entire name of "Suresh".
    Kindly do the needful help / Guidance on this.
    Thanks,
    Orahar

    To expand on what I said in my first post, you want to do something along these lines:
    with t (thename) as
      select 'Suresh' from dual
    select thename
         , substr(TheName, level, 1)
         , ascii(substr(thename, level))
      from t
    connect by level <= length(thename);The output of the above query is:
    THENAM S ASCII(SUBSTR(THENAME,LEVEL))
    Suresh S                           83
    Suresh u                          117
    Suresh r                          114
    Suresh e                          101
    Suresh s                          115
    Suresh h                          104
    6 rows selected.Note that the WITH statement is only there to simulate a table for this example. With a table, all you do is get rid of the with and substitute the name "t" for the name of your table (also the name of the column to whatever name the column has in your table).
    Lastly, I suggest you post your question along with, an example table and the output you'd like to get in the PL/SQL forum. There are people there that will give you all kinds of great ways of solving that problem.
    HTH,
    John.

  • Build new database through scripts must understand spanish character sets.

    Hello Gurus,
    I need some simple advice, a good chance for some quick points for you.
    I have never built a database to understand any other character set other than American English. I now have to build a database that will be used for Spanish characters- keyboards, etc. But I will be using English for the 11g software install. I only wish to be able to show Spanish characters in the data for customers names.
    I will be creating the database with scripts I have made to make the standard template for database files, control files, etc.
    Then I will be importing from a dump I have done that was made with American English character sets.
    System is 11g (11.2.0.3.0) on Linux Enterprise Server 5.8.
    I was thinking to use the AL32UTF8 character set, but I am unsure where to use it.
    My original test did not show Spanish characters for customers names like the 'tilda' or 'sueano' (pardon my spelling). But in this case I did not make the exeception for Spanish, I only used the standard American English build (no changes in the init.ora file or initial database build script).
    How can I adjust my parameter file for the initial creation of the database template to be able to understand the Spanish character set and still be able to import my dump file without error.
    EXAMPLE of a build script:
    CREATE DATABASE mynewdb
    USER SYS IDENTIFIED BY sys_password
    USER SYSTEM IDENTIFIED BY system_password
    LOGFILE GROUP 1 ('/u01/app/oracle/oradata/mynewdb/redo01.log') SIZE 100M,
    GROUP 2 ('/u01/app/oracle/oradata/mynewdb/redo02.log') SIZE 100M,
    GROUP 3 ('/u01/app/oracle/oradata/mynewdb/redo03.log') SIZE 100M
    MAXLOGFILES 5
    MAXLOGMEMBERS 5
    MAXLOGHISTORY 1
    MAXDATAFILES 100
    CHARACTER SET US7ASCII
    NATIONAL CHARACTER SET AL16UTF16
    If I replace NATIONAL CHARACTER SET AL16UTF16 to AL32UTF8 will it work to show Spanish characters?
    Sorry for the long winded question, any advice will be great.
    Thankfully,
    Shawn

    Hello,
    the national charsets is for column types like nvarchar not for normal varchar data types. So if your dump file contains such column types you will also need to set it. The charset is for the normal column types like varchar. The use of unicode is best pratice if you use multiel language, but keep in mind that multibyte charset can be a problem during the import because varchar2(10) means 10byte and not 10 chars, so errors like identifier to long can occur during import.
    You can create the database.
    Check this documentation:
    http://docs.oracle.com/cd/B28359_01/server.111/b28298/ch2charset.htm
    You can use a charset like WE8MSWIN1252 which covers spanish also (as far i know) and is a superset to us7ascii
    regards
    Peter

  • Reading spanish character in a unicode system

    Hi everyone
    i am getting a dump while reading a spanish character in the flat file using Open dataset.
    OPEN DATASET g_datei FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    when i cheked the flat file in AL11 it is showing # in the place of the spanish character.
    is it the unicode problem?

    You can try using this. It's a little test page for dealing with Chinese (and others) in the browser. I find that if Chinese works, any others should also. Assuming you have the right fonts, of course.
    _lang.jsp
    <%@ page language="java" contentType="text/html; charset=UTF-8" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
         <title></title>
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
         <meta name="Generator" content="TextPad 4.0" />
         <meta name="Author" content="" />
         <meta name="Keywords" content="" />
         <meta name="Description" content="" />
    </head>
    <body bgcolor="#ffffff" background="" text="#000000" link="#ff0000" vlink="#800000" alink="#ff00ff">
    <%
    request.setCharacterEncoding("UTF-8");
    String str = "\u7528\u6237\u540d";
    String name = request.getParameter("name");
    if(name != null) {
         // instead of setCharacterEncoding...
         //name = new String(name.getBytes("ISO8859_1"), "UTF8");
    System.out.println(application.getRealPath("/"));
    System.out.println(application.getRealPath("/src"));
    %>
    req enc: <%= request.getCharacterEncoding() %><br />
    rsp enc: <%= response.getCharacterEncoding() %><br />
    str: <%= str %><br />
    name: <%= name %><br />
    <form method="GET" action="_lang.jsp" encoding="UTF-8">
    Name: <input type="text" name="name" value="" >
    <input type="submit" name="submit" value="Submit" />
    </form>
    </body>
    </html>

  • Spanish Character Sets Garbled

    We have a client that is trying to use Contribute CS4 to edit some pages with Spanish content.  The chacter sets show up correctly when viewing in Contribute but after publishing -- they are all garbled.
    The reading I've done online consists of people mainly complaining about Contribute being horrible for multi-lingual but I haven't seen any solutions or workarounds.
    Anyone got a suggestion?
    Thanks!
    Erik

    Hello,
    the national charsets is for column types like nvarchar not for normal varchar data types. So if your dump file contains such column types you will also need to set it. The charset is for the normal column types like varchar. The use of unicode is best pratice if you use multiel language, but keep in mind that multibyte charset can be a problem during the import because varchar2(10) means 10byte and not 10 chars, so errors like identifier to long can occur during import.
    You can create the database.
    Check this documentation:
    http://docs.oracle.com/cd/B28359_01/server.111/b28298/ch2charset.htm
    You can use a charset like WE8MSWIN1252 which covers spanish also (as far i know) and is a superset to us7ascii
    regards
    Peter

  • SGD / Spanish Character  -MS Office

    Im having trouble to use spanish characters within the ms office. I did change the ms office language to spanish even the operating system. But when the users logging into the SGD and launch the excel or word apps, they can use spanish special characters. how do I have to some within SGD or MS office.
    any help will be appreciate it.

    Hi,
    If there’s an earlier version of Office installed on the computer, please first uninstall it from Control Panel > Programs and Features.
    If no other version of Microsoft Office is installed on the computer except Office 2010, try the following steps:
    1. Open Programs and Features under Control Panel;
    2. Right-click on Microsoft Office 2010 > select Change;
    3. Select the option to ‘Enter a product key’ > Continue;
    4. Enter the Product key to update and close the wizard once the configuration complete;
    5. Restart any Office 2010 application to activate;
    6. Ensure Office 2010 is activated then close the open windows for the Office 2010 application.
    For more information about the key is not valid error, please refer to the KB below:
    http://support.microsoft.com/kb/812467
    You can try the methods mentioned such as Delete temporary Internet files to check the result.
    If this issue persists, we may contact the Customer Service:
    https://support.microsoft.com/gp/contact_microsoft_customer_serv?&fr=1
    Regards,
    Melon Chen
    TechNet Community Support

  • ISO8859 Spanish Character set Problems

    Hi,
    At the time, we bought a web content server (OPMKT, based JSP), we installed the
    embedded Weblogic 6.1 Sp2 and using Oracle 8.1.7.
    We are using the codeset we8iso8859p15 for Oracle and for Weblogic the codeset:
    ISO8859_15_FDIS (Dfile.encoding)
    But the special Spanish characters (i.e. accents or euro currency) using the browser
    are not right.
    Can anyone help me with this??? Do we need to upgrade the WL6.1 SP2 to SP4 or
    SP5?
    Thanks in advances,
    Santos

    Yes, Of course I was changed the WL startup scripts on NSL_LANG=ES.ISO8859_15.
    and It is the same. (it is not working).
    "Jo Willems" <[email protected]> wrote:
    Did you specify NLS_LANG env variable in your startup script for weblogic?
    j.
    "Santos" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    At the time, we bought a web content server (OPMKT, based JSP), weinstalled the
    embedded Weblogic 6.1 Sp2 and using Oracle 8.1.7.
    We are using the codeset we8iso8859p15 for Oracle and for Weblogicthe
    codeset:
    ISO8859_15_FDIS (Dfile.encoding)
    But the special Spanish characters (i.e. accents or euro currency)using
    the browser
    are not right.
    Can anyone help me with this??? Do we need to upgrade the WL6.1 SP2to SP4
    or
    SP5?
    Thanks in advances,
    Santos

  • XMLP unable to parse Spanish Character "¿" ?

    Hi Friends,
    The report is completed with status warning as it is unable to parse the character "¿".
    Setup at profile
    FND: NATIVE CLIENT ENCODING : "WE8ISO8859P1"
    ICX: Client IANA Encoding : "Unicode (UTF-8)"
    please help me..
    Regards,
    Swain

    Hi,
    Goto MS-WORD application
    1. Open MSWord and use Insert->Symbol.
    2. Now find the font you want
    there are special characters also ... chk out that also .
    It will solve the issue... even in case of checkbox case you use this way.
    Its due to font was not applied on your MS-Word application.
    regards
    Ratnesh

  • We have an Iplanet 4.1 in front of an app server; request of the form .../?option=� fail with "Bad Request" if they contain a Spanish character... how can this be avoided?.

    If we issue the request to the app server directly it does not fail; the web server is intercepting the request.

    Hi,
    Are you running iWS 4.x(SP3-SP5) version of iWS. If so the iWS 4.x strictly enforces US-ASCII requirements of the HTTP RFC and does not allow non-ascii characters in the field of a HTTP header.
    There is a temporary workaround to relax the restriction on HTTP headers to non ASCII characters, Please add the following line to your web server magnus.conf file:
    StrictHttpHeaders off
    Please make sure that after changeing the values in magnus.conf file you restarted the iWS, for new changes take effect. The above workaround will work otherwise, you would need to write your own NSAPI code to scrub the HTTP headers for any non
    US-ascii characters.
    Hope this helps.
    Regards,
    Dakshin.
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support.

  • HTML + using spanish characters

    Hi
    If this is a dumb question - forgive me.
    Note this is for a site that will be in English & Spansih
    (translated pages
    in Spanish)
    But if I want to include spanish characters on a site do I
    need to replace
    each spanish character with ascii code or is there another
    way to get the
    characters to display
    e.g.
    resúmenes - do i have to enter it into the html as
    res&uacute;menes
    also
    When I view the pages on my pc the spanish characters display
    correctly.
    Once the pages are uploaded the spanish characters do not
    display - why
    would this happen?
    Thanks
    B
    www.visit-the-coqui.com/
    If you are thinking of a vacation to Puerto Rico
    http://gadgetgrapevine.blogspot.com
    Latest gadget and other news here

    Thanks david for the explaination.
    So now I need to figure out how I can save my html as utf-8
    without using
    notepad (I don't have dreamweaver and have used up my trial
    period).
    Any one know of any other way of creating a utf-8 html file?
    thanks
    B
    www.visit-the-coqui.com/
    If you are thinking of a vacation to Puerto Rico
    http://gadgetgrapevine.blogspot.com
    Latest gadget and other news here
    "David Powers" <[email protected]> wrote in message
    news:[email protected]...
    >B wrote:
    >> could you explain the difference in 'laymans terms'
    >
    > UTF-8 (Unicode) is designed to handle virtually all
    writing systems,
    > including Arabic, Japanese, Chinese - and English.
    ISO-8859-1 is Western
    > European encoding, which handles only those characters
    used in Western
    > European languages. ISO-8859-1 actually supports the
    accented characters
    > used in Spanish, but older browsers weren't always
    capable of displaying
    > them, which led to the use of HTML entities, such as
    &ntilde;.
    >
    > If you select ISO-8859-1 (Western European) in
    Dreamweaver, it
    > automatically converts all accented characters, such as
    those used in
    > Spanish, into entities, which makes the code very
    difficult to read. If
    > you select UTF-8, the accented characters are preserved.
    Since English
    > doesn't have any accented characters, the encoding is
    identical in
    > ISO-8859-1 and UTF-8.
    >
    > If you're working with a database, though, it's very
    important not to mix
    > the two types of encoding for data that uses accented
    characters. If you
    > do, the accented characters will be garbled.
    >
    >> also I posted another ? regarding a BOM warning that
    I now get after
    >> saving as utf-8 - is this an issue?
    >
    > I saw that, but didn't reply because you said you used
    Notepad. I have no
    > idea how Notepad handles the BOM (if I remember
    correctly, it stands for
    > Byte Order Mark). As the validation warning told you,
    older browsers can't
    > handle the BOM, so it's best to omit it. Dreamweaver
    Preferences let you
    > determine whether to add the BOM or leave it out of
    UTF-8 pages. By
    > default, Dreamweaver omits the BOM.
    >
    > --
    > David Powers, Adobe Community Expert
    > Author, "The Essential Guide to Dreamweaver CS3"
    (friends of ED)
    > Author, "PHP Solutions" (friends of ED)
    >
    http://foundationphp.com/

  • Some character display incorrect after unicode conversion

    Dear Experts,
    Currently we upgrade our SAP system from 4.6B NU to ECC6.0 UN.
    in 4.6B system we had implemented Simple Chinese and French language package to the system. after upgrade to ECC6.0 no-unicode system. we perform a MDMP unicode conversion.currently system running with ECC6.0 unicode interface with language 1EFD. SUMG releated tasks had been finished. Chinese and French language checked OK in ECC6 UN system.
    Our issue is. in the past time. some Spanish local end user typing some spanish character in some master date field when they login in 4.6B GUI choice english as login language.these kind of spanish characters could not display correct in current unicode environment.
    could you please given us some suggestion for how to fix this issue.
    I also sent this message in the Netweaver administrator forums with below links.
    Spanish display incorrect after unicode conversion

    Hello,
    I doubt that the data shown by you in the link was caused by Spanish users logged on in EN.
    I think this was rather caused by utf-8 data uploaded into the Non-Unicode system.
    In this case, you need to repair the according texts manually, I do not know any automatic repair.
    Best regards,
    Nils Buerckel
    SAP AG

  • Is it OK for Spanish characters not to be entities in RH8 webhelp output?

    We are using RoboHelp 8. We have some Spanish words in our English-language help; these Spanish words use some of the accented characters that aren't present in English. My coworker tried using HTML entity codes to enter these characters in the code view, but she noticed that RoboHelp changed these to the actual Spanish character as soon as she switched back to Design view, and this is how they are in the generated webhelp HTML files as well.
    I think this is not a problem. The UTF8 declaration appears in the webhelp output, and the characters seem to appear correctly in the browsers I've tested. Am I correct? Should the output work in older browsers as well?
    Thanks,
    Tammy

    RoboHelp supports 35 languages so the fact that the Design Editor supports those entities does not surprise me.
    The following is from the RoboHelp Tour that can be accessed from my site.
    RoboHelp 7 introduced the ability to work with 35 languages. In RoboHelp 8, you can now define a language for the project, a language for a topic and a language for a paragraph.
    The search works with all the supported languages you use in the project.
    There is a lot more information in the help topic "Authoring content in multiple languages".
    It sounds like you are just including the odd word so the above may not be relevant, I just wanted to make sure you are aware of this.
    I can't help you on how older browsers will handle this but my thinking is they should, they are just HTML entities after all.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Spanish display incorrect after unicode conversion

    Dear Experts,
    Currently we upgrade our SAP system from 4.6B NU to ECC6.0 UN.
    in 4.6B system we had implemented Simple Chinese and French language package to the system. after upgrade to ECC6.0 no-unicode system. we perform a MDMP unicode conversion.currently system running with ECC6.0 unicode interface with language 1EFD. SUMG releated tasks had been finished. Chinese and French language checked OK in ECC6 UN system.
    Our issue is. in the past time. some Spanish local end user typing some spanish character in some master date field when they login in 4.6B GUI choice english as login language.these kind of spanish characters could not display correct in current unicode environment.
    could you please given us some suggestion for how to fix this issue.

    Hello Anil,
    Below items we checked between MDMP 46B and Unicode ECC6 with production client table SKAT. some Spanish display not correct.
    Unicode ECC6.0     46B
    Short Text     Short Text
    Ant a prov - Gto imp     Ant a prov - Gto imp
    Regal¨ªas     Regalías
    Prov Herramentales     Prov Herramentales
    Provisi¨®n de SLA     Provisión de SLA
    Prov Fin Vida (EOL)     Prov Fin Vida (EOL)
    Gtos de imp     Gtos de imp
    Mat dañado o perdido     Mat dańado o perdido
    Papeleria e insumos     Papeleria e insumos
    Gastos Vtas-Diseño     Gastos Vtas-Diseńo
    Ganancia p fluc camb     Ganancia p fluc camb
    Aj anual p inf     Aj anual p inf
    Depreciaci¨®n fiscal     Depreciación fiscal
    Best Regards
    Key

  • Inconsistency while storing Spanish Characters in Devl Vs Prod Databases:

    Hi there,
    We have setup dev and prod database instances with the same NLS Characterset settings,
    However, when a Spanish character is saved in the devl instance,
    the character is saved to the database correctly.
    However the same character when saved in prod, is stored as ampersand, pound, 0255; not á.
    Although the character displays correctly via sqldeveloper as well as in the reports,
    any ideas as to why there is inconsistency in the behavior.
    SQL> select instance_name from V$instance;
    INSTANCE_NAME
    utf8devl
    SQL> select * from nls_database_parameters
    where parameter like '%CHARACTERSET';
    PARAMETER                VALUE
    NLS_CHARACTERSET          AL32UTF8
    NLS_NCHAR_CHARACTERSET          AL16UTF16
    SQL> desc tblpersoninfo
    Name Null? Type
    ACTIVE VARCHAR2(1)
    ID NOT NULL NUMBER(9)
    LAST_NAME VARCHAR2(255)
    FIRST_NAME VARCHAR2(255)
    MI VARCHAR2(12)
    SQL>select last_name from tblpersoninfo where id=2;
    LAST_NAME
    xxxxx     á
    SQL> select instance_name from V$instance;
    INSTANCE_NAME
    utf8prod
    SQL> select * from nls_database_parameters
    where parameter like '%CHARACTERSET';
    PARAMETER                VALUE
    NLS_CHARACTERSET          AL32UTF8
    NLS_NCHAR_CHARACTERSET          AL16UTF16
    SQL>select mi from tblpersoninfo where id=2;
    MI
    á
    (although the character renders properly here, it is saved as ampersand, pound, 0255;)
    SQL>select length(mi) from tblpersoninfo where id=2;
    LENGTH(MI)
    6
    when I was expecting 1 as the result for the above query.
    best regards,
    NK
    Edited by: NK on Jan 13, 2012 10:03 AM
    Edited by: NK on Jan 13, 2012 10:04 AM

    NK wrote:
    The programmer who has reported this problem is using the same application just switching between the 2 environments;
    á Typ=1 Len=6 CharacterSet=AL32UTF8: 26,23,32,32,35,3bI guess Srini is correct in asking for the process in which this is stored. E.g. What does above "just switching" actually involve?
    Above characters & #225 ; implies "html character entities" input, which means prod does not behave same as dev. (Oracle would not, by itself, cause that kind of "conversion".)
    Investigate input at client side (e.g. web server form).
    Note, to clarify for readers of this thread: the rendering of the html entity to character glyph (á) occurs in forum post.
    Edit:
    added a missing and crucial "not"
    Edited by: orafad on Jan 13, 2012 8:31 PM
    Edited by: orafad on Jan 13, 2012 8:33 PM
    Edited by: orafad on Jan 13, 2012 9:19 PM

  • Crystal Reports 9 - Need to Display Spanish Text

    Post Author: Zando
    CA Forum: General
    I need to display Spanish text (...accented words, upside down
    question marks, tildes' over the 'N's, etc...) in Crystal reports 9.
    The text is coming from an Oracle database that has been updated to an
    8-bit character string to properly display the text in the database.
    But when the text appears in the Crystal report, none of the Spanish
    text characterists appear. It just comes out as plain text or displays
    a small box where a Spanish character should appear.
    How do I make the text appear 'Spanish', accents and all?
    I'm a Crystal novice, so please explain your solutions as non-technically as possible.
    Thanks!

    Post Author: Zando
    CA Forum: General
    Tom -Thanks for your response buddy!  Fortunately, after 2 days of Googling, I found the
    answer to my own question which I'll share here.
    Crystal Reports 9 (...and 10 and 11 as far as I know...) requires a
    downloadable patch that allows the report to display unicode characters in
    other languages.
    The paper explaining this problem can be found at:
    http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do;jsessionid=B460E0FF9F8305201D62DC3CA247AB2D?cmd=displayKC&docType=kc&externalId=c2014141&sliceId=&dialogID=6000219&stateId=1%200%205998262
    The downloadable patch to fix this problem can be found at:
    http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=http--supportbusinessobjectscom-communityCS-FilesandUpdatesNoNav-cr90mainwinenzipasp&sliceId=&dialogID=6060592&stateId=1%200%206058581
    This is the patch for correcting this problem for English unicode
    characters.  There are also patches available for French, German and
    Japanese unicode characters as well.
    I hope this helps anyone else who has run into the same problem.
    Zando

Maybe you are looking for

  • Problems with homesharing since the last 2 updates (4.2 & 4.21)

    I've been having a problem where I'm playing movies or tv shows from my iTunes library through homesharing and my ATV(2) will get "kicked off homesharing". The movie/tv show just stops abruptly and ATV goes back to the main menu and stating that it c

  • Using java type strings in objective C

    HI all, I am into a greater mess of creating a java equivalent string using NSString class. I need to a convert some strings into bytes and then I have to write in streams. The problem is in java the length of character is 2 bytes. But in objective C

  • HT4993 lost iphone 5 sprint

    today i lost my iphone 5 how can i get a new one dose apple care cover i paid 100 dollars for it when i bought it from sprint

  • Inserting Lines to Z table

    Hi All, We have a custom screen (Z Transaction and Z Screen) through which End User will be entering the data. The data should be inserted into a Z Table. No Line of the Z Table should be overweritten or modified... Each time, the data should be inse

  • IR5055 Duplex Printing

    We have an IR5055 Printer here at work. Whenever I try to print on both sides of a page, the second (or "back") page comes out wrong. The margins are all messed up, and the first line or two of the document is cut off/printed at the very top of the p