Storing and Retriving from Hashtable

I store countryCode and countryName in Hashtable, but how do i populate it back to my html listBox? And with sorting order?
Hashtable codeHash = new Hashtable();
if (codeHash != null) {
     codeHash.put("AR", "Argentina");
     codeHash.put("AM", "Armenia");
     codeHash.put("AW", "Aruba");
     codeHash.put("AU", "Australia");
     codeHash.put("AT", "Austria");
}JSP :
<select name="countryList">
     <option value="CountyCode"> CountryName </option>
</select>

Things I noticed that might be changed in this snippet:
//declare Map codeHash = new HashTable(), so
//there would be fewer changes if you ever needed it to change
//(to TreeMap for example)
Hashtable codeHash = new Hashtable();
//Why do you check for null? You just created the bloody thing
//like, two lines up..
if (codeHash != null) {
     codeHash.put("AR", "Argentina");
     codeHash.put("AM", "Armenia");
     codeHash.put("AW", "Aruba");
     codeHash.put("AU", "Australia");
     codeHash.put("AT", "Austria");

Similar Messages

  • Problem with storing and retriving a different langauge font in mysql

    hi,
    i have problem with storing and retriving a different character set in
    mysql database ( for example storing kannada font text in database)
    it simply store what ever typed in JTextField in database in the
    formate ??????????? and it showing ???????? .
    please what can i do this problem.
    thanks
    daya

    MySQL does not know about what type of Font you use or store. that is applicatioon specific. All it knows is the character set that you are storing and the data type and data. THere are something you should know when working with database and Java:
    1. make sure you know what character set is used for the database table.
    2. make sure you know what character set is used by Java (default to UTF-8 ..
    sort off - there are few character that it cannot save). You can enforce the
    character set being sent to the database by the String's getBytes(String charsetName) method.
    3. make sure the application you use to view the table use the correct character set
    if it use a different character set, then any character that it does not recogized
    will be replaced with a quetion mark '?'....eventhough the data is correct.

  • Where is the binary data of this icon stored and retrieved from Application server?

    Hello guys,
    Today I observed one phenomenon and could not explain it per my knowledge.
    I have one url which points to an icon in application server:
    https://<host name>:44301/sap/public/bc/ur/nw5/themes/sap_corbu/common/libs/Icon/SuccessMessage.gif
    I could successfully open it via chrome:
    and after that I could see an entry in ICM server cache. Everything works perfectly.
    Then I tried to check this icon in mime browser in SE80. To my surprise, the folder /sap/public/bc/ur/nw5/themes is empty.
    However, the ICM cache shows that there is a subfolder called "sap_corbu" under "themes" folder. But why I cannot find it in mime browser?
    Then I write a report to retrieve the binary data of icon via CL_HTTP_CLIENT, and clear the ICM buffer via tcode SMICM.
    I expect this time some database table will be queried to load the content of the icon, since now the buffer is not available.
    To my surprise again, in SAT no database table is involved.
    So now I am confused: since I have already cleared the ICM server cache, where does the icon binary data come from when I run the report to access the icon?
    Best regards,
    Jerry

    Hello guys,
    one colleague today told me that there is a zip file "ur_mimes_nw7.zip" in MIME repository /PUBLIC/BC/UR/ur_mines_nw7.zip. I download it locally and unzip it and indeed find many theme folders including sap_corbu folder and its resource files. So I guess there must be some logic done in web application server which will unzip this archive file and put each theme folder to the corresponding folders in application server. I would assume those logic are done outside ABAP stack side, this is the reason I cannot find any hint of them in ABAP backend via tcode SAT even I clear both client and server side cache.
    Best regards,
    Jerry

  • Storing and Linking from background

    Hi Experts,
    We have documents stored in OmniDocs Document Management systems. These documents need to be linked to SAP Business Objects (Sales Order etc.). Our development environment is Java/JCo. I had seen several posts with this scenario but need the exact BAPIs calls either ArchiveLink or DMS .
    Any help in answering will be greatly appreciated
    1. How to create a entry in TAO1 table or DIR?  Documents in OmniDocs  have doc ids .
    2. How to link the entry in TAO1 table or DIR to a SAP Business Object (Sales Order)?
    3. Can a SAP Business Object (sales order)  be searched ? eg. by Sales Order number.
    Thanks you all in advance.
    James Kriplani

    The FM ARCHIV_CONNECTION_INSERT requires the following parameters
              archiv_id             =  Z1  (REPOSITORY NAME)
              arc_doc_id            =  1234567  (ARCHIVE DOCUMENT ID)
              ar_object             =  ZFIINVOICE
              mandant               = CLIENT #
              object_id             =  0000006201  (invoice#)
              sap_object            = BUS20XX  (Invoice object Type)
              doc_type              =  PDF
    pass the parameters and execute the function.
    Please let me know if this helped.

  • XML load and retrive from oracle.

    Hi
    I am able to validate and load the xml file to xmltype column of database table. how can i get the inforation of each node sepeately (row wise) from sql query.
    I tried following query but giving me error.
    <?xml version="1.0" encoding="utf-8" ?>
    <caieers>
         <caieers_header>
              <file_name>eers000252.xml</file_name>
              <business_unit>CAI Common Services</business_unit>
              <sson_id>255</sson_id>
              <date>2006-12-30</date>
         </caieers_header>
         <caieers_entitlements>
              <caieers_data>
                   <soeid>in12345</soeid>
                   <role_code>read_only</role_code>
                   <role_desc>Read-only access to reports</role_desc>
                   <as_of_date>2006-12-30</as_of_date>
              </caieers_data>
              <caieers_data>
                   <soeid>pp12345</soeid>
                   <role_code>Admin</role_code>
                   <as_of_date>2006-12-30</as_of_date>
              </caieers_data>
              <caieers_data>
                   <soeid>ns12345</soeid>
                   <role_code>read_write</role_code>
                   <role_desc>Can update data</role_desc>
                   <as_of_date>2006-12-30</as_of_date>
              </caieers_data>
         </caieers_entitlements>
    </caieers>
    SELECT p.XML_DOC.extractvalue('/caieers/caieers_header/file_name/text()').getstringval() as File_name,
    p.XML_DOC.extract('/caieers/caieers_header/business_unit/text()').getstringval() as Business_unit,
    p.XML_DOC.extract('/caieers/caieers_header/sson_id/text()').getstringval() as sson_id,
    p.XML_DOC.extract('/caieers/caieers_header/date/text()').getstringval() as Dateoffile,
    p.XML_DOC.extract('/caieers/caieers_entitlements/caieers_data//soeid/text()').getstringval() as soeid,
    p.XML_DOC.extract('caieers/caieers_entitlements/caieers_data//role_code/text()').getstringval() as role_code,
    p.XML_DOC.extract('caieers/caieers_entitlements/caieers_data//role_desc/text()').getstringval() as role_desc,
    p.XML_DOC.extract('caieers/caieers_entitlements/caieers_data//as_of_date/text()').getstringval() as asofdate
    FROM test p,
    table(xmlsequence(extract(value(mat),'/caieers/caieers_entitlements/caieers_data'))) ctb
    ERROR at line 10:
    ORA-00904: "MAT": invalid identifier
    Aslo if anybody help me to find best way to load this file in relational table (at present it was loaded as xmltype column)
    Thanks a lot
    Regards
    Raju

    Try this example
    I"ve modified the XML Schema to automatically create the table during schema registration.
    SQL>
    SQL>
    SQL> var schemaURL varchar2(256)
    SQL> var schemaPath varchar2(256)
    SQL> --
    SQL> begin
      2    :schemaURL := 'http://www.w3.org/2001/XMLSchema/CAIEERS.xsd';
      3    :schemaPath := '/public/CAIEERS.xsd';
      4  end;
      5  /
    PL/SQL procedure successfully completed.
    SQL> call dbms_xmlSchema.deleteSchema(:schemaURL,4)
      2  /
    Call completed.
    SQL> declare
      2    res boolean;
      3    xmlSchema xmlType := xmlType(
      4  '<?xml version="1.0" encoding="utf-8"?>
      5  <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" xdb:storeVarrayAsTable="true">
      6     <xsd:element name="caieers" type="caieers_type" xdb:defaultTable="caieers_tb"/>
      7     <xsd:complexType name="caieers_type">
      8             <xsd:sequence>
      9                     <xsd:element name="caieers_header" type="caieers_header_type"/>
    10                     <xsd:element name="caieers_entitlements" type="caieers_entitlements_type"/>
    11             </xsd:sequence>
    12     </xsd:complexType>
    13     <xsd:complexType name="caieers_entitlements_type">
    14             <xsd:sequence>
    15                     <xsd:element name="caieers_data" type="caieers_data_type" maxOccurs="unbounded"/>
    16             </xsd:sequence>
    17     </xsd:complexType>
    18     <xsd:complexType name="caieers_header_type">
    19             <xsd:sequence>
    20                     <xsd:element name="file_name" type="xsd:string"/>
    21                     <xsd:element name="business_unit" type="xsd:string"/>
    22                     <xsd:element name="sson_id" type="xsd:integer"/>
    23                     <xsd:element name="date" type="xsd:date"/>
    24             </xsd:sequence>
    25     </xsd:complexType>
    26     <xsd:complexType name="caieers_data_type">
    27             <xsd:sequence>
    28                     <xsd:element name="soeid" type="soeid_type"/>
    29                     <xsd:element name="role_code" type="role_code_type"/>
    30                     <xsd:element name="role_desc" type="role_desc_type" minOccurs="0"/>
    31                     <xsd:element name="as_of_date" type="xsd:date"/>
    32             </xsd:sequence>
    33     </xsd:complexType>
    34     <xsd:simpleType name="soeid_type">
    35             <xsd:restriction base="xsd:string">
    36                     <xsd:pattern value="[a-zA-Z]{2}\d{5}"/>
    37             </xsd:restriction>
    38     </xsd:simpleType>
    39     <xsd:simpleType name="role_code_type">
    40             <xsd:restriction base="xsd:string">
    41                     <xsd:maxLength value="30"/>
    42             </xsd:restriction>
    43     </xsd:simpleType>
    44     <xsd:simpleType name="role_desc_type">
    45             <xsd:restriction base="xsd:string">
    46                     <xsd:maxLength value="255"/>
    47             </xsd:restriction>
    48     </xsd:simpleType>
    49  </xsd:schema>
    50  ');
    51  begin
    52    if (dbms_xdb.existsResource(:schemaPath)) then
    53      dbms_xdb.deleteResource(:schemaPath);
    54    end if;
    55    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    56  end;
    57  /
    PL/SQL procedure successfully completed.
    SQL> begin
      2    dbms_xmlschema.registerSchema
      3    (
      4      :schemaURL,
      5      xdbURIType(:schemaPath).getClob(),
      6      TRUE,TRUE,FALSE,TRUE
      7    );
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> declare
      2    xmldoc xmltype := xmltype(
      3  '<?xml version="1.0" encoding="utf-8"?>
      4  <caieers>
      5     <caieers_header>
      6             <file_name>eers000252.xml</file_name>
      7             <business_unit>CAI Common Services</business_unit>
      8             <sson_id>255</sson_id>
      9             <date>2006-12-30</date>
    10     </caieers_header>
    11     <caieers_entitlements>
    12             <caieers_data>
    13                     <soeid>in12345</soeid>
    14                     <role_code>read_only</role_code>
    15                     <role_desc>Read-only access to reports</role_desc>
    16                     <as_of_date>2006-12-30</as_of_date>
    17             </caieers_data>
    18             <caieers_data>
    19                     <soeid>pp12345</soeid>
    20                     <role_code>Admin</role_code>
    21                     <as_of_date>2006-12-30</as_of_date>
    22             </caieers_data>
    23             <caieers_data>
    24                     <soeid>ns12345</soeid>
    25                     <role_code>read_write</role_code>
    26                     <role_desc>Can update data</role_desc>
    27                     <as_of_date>2006-12-30</as_of_date>
    28             </caieers_data>
    29     </caieers_entitlements>
    30  </caieers>');
    31  begin
    32    xmldoc := xmldoc.createSchemaBasedXML(:schemaURL);
    33    insert into "caieers_tb" values ( xmldoc );
    34  end;
    35  /
    PL/SQL procedure successfully completed.
    SQL> set autotrace on explain pages 0 lines 150 long 1000
    SQL> --
    SQL> select extractValue(value(p),'/caieers/caieers_header/file_name') FileName,
      2         extractValue(value(p),'/caieers/caieers_header/business_unit') Business_unit,
      3         extractValue(value(p),'/caieers/caieers_header/sson_id')  sson_id,
      4         extractValue(value(p),'/caieers/caieers_header/date')  Dateoffile,
      5         extractValue(value(ctb),'/caieers_data/soeid') soeid,
      6         extractValue(value(ctb),'/caieers_data/role_code') role_code,
      7         extractValue(value(ctb),'/caieers_data/role_desc') role_desc,
      8         extractValue(value(ctb),'/caieers_data/as_of_date') as asofdate
      9    FROM "caieers_tb" p,
    10   table (xmlsequence(extract(value(p),'/caieers/caieers_entitlements/caieers_data'))) ctb
    11  /
    eers000252.xml
    CAI Common Services
           255 30-DEC-06
    in12345
    read_only
    Read-only access to reports
    30-DEC-06
    eers000252.xml
    CAI Common Services
           255 30-DEC-06
    pp12345
    Admin
    30-DEC-06
    eers000252.xml
    CAI Common Services
           255 30-DEC-06
    ns12345
    read_write
    Can update data
    30-DEC-06
    Execution Plan
    Plan hash value: 3549528997
    | Id  | Operation          | Name               | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |                    |     3 | 19983 |   805   (1)| 00:00:10 |
    |   1 |  NESTED LOOPS      |                    |     3 | 19983 |   805   (1)| 00:00:10 |
    |*  2 |   TABLE ACCESS FULL| caieers_tb         |     1 |  4056 |     3   (0)| 00:00:01 |
    |*  3 |   INDEX RANGE SCAN | SYS_IOT_TOP_379781 |     3 |  7815 |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter(SYS_CHECKACL("ACLOID","OWNERID",xmltype('<privilege
                  xmlns="http://xmlns.oracle.com/xdb/acl.xsd"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://xmlns.oracle.com/xdb/acl.xsd
                  http://xmlns.oracle.com/xdb/acl.xsd DAV:http://xmlns.oracle.com/xdb/dav.xsd"><rea
                  d-properties/><read-contents/></privilege>'))=1)
       3 - access("NESTED_TABLE_ID"="caieers_tb"."SYS_NC0001900020$")
           filter("SYS_NC_TYPEID$" IS NOT NULL)
    Note
       - dynamic sampling used for this statement
    SQL>
    SQL>
    SQL>

  • Storing and retriving Date in Access Databae

    hi, i,ve applocation with Access as database. i am not able to store Date in the database. i am using GregoianCalender to get system date but how could i store that date to the Access Database

    "ODBC Access"

  • IPod will not play any music. Seems like it is in "Pause" mode.  No sound from either the head phones or internal speaker.  I have 418 songs stored and none will play.

    iPod will not play any music. Seems like it is in “Pause” mode.  No sound from either the head phones or internal speaker.  I have 418 songs stored and none will play. I have tried resetting, turning on and off the iPod, etc. but to no avail.

    Try restoring from backup. Next would be a restore to factory defaults/new iPod.

  • How do I transfer all photos and music from my old iphone 3gs to new iphone 4s? I have a new laptop because the old one broke and so do not have non camera roll photos or music stored anywhere apart from the iphone 3gs and cannot update io5 on the iphone

    How do I transfer all photos and music from my old iphone 3gs to new iphone 4s? I have a new laptop because the old one broke and so do not have non camera roll photos or music stored anywhere apart from the iphone 3gs and cannot update io5 on the iphone 3gs without erasibng everything. i need help!!!

    Syncing to a new iTunes library or computer will erase your phone. Only if you back up manually before syncing, you can restore your device from that backup again. A manual backup does not include the sync process.
    Do this:
    Disable autosync in iTunes, connect your phone to your new computer and right click on it in the device list and choose backup. iTunes will backup your device without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect your phone for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the iPhone for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in itunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread: http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved:iTunes: About iOS backups
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device

  • HT4847 How do you access your pictures that you stored on icloud from your ipod touch? I lost my ipod touch and want to get my photos from icloud but i cant seem to find any ******* help. where the **** is icloud and how do you get your stored pictures ba

    How do you access your pictures that you stored on icloud from your ipod?

    sunshinecowgill wrote:
    We have three operational computers, one does not have iTunes on it.  Since Apple is saying I have more than 5 authorized computers, and I can't imagine what they are, I am afraid to deauthorize all my computers.  See what I mean?  I just wanted to ask the question about how I can find out WHICH computers Apple thinks I have authorized, so I can decide if it's safe to deauthorize them all or not. 
    You could have more 5 computers authorized if you ever, for example, reformatted a hard drive or replaced a hard drive without deauthorizing the computer first. Apple's system would see that as a different computer, even though you don't. There's nothing to be afraid of in deauthorizing everything and the reauthorizing what you actually have. You won't lose any data. Mistimp is correct, they can't tell you which computers are authorized.

  • How to set and retrive the index log path stored by parameter LOG_DIRECTORY

    how to set and retrive the index log path stored by parameter LOG_DIRECTORY.

    http://download-west.oracle.com/docs/cd/B19306_01/network.102/b14213/lsnrctl.htm#sthref72
    http://download-west.oracle.com/docs/cd/B19306_01/network.102/b14213/cmctl.htm#sthref239

  • HT5085 I have lots of music stored on my PC in itunes both purchased and loaded from CDs how do I get this onto my ipad or iphone

    I have loads of music both purchased and loaded from my CDs stored in itunes on my PC Im running Windows XP, the music is also on my ipod Nano.
    How do I get the library complete onto my ipad and iphone.   I have also purchased Cloud storage with Knowhow but cant get the music to go from my external hard drive into the LIvedrive briefcase without a copy going onto the hard drive on my computer, which I dont want as it doesnt have the capacity to store the music.

    Correct, it will only be one-level, the Photos app doesn't support sub-albums - the sub-folders photos will be included in the parent's album.
    If you select My Pictures at the top of the Photos tab when syncing, then you should get an album for each folder that is directly under it - so if I understand correctly what you described then that would mean an album for 2013, one for 2012 etc. And each of those should include all the photos in the subfolders under it - so 2013 would include the photos from the events and months subfolders under it.
    You can't sync them separately, only the contents of the last sync remains on the iPad, by not including a folder in the next photo sync you are effectively telling iTunes that you no longer want that folder/album on the iPad so it will be removed and be replaced by the contents of the new sync (you can't delete synced photos directly on the iPad, instead they are deleted by not including them in the next sync).
    The app that I use, Photo Manager Pro, allows you to select and copy a folder (via FTP), but you would need to select each subfolder individually, which if you have a lot would be time-consuming (I think that if you select '2013' it would ignore the folders beneath it).

  • Can I back up stored docs, emails and notes from my iPad -- and not just music and photo's, etc?

    Can I back up stored docs, emails and notes from my iPad -- and not just music and photo's, etc? 
    I see how I can store the latter -- but not the former.  And I don't care whether it's to the cloud or to a hard drive, etc.
    Thanks!

    If you are using iCloud, you don't need to back up these items because they are synced with your iCloud account.

  • HT1660 when deleting music files from iTunes and you select Keep File, where is that file stored and how it is retireved?

    when deleting music files from iTunes and you select Keep File, where is that file stored and how it is retrieved?

    The file is just left where it was when it was connected to the library. Typically:
         <User>/Music/iTunes/iTunes Media/Music/<Artist>/<Album>/## <Name>.<Ext>
    If you want to add it back just drag it into iTunes. If you want to cull the files you kept previously add the entire iTunes Media folder back into iTunes (or use one of Doug's scripts that has the same effect), then delete (and don't keep) the recent additions.
    Note that warning/prompt is only issued when the files you are removing are located inside the designated iTunes Media folder.
    tt2

  • Adding and Retriving of Vector through Hashtable

    Hi,
    I had a list of records from my database and I want to add it to my hashtable before passing it to another class to read. So I add my records into a vector before adding to a hashtable, but how do I read it out? Also how do I loop to store the vector in the hashtable?
    (WorkOrder is another class.)
    This is part of my code:
    String sql_GetOrder= "SELECT * FROM WORK_ORDER WHERE ORDER_ID = '043775122N' OR ORDER_ID = '077888862L'";
    rs = stmt.executeQuery(sql_GetOrder);
    result = new Vector();
    while (rs.next()){
    wOrder = new WorkOrder();
    wOrder.setOrderID(rs.getString("order_id"));
    wOrder.setCompanyBRN(rs.getString("brn"));
    wOrder.setSubmitBy(rs.getString("submit_by"));
    wOrder.setSubmitDate(rs.getString("submit_date"));
    System.out.println("Order ID: " + rs.getString("Order_id"));
    result.addElement(wOrder);
    myTable.put("cnt", wOrder);
    wOrder = null;                    
    System.out.println("My Vector Size: " + result.size()); 
    WorkOrder n = (WorkOrder)myTable.get("cnt");
         if (n != null) {
             System.out.println("cnt = " + n.getOrderID());
         } Thanks

    I can't do this way as you had mention:
    myTable.put(wOrder.getOrderID(), wOrder);I am passing my orders to another class and the orderid is unknown to the class, so how can the other class identfiy my key?
    I had done something like this:
    To put in the hashtable:
    String sql_GetOrder= "SELECT * FROM WORK_ORDER WHERE ORDER_ID = '043775122N'";
    rs = stmt.executeQuery(sql_GetOrder);
    result = new Vector();
    while (rs.next()){
    wOrder = new WorkOrder();
    wOrder.setOrderID(rs.getString("order_id"));
    System.out.println("Order ID: " + rs.getString("Order_id"));
    result.addElement(wOrder);
    wOrder = null;     
    if(result.size() > 0){
    System.out.println("My result Vector Size: " + result.size());
    listRecord = new Vector();
    listRecord.addElement(result);
    System.out.println("My listRecord Vector Size: " + listRecord.size());
    myTable.put("cnt", listRecord);
    }To get from hashtable:
    if(!dTable.isEmpty())
    Vector vList = (Vector)dTable.get("cnt");
    Vector readList = new Vector();
    if (vList != null) {
    readList = (Vector)vList.get(0);
    for (int i=0; i<readList.size(); i++){
    WorkOrder w_order = new WorkOrder();
    w_order = (WorkOrder)readList.get(i);
    System.out.println("cnt = " + w_order.getOrderID());

  • Why is my Mac storing graphics and photos from the web in iPhoto?

    How can I prevent my Mac from downloading graphics and photos from the web?   How do I remove the thousands of images that the Mac moved into iPhoto when I browse the web? 

    This has been reported a few time with no definitive cause. It probably is caused by dragging things to iPhoto. Best solution is to load the back up from just before it occurred. Otherwise you neen to use iPhoto to delete them emptying the iPhoto trash every 100 or so
    LN

Maybe you are looking for

  • True Rear Wireless Home Theater

    My Best Buy tells me there is not a "true" rear wireless home theater system, wire required to the rear unit, then wireless to the speakers.  My house is on a slab and there is no way to to get wires to the rear without all exposed.  Friend tells me

  • IPhoto Folder Structure

    Since installing iPhotot 6 I've noticed that the structure of my iPhoto library has changed. iPhoto 5 seemed to create folders that reflected the day, month, year and made it easy to locate photo for attaching to emails or inclusion in documents. iPh

  • How to write CMP on Database VIEWs

    Hi In my application i have database views. i want to write a CMP bean for each VIEW. is it possible To write a CMP Bean on VIEWs. if possible Pl let me know and send some code too. thank u

  • APExpress and Brother HL 2040

    Okay-- at the beginning of the school year my Brother HL 2040 laser printer (USB) and APE were both working great. However, a few months ago (I've procrastinated fixing this problem for a while) the 2040 suddenly stopped working with APE (still works

  • Problems with Safari 5.1

    Yesterday I installed Safari 5.1 on my PC (With windows vista), and now I have tried to restart my PC, to repair and after that to re-install Safari both the 5.1 version and the older version, but nothing seems to work?!? The Safari browser just open