Try to use CL_GUI_TEXTEDIT

Hi all,
i try to use CL_GUI_TEXTEDIT (thanks to Duraifaj) in
this little report:
REPORT Z065_TEST2.
PARAMETERS: P_PERNR LIKE PA0000-PERNR.
DATA: DOCKING TYPE REF TO CL_GUI_DOCKING_CONTAINER,
      EDITOR  TYPE REF TO CL_GUI_TEXTEDIT.
DATA: TEXTLINES TYPE TABLE OF TLINE-TDLINE,
      WA_TEXT   TYPE TLINE-TDLINE.
AT SELECTION-SCREEN OUTPUT.
  DATA: REPID LIKE SY-REPID.
  DATA: FILE_NAME LIKE SAPB-SAPFILES,
        FILE_TYPE LIKE BDN_CON-MIMETYPE.
  REPID = SY-REPID.
  IF DOCKING IS INITIAL.
    CREATE OBJECT DOCKING
      EXPORTING
        REPID = REPID
        DYNNR = SY-DYNNR
        SIDE  = CL_GUI_DOCKING_CONTAINER=>DOCK_AT_BOTTOM
        EXTENSION = '300'
      EXCEPTIONS
        CNTL_ERROR                  = 1
        CNTL_SYSTEM_ERROR           = 2
        CREATE_ERROR                = 3
        LIFETIME_ERROR              = 4
        LIFETIME_DYNPRO_DYNPRO_LINK = 5.
  ENDIF .
  IF EDITOR IS INITIAL.
    CREATE OBJECT EDITOR
      EXPORTING
        PARENT            = DOCKING
        WORDWRAP_MODE     = CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
        WORDWRAP_POSITION = 256
        MAX_NUMBER_CHARS  = 100000.
  ENDIF .
  WA_TEXT = 'First  Line'. APPEND WA_TEXT TO TEXTLINES.
  WA_TEXT = 'Second Line'. APPEND WA_TEXT TO TEXTLINES.
  CALL METHOD EDITOR->SET_TEXT_AS_R3TABLE
    EXPORTING
      TABLE  = TEXTLINES
    EXCEPTIONS
      OTHERS = 1.
START-OF-SELECTION.
  CALL METHOD EDITOR->GET_TEXT_AS_R3TABLE
    IMPORTING
      TABLE                  = TEXTLINES
    EXCEPTIONS
      ERROR_DP               = 1
      ERROR_CNTL_CALL_METHOD = 2
      ERROR_DP_CREATE        = 3
      POTENTIAL_DATA_LOSS    = 4
      OTHERS                 = 5.
  IF SY-SUBRC <> 0.
    EXIT.
  ENDIF.
  WRITE: / P_PERNR.
  LOOP AT TEXTLINES INTO WA_TEXT.
    WRITE: / WA_TEXT.
  ENDLOOP.
END-OF-SELECTION.
My problem is, that i will position the editor
on a special point an the screen in an special size.
For example X = 10 10, Y = 20 100.
Is that Possible?
regards, Dieter

Hi,
i have tried it in this way,
  IF DOCKING IS INITIAL.
    CREATE OBJECT DOCKING
      EXPORTING
        REPID = REPID
        DYNNR = SY-DYNNR
        SIDE  = CL_GUI_DOCKING_CONTAINER=>DOCK_AT_BOTTOM
        EXTENSION = '300'
      EXCEPTIONS
        CNTL_ERROR                  = 1
        CNTL_SYSTEM_ERROR           = 2
        CREATE_ERROR                = 3
        LIFETIME_ERROR              = 4
        LIFETIME_DYNPRO_DYNPRO_LINK = 5.
  ENDIF .
  CALL METHOD DOCKING->SET_HEIGHT
    EXPORTING
      HEIGHT = 150.
  CALL METHOD DOCKING->SET_WIDTH
    EXPORTING
      WIDTH = 500.
  CALL METHOD DOCKING->SET_TOP
    EXPORTING
      TOP = 50.
  CALL METHOD DOCKING->SET_LEFT
    EXPORTING
      LEFT = 200.
  EXIT.
but the set.. haven't the right effect. it's only
set on left, buttom ... But not on the position which i whant. I think there is no solution.
thanks for help.
Regards, Dieter

Similar Messages

  • Text Editor using cl_gui_textedit

    Hi,
    I need a text editor box on selection screen in display mode. and I'm using cl_gui_textedit class to get it.. but for some reason its not working.
    Here is the code below -
    report YLTEST1
           no standard page heading line-size 255.
    DATA: g_text_editor             TYPE REF TO cl_gui_textedit,
          g_text_container          TYPE REF TO cl_gui_custom_container,
          g_gen_text_editor         TYPE REF TO cl_gui_textedit,
          g_gen_text_container      TYPE REF TO cl_gui_custom_container.
      DATA: WORDWRAP_POSITION LIKE CL_GUI_TEXTEDIT=>M_WORDWRAP_POSITION.
      data: g_gen_txt_container       TYPE scrfname VALUE  'GENERAL_TEXT_FOR_REPS'.
      DATA: TEXT_TAB      TYPE STANDARD TABLE OF LINE.
    parameters: p_check.
    at selection-screen output.
    Create sales Text container
      WORDWRAP_POSITION = 100.
      IF G_GEN_TEXT_CONTAINER IS INITIAL.
            CREATE OBJECT:
                 G_GEN_TEXT_CONTAINER EXPORTING CONTAINER_NAME = G_GEN_TXT_CONTAINER,
                 G_GEN_TEXT_EDITOR    EXPORTING PARENT = G_GEN_TEXT_CONTAINER
                 WORDWRAP_MODE =  CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
                 WORDWRAP_POSITION = WORDWRAP_POSITION
                 WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>TRUE.
      ENDIF.
      IF not G_GEN_TEXT_CONTAINER IS INITIAL.
    Set container options
      CALL METHOD: G_GEN_TEXT_EDITOR->SET_TOOLBAR_MODE
                                  EXPORTING TOOLBAR_MODE   = 0,
                   G_GEN_TEXT_EDITOR->SET_READONLY_MODE
                                  EXPORTING READONLY_MODE  = 1,
                   G_GEN_TEXT_EDITOR->SET_STATUSBAR_MODE
                                  EXPORTING STATUSBAR_MODE = 0,
                   G_GEN_TEXT_EDITOR->SET_AUTOINDENT_MODE
                                  EXPORTING AUTO_INDENT    = 1.
    Pass the text to the sales text container
      CALL METHOD G_GEN_TEXT_EDITOR->SET_TEXT_AS_STREAM
        EXPORTING
          TEXT = TEXT_TAB.
      endif.

    Try this way:
    DATA: lo_dock TYPE REF TO cl_gui_docking_container.
    DATA: lo_text_editor TYPE REF TO cl_gui_textedit.
    DATA: lt_tab TYPE STANDARD TABLE OF char80.
    DATA: la_tab LIKE LINE OF lt_tab.
    DATA: w_carrid TYPE sflight-carrid.
    ** Selection Screen
    SELECTION-SCREEN: BEGIN OF BLOCK blk1 WITH FRAME TITLE aaa.
    SELECT-OPTIONS: s_carrid FOR w_carrid.
    SELECTION-SCREEN: END   OF BLOCK blk1.
    INITIALIZATION.
    * Docking container
      CHECK lo_dock IS INITIAL.
      CREATE OBJECT lo_dock
        EXPORTING
          repid     = sy-cprog
          dynnr     = sy-dynnr
          ratio     = 80
          side      = cl_gui_docking_container=>dock_at_bottom
          name      = 'DOCK_CONT'.
      IF sy-subrc <> 0.
        MESSAGE 'Error in the Docking control' TYPE 'S'.
      ENDIF.
    * Text Editor
      CREATE OBJECT lo_text_editor
        EXPORTING
          parent                 = lo_dock
        EXCEPTIONS
          error_cntl_create      = 1
          error_cntl_init        = 2
          error_cntl_link        = 3
          error_dp_create        = 4
          gui_type_not_supported = 5
          OTHERS                 = 6
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set text
      la_tab = 'This is test'.
      APPEND la_tab TO lt_tab.
      CALL METHOD lo_text_editor->set_text_as_r3table
        EXPORTING
          table           = lt_tab
        EXCEPTIONS
          error_dp        = 1
          error_dp_create = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards,
    Naimesh Patel

  • I just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: the application has failed to start because MS

    i just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem." Right after i click ok i then get this error: "Itunes was not installed correctly. Please reinstall Itunes. Error 7 (Windows error 126)." I tried to uninstall Itunes and then reinstall the 11.03 version but that didnt work either. I want to know if i copy all of the music in my itunes folder to an external without consolidating can i still transfer all my itunes music from my current windows xp pc to a brand new one and have my current itunes library in my new pc? Basically i just want to know 3 things: What exactly does consolidating the itunes library do? Can i copy, paste, and transfer my itunes library to an external and from there to a new pc? Will i be able to transfer my itunes library without consolidating the files?

    I have found a temporary solution, allowing the previous version of iTunes (v. 11.1.3 (x64) in my case) to be re-installed.  It will allow you to re-establish use of iTunes until the Apple software engineers fix the most recent disasterous upgrade (v. 11.1.4).  Please see and follow the procedure in the following article:http://smallbusiness.chron.com/reverting-previous-version-itunes-32590.html   The previous version works beautifully.

  • Photoshop crashes every time I try to use "HDR Toning" option or text tool... WHYYYY???

    So i hit the little "T" text tool, and i get the generic Windows 7 "This program has encountered a program and needs to close" error. I click out of the error box, and all my work disappears as well as any changed preferences and recently opened files. The same happens when i try to use Image>Adjustments>HDR Toning. Yay. And what's funny is BOTH errors display a fault module of "CoolType.dll." ARGH.
    I have tried EVERYTHING that everyone has posted about on every computer-related forum that i could find. NOTHING has worked at all. I deleted every single font minus the system fonts, including anything mentioning them in the system registry. Tried new copy of the dll file, nothing. Reset Photoshop preferences, nothing. System restore failed. Uninstall/reinstall of entire Adobe Master Collection failed. I am about to throw my computer through a wall.
    Oh, and in the 32-bit version, HDR Toning works but the text tool gives me an error message that "something prevented the text engine from being initialized." And, well, i just don't want to use the 32-bit version.
    I have a lot of work to get done, so if someone could help me find the answer to this issue once and for all, that would be awesome. Thanks.

    Details matter.  Note that some of the dates/sizes differ from the fonts in my list.
    You have several in there from before Windows 7 was released, and some of the fonts have been updated since Windows 7 was first released via Windows Updates.  These are the fonts on my working system that correspond to those you listed.  The differences are highlighted in red.
    05/10/2011  06:30 PM           778,552 arial.ttf
    06/10/2009  04:43 PM             6,336 cga40woa.fon
    06/10/2009  04:43 PM             4,304 cga80woa.fon
    06/10/2009  04:43 PM            36,656 dosapp.fon
    06/10/2009  04:43 PM             8,368 ega40woa.fon
    06/10/2009  04:43 PM        13,524,972 gulim.ttc
    06/10/2009  04:44 PM            26,672 marlett.ttf
    06/10/2009  04:44 PM           652,664 micross.ttf
    06/10/2009  04:43 PM        32,217,124 mingliu.ttc
    06/10/2009  04:43 PM         9,176,636 msgothic.ttc
    06/10/2009  04:43 PM        10,057,108 msmincho.ttc
    01/16/2011  07:32 PM           516,560 segoeui.ttf
    01/16/2011  07:32 PM           497,372 segoeuib.ttf
    01/16/2011  07:32 PM           385,560 segoeuii.ttf
    06/10/2009  04:44 PM            57,936 serife.fon
    06/10/2009  04:43 PM        15,323,200 simsun.ttc
    06/10/2009  04:44 PM            66,464 sserifee.fon
    05/10/2011  06:30 PM           700,180 tahoma.ttf
    06/29/2011  12:33 AM           191,344 verdana.ttf
    02/09/2011  03:30 PM           155,384 verdanab.ttf
    06/10/2009  04:44 PM             5,168 vgaoem.fon
    06/10/2009  04:44 PM             7,280 vgasys.fon
    I don't know what methods you're using to restore fonts to what they were when your system was new, but you've not been complete about it.
    I have a test system here that has had nothing but Windows 7 freshly installed and SP1 added.  I got a full listing of all the fonts shipped with Windows that should be on your system.  It has SIGNIFICANTLY more fonts in it than your system now has.  You need to strive to make your list of fonts better match this list:
    06/10/2009  04:43 PM            10,976 8514fix.fon
    06/10/2009  04:43 PM            10,976 8514fixe.fon
    06/10/2009  04:43 PM            11,520 8514fixg.fon
    06/10/2009  04:43 PM            10,976 8514fixr.fon
    06/10/2009  04:43 PM            11,488 8514fixt.fon
    06/10/2009  04:43 PM            12,288 8514oem.fon
    06/10/2009  04:43 PM            13,248 8514oeme.fon
    06/10/2009  04:43 PM            12,800 8514oemg.fon
    06/10/2009  04:43 PM            13,200 8514oemr.fon
    06/10/2009  04:43 PM            12,720 8514oemt.fon
    06/10/2009  04:43 PM             9,280 8514sys.fon
    06/10/2009  04:43 PM             9,504 8514syse.fon
    06/10/2009  04:43 PM             9,856 8514sysg.fon
    06/10/2009  04:43 PM            10,064 8514sysr.fon
    06/10/2009  04:43 PM             9,792 8514syst.fon
    06/10/2009  04:43 PM            12,304 85775.fon
    06/10/2009  04:43 PM            12,256 85855.fon
    06/10/2009  04:43 PM            12,336 85f1255.fon
    06/10/2009  04:43 PM            12,384 85f1256.fon
    06/10/2009  04:43 PM            10,976 85f1257.fon
    06/10/2009  04:44 PM            12,288 85f874.fon
    06/10/2009  04:43 PM            10,224 85s1255.fon
    06/10/2009  04:43 PM            10,608 85s1256.fon
    06/10/2009  04:43 PM             9,472 85s1257.fon
    06/10/2009  04:44 PM            10,240 85s874.fon
    06/10/2009  04:43 PM            50,468 ahronbd.ttf
    06/10/2009  04:43 PM           158,956 andlso.ttf
    06/10/2009  04:44 PM           109,808 angsa.ttf
    06/10/2009  04:44 PM           106,220 angsab.ttf
    06/10/2009  04:44 PM           103,444 angsai.ttf
    06/10/2009  04:44 PM           109,784 angsau.ttf
    06/10/2009  04:44 PM           106,236 angsaub.ttf
    06/10/2009  04:44 PM           103,408 angsaui.ttf
    06/10/2009  04:44 PM           105,592 angsauz.ttf
    06/10/2009  04:44 PM           105,636 angsaz.ttf
    02/05/2011  03:25 PM           222,356 aparaj.ttf
    02/05/2011  03:25 PM           215,860 aparajb.ttf
    02/05/2011  03:25 PM           228,456 aparajbi.ttf
    02/05/2011  03:25 PM           239,596 aparaji.ttf
    06/10/2009  04:43 PM            35,808 app775.fon
    06/10/2009  04:43 PM            36,672 app850.fon
    06/10/2009  04:43 PM            36,656 app852.fon
    06/10/2009  04:43 PM            37,296 app855.fon
    06/10/2009  04:43 PM            36,672 app857.fon
    06/10/2009  04:43 PM            37,472 app866.fon
    06/10/2009  04:43 PM            80,896 app932.fon
    06/10/2009  04:43 PM            70,000 app936.fon
    06/10/2009  04:43 PM            80,896 app949.fon
    06/10/2009  04:43 PM            70,000 app950.fon
    06/10/2009  04:43 PM           623,628 arabtype.ttf
    11/04/2010  06:59 PM           772,192 arial.ttf
    11/04/2010  06:59 PM           748,720 arialbd.ttf
    11/04/2010  06:59 PM           561,616 arialbi.ttf
    11/04/2010  06:59 PM           555,588 ariali.ttf
    06/10/2009  04:43 PM           119,876 ariblk.ttf
    06/10/2009  04:43 PM        16,264,732 batang.ttc
    06/10/2009  04:44 PM            89,656 browa.ttf
    06/10/2009  04:44 PM            75,424 browab.ttf
    06/10/2009  04:44 PM           100,224 browai.ttf
    06/10/2009  04:44 PM            89,616 browau.ttf
    06/10/2009  04:44 PM            75,416 browaub.ttf
    06/10/2009  04:44 PM           100,216 browaui.ttf
    06/10/2009  04:44 PM            89,376 browauz.ttf
    06/10/2009  04:44 PM            89,380 browaz.ttf
    06/10/2009  04:43 PM            10,992 c8514fix.fon
    06/10/2009  04:43 PM            13,552 c8514oem.fon
    06/10/2009  04:43 PM            17,760 c8514sys.fon
    06/10/2009  04:43 PM           811,052 calibri.ttf
    06/10/2009  04:43 PM           848,720 calibrib.ttf
    06/10/2009  04:43 PM           853,348 calibrii.ttf
    06/10/2009  04:43 PM           899,560 calibriz.ttf
    02/05/2011  03:25 PM         1,622,732 cambria.ttc
    02/05/2011  03:25 PM           792,488 cambriab.ttf
    02/05/2011  03:25 PM           827,080 cambriai.ttf
    02/05/2011  03:25 PM           805,864 cambriaz.ttf
    06/10/2009  04:43 PM           218,504 Candara.ttf
    06/10/2009  04:43 PM           226,564 Candarab.ttf
    06/10/2009  04:43 PM           226,604 Candarai.ttf
    06/10/2009  04:43 PM           228,304 Candaraz.ttf
    06/10/2009  04:43 PM             7,216 cga40737.fon
    06/10/2009  04:43 PM             6,352 cga40850.fon
    06/10/2009  04:43 PM             6,672 cga40852.fon
    06/10/2009  04:43 PM             6,672 cga40857.fon
    06/10/2009  04:43 PM             7,232 cga40866.fon
    06/10/2009  04:43 PM             7,216 cga40869.fon
    06/10/2009  04:43 PM             6,336 cga40woa.fon
    06/10/2009  04:43 PM             5,168 cga80737.fon
    06/10/2009  04:43 PM             4,320 cga80850.fon
    06/10/2009  04:43 PM             5,200 cga80852.fon
    06/10/2009  04:43 PM             4,640 cga80857.fon
    06/10/2009  04:43 PM             5,168 cga80866.fon
    06/10/2009  04:43 PM             5,168 cga80869.fon
    06/10/2009  04:43 PM             4,304 cga80woa.fon
    06/10/2009  04:43 PM           132,832 comic.ttf
    06/10/2009  04:43 PM           117,456 comicbd.ttf
    06/10/2009  04:43 PM           358,256 consola.ttf
    06/10/2009  04:43 PM           368,520 consolab.ttf
    06/10/2009  04:43 PM           364,864 consolai.ttf
    06/10/2009  04:43 PM           375,056 consolaz.ttf
    06/10/2009  04:43 PM           448,768 constan.ttf
    06/10/2009  04:43 PM           450,848 constanb.ttf
    06/10/2009  04:43 PM           447,772 constani.ttf
    06/10/2009  04:43 PM           454,588 constanz.ttf
    06/10/2009  04:43 PM           260,648 corbel.ttf
    06/10/2009  04:43 PM           274,388 corbelb.ttf
    06/10/2009  04:43 PM           269,048 corbeli.ttf
    06/10/2009  04:43 PM           279,400 corbelz.ttf
    06/10/2009  04:44 PM           108,572 cordia.ttf
    06/10/2009  04:44 PM            95,892 cordiab.ttf
    06/10/2009  04:44 PM           100,104 cordiai.ttf
    06/10/2009  04:44 PM           108,544 cordiau.ttf
    06/10/2009  04:44 PM            95,888 cordiaub.ttf
    06/10/2009  04:44 PM           100,100 cordiaui.ttf
    06/10/2009  04:44 PM            94,812 cordiauz.ttf
    06/10/2009  04:44 PM            94,816 cordiaz.ttf
    06/10/2009  04:43 PM            26,432 coue1255.fon
    06/10/2009  04:43 PM            26,544 coue1256.fon
    06/10/2009  04:43 PM            23,440 coue1257.fon
    06/10/2009  04:43 PM            35,888 couf1255.fon
    06/10/2009  04:43 PM            36,032 couf1256.fon
    06/10/2009  04:43 PM            31,760 couf1257.fon
    06/10/2009  04:43 PM           709,600 cour.ttf
    06/10/2009  04:43 PM           710,192 courbd.ttf
    06/10/2009  04:43 PM           530,336 courbi.ttf
    06/10/2009  04:43 PM            23,408 coure.fon
    06/10/2009  04:43 PM            23,440 couree.fon
    06/10/2009  04:43 PM            25,024 coureg.fon
    06/10/2009  04:43 PM            23,440 courer.fon
    06/10/2009  04:43 PM            25,024 couret.fon
    06/10/2009  04:43 PM            31,712 courf.fon
    06/10/2009  04:43 PM            31,776 courfe.fon
    06/10/2009  04:43 PM            33,344 courfg.fon
    06/10/2009  04:43 PM            31,808 courfr.fon
    06/10/2009  04:43 PM            33,360 courft.fon
    06/10/2009  04:43 PM           618,240 couri.ttf
    06/10/2009  04:43 PM             5,600 cvgafix.fon
    06/10/2009  04:43 PM            12,896 cvgasys.fon
    02/05/2011  03:25 PM           190,700 daunpenh.ttf
    06/10/2009  04:43 PM            56,528 david.ttf
    06/10/2009  04:43 PM            55,576 davidbd.ttf
    06/10/2009  04:49 PM                65 desktop.ini
    02/05/2011  03:25 PM           149,624 dokchamp.ttf
    06/10/2009  04:43 PM            36,336 dos737.fon
    06/10/2009  04:43 PM            36,816 dos869.fon
    06/10/2009  04:43 PM            36,656 dosapp.fon
    06/10/2009  04:44 PM           304,428 ebrima.ttf
    06/10/2009  04:44 PM           298,952 ebrimabd.ttf
    06/10/2009  04:43 PM             9,248 ega40737.fon
    06/10/2009  04:43 PM             8,384 ega40850.fon
    06/10/2009  04:43 PM             8,368 ega40852.fon
    06/10/2009  04:43 PM             8,704 ega40857.fon
    06/10/2009  04:43 PM             9,232 ega40866.fon
    06/10/2009  04:43 PM             9,248 ega40869.fon
    06/10/2009  04:43 PM             8,368 ega40woa.fon
    06/10/2009  04:43 PM             6,192 ega80737.fon
    06/10/2009  04:43 PM             5,328 ega80850.fon
    06/10/2009  04:43 PM             5,344 ega80852.fon
    06/10/2009  04:43 PM             5,648 ega80857.fon
    06/10/2009  04:43 PM             5,280 ega80866.fon
    06/10/2009  04:43 PM             6,192 ega80869.fon
    06/10/2009  04:43 PM             5,312 ega80woa.fon
    06/10/2009  04:43 PM           110,436 estre.ttf
    06/10/2009  04:43 PM           172,656 euphemia.ttf
    06/10/2009  04:43 PM           139,332 framd.ttf
    06/10/2009  04:43 PM           152,104 framdit.ttf
    06/10/2009  04:43 PM            63,732 frank.ttf
    02/05/2011  03:25 PM         1,804,512 Gabriola.ttf
    06/10/2009  04:43 PM           256,384 gautami.ttf
    06/10/2009  04:43 PM           221,268 gautamib.ttf
    06/10/2009  04:43 PM           157,080 georgia.ttf
    06/10/2009  04:43 PM           145,940 georgiab.ttf
    06/10/2009  04:43 PM           162,380 georgiai.ttf
    06/10/2009  04:43 PM           164,332 georgiaz.ttf
    06/10/2009  04:43 PM            72,932 gisha.ttf
    06/10/2009  04:43 PM            74,056 gishabd.ttf
    07/14/2009  01:32 AM            26,040 GlobalMonospace.CompositeFont
    07/14/2009  01:32 AM            26,489 GlobalSansSerif.CompositeFont
    07/14/2009  01:32 AM            29,779 GlobalSerif.CompositeFont
    07/14/2009  01:32 AM            43,318 GlobalUserInterface.CompositeFont
    06/10/2009  04:43 PM        13,524,972 gulim.ttc
    06/10/2009  04:43 PM            11,056 h8514fix.fon
    06/10/2009  04:43 PM            12,400 h8514oem.fon
    06/10/2009  04:43 PM            10,032 h8514sys.fon
    06/10/2009  04:44 PM           610,104 himalaya.ttf
    06/10/2009  04:43 PM             5,680 hvgafix.fon
    06/10/2009  04:43 PM             6,512 hvgasys.fon
    02/05/2011  03:25 PM           135,848 impact.ttf
    06/10/2009  04:43 PM           548,036 iskpota.ttf
    06/10/2009  04:43 PM           368,924 iskpotab.ttf
    06/10/2009  04:43 PM            12,896 j8514fix.fon
    06/10/2009  04:43 PM            14,432 j8514oem.fon
    06/10/2009  04:43 PM            10,656 j8514sys.fon
    06/10/2009  04:43 PM            41,584 jsmalle.fon
    06/10/2009  04:43 PM            38,480 jsmallf.fon
    06/10/2009  04:43 PM             6,528 jvgafix.fon
    06/10/2009  04:43 PM             7,728 jvgasys.fon
    06/10/2009  04:43 PM         5,178,844 kaiu.ttf
    06/10/2009  04:43 PM           212,356 kalinga.ttf
    06/10/2009  04:43 PM           205,636 kalingab.ttf
    06/10/2009  04:43 PM           131,264 kartika.ttf
    06/10/2009  04:43 PM           126,460 kartikab.ttf
    06/10/2009  04:44 PM           330,464 KhmerUI.ttf
    06/10/2009  04:44 PM           263,864 KhmerUIb.ttf
    02/05/2011  03:25 PM           201,680 kokila.ttf
    02/05/2011  03:25 PM           202,196 kokilab.ttf
    02/05/2011  03:25 PM           235,940 kokilabi.ttf
    02/05/2011  03:25 PM           241,672 kokilai.ttf
    06/10/2009  04:43 PM            97,516 LaoUI.ttf
    06/10/2009  04:43 PM            88,700 LaoUIb.ttf
    06/10/2009  04:43 PM           120,848 latha.ttf
    06/10/2009  04:43 PM           119,848 lathab.ttf
    06/10/2009  04:44 PM            97,752 leelawad.ttf
    06/10/2009  04:44 PM            97,420 leelawdb.ttf
    06/10/2009  04:43 PM           115,016 lucon.ttf
    06/10/2009  04:43 PM            56,856 lvnm.ttf
    06/10/2009  04:43 PM            54,804 lvnmbd.ttf
    06/10/2009  04:43 PM           325,400 l_10646.ttf
    06/10/2009  04:43 PM           370,084 majalla.ttf
    06/10/2009  04:43 PM           373,816 majallab.ttf
    06/10/2009  04:43 PM         4,337,296 malgun.ttf
    06/10/2009  04:43 PM         4,515,044 malgunbd.ttf
    11/04/2010  07:00 PM           206,260 mangal.ttf
    11/04/2010  07:00 PM           191,892 mangalb.ttf
    06/10/2009  04:44 PM            26,672 marlett.ttf
    06/10/2009  04:43 PM         9,533,888 meiryo.ttc
    06/10/2009  04:43 PM         9,749,256 meiryob.ttc
    06/10/2009  04:44 PM           652,664 micross.ttf
    06/10/2009  04:43 PM        32,217,124 mingliu.ttc
    06/10/2009  04:43 PM        33,805,700 mingliub.ttc
    06/10/2009  04:44 PM             8,704 modern.fon
    06/10/2009  04:44 PM           356,576 monbaiti.ttf
    06/10/2009  04:44 PM           342,840 moolbor.ttf
    06/10/2009  04:43 PM            51,996 mriam.ttf
    06/10/2009  04:43 PM            56,996 mriamc.ttf
    06/10/2009  04:43 PM         9,176,636 msgothic.ttc
    06/10/2009  04:43 PM        21,663,376 msjh.ttf
    06/10/2009  04:43 PM        14,512,072 msjhbd.ttf
    06/10/2009  04:43 PM        10,057,108 msmincho.ttc
    06/10/2009  04:43 PM           235,516 msuighur.ttf
    06/10/2009  04:43 PM        21,767,952 msyh.ttf
    06/10/2009  04:43 PM        14,602,860 msyhbd.ttf
    06/10/2009  04:44 PM           342,124 msyi.ttf
    06/10/2009  04:43 PM            84,940 mvboli.ttf
    06/10/2009  04:43 PM            56,832 nrkis.ttf
    06/10/2009  04:44 PM            82,864 ntailu.ttf
    06/10/2009  04:44 PM            75,552 ntailub.ttf
    06/10/2009  04:44 PM           438,016 nyala.ttf
    06/10/2009  04:44 PM           472,664 pala.ttf
    06/10/2009  04:44 PM           420,052 palab.ttf
    06/10/2009  04:44 PM           336,476 palabi.ttf
    06/10/2009  04:44 PM           413,824 palai.ttf
    06/10/2009  04:44 PM           146,496 phagspa.ttf
    06/10/2009  04:44 PM           150,228 phagspab.ttf
    06/10/2009  04:44 PM           118,824 plantc.ttf
    06/10/2009  04:43 PM            94,300 raavi.ttf
    06/10/2009  04:43 PM            93,800 raavib.ttf
    06/10/2009  04:43 PM            61,060 rod.ttf
    06/10/2009  04:44 PM            13,312 roman.fon
    06/10/2009  04:43 PM            11,056 s8514fix.fon
    06/10/2009  04:43 PM            12,384 s8514oem.fon
    06/10/2009  04:43 PM            17,760 s8514sys.fon
    06/10/2009  04:44 PM            12,288 script.fon
    06/10/2009  04:44 PM           172,732 segoepr.ttf
    06/10/2009  04:44 PM           172,092 segoeprb.ttf
    02/05/2011  03:25 PM           620,204 segoesc.ttf
    02/05/2011  03:25 PM           603,336 segoescb.ttf
    06/10/2009  04:44 PM           517,384 segoeui.ttf
    06/10/2009  04:44 PM           498,124 segoeuib.ttf
    06/10/2009  04:44 PM           386,344 segoeuii.ttf
    06/10/2009  04:44 PM           330,908 segoeuil.ttf
    06/10/2009  04:44 PM           398,976 segoeuiz.ttf
    06/10/2009  04:44 PM           406,192 seguisb.ttf
    06/10/2009  04:44 PM           516,684 seguisym.ttf
    06/10/2009  04:43 PM            62,944 sere1255.fon
    06/10/2009  04:43 PM            65,392 sere1256.fon
    06/10/2009  04:44 PM            59,024 sere1257.fon
    06/10/2009  04:43 PM            89,456 serf1255.fon
    06/10/2009  04:43 PM            95,488 serf1256.fon
    06/10/2009  04:44 PM            84,080 serf1257.fon
    06/10/2009  04:44 PM            57,936 serife.fon
    06/10/2009  04:44 PM            59,952 serifee.fon
    06/10/2009  04:44 PM            60,752 serifeg.fon
    06/10/2009  04:44 PM            63,296 serifer.fon
    06/10/2009  04:44 PM            61,024 serifet.fon
    06/10/2009  04:44 PM            81,728 seriff.fon
    06/10/2009  04:44 PM            85,360 seriffe.fon
    06/10/2009  04:44 PM            86,256 seriffg.fon
    06/10/2009  04:44 PM            90,736 seriffr.fon
    06/10/2009  04:44 PM            84,848 serifft.fon
    02/05/2011  03:25 PM           340,100 Shonar.ttf
    02/05/2011  03:25 PM           301,028 Shonarb.ttf
    06/10/2009  04:43 PM           270,172 shruti.ttf
    06/10/2009  04:43 PM           235,340 shrutib.ttf
    06/10/2009  04:43 PM        10,576,012 simfang.ttf
    06/10/2009  04:43 PM         9,751,960 simhei.ttf
    06/10/2009  04:43 PM        11,785,184 simkai.ttf
    06/10/2009  04:43 PM           116,376 simpbdo.ttf
    06/10/2009  04:43 PM           104,884 simpfxo.ttf
    06/10/2009  04:43 PM           124,628 simpo.ttf
    06/10/2009  04:43 PM        15,323,200 simsun.ttc
    06/10/2009  04:43 PM        15,406,288 simsunb.ttf
    06/10/2009  04:43 PM            25,216 smae1255.fon
    06/10/2009  04:43 PM            32,512 smae1256.fon
    06/10/2009  04:44 PM            24,672 smae1257.fon
    06/10/2009  04:43 PM            20,448 smaf1255.fon
    06/10/2009  04:43 PM            37,952 smaf1256.fon
    06/10/2009  04:44 PM            19,904 smaf1257.fon
    06/10/2009  04:44 PM            26,112 smalle.fon
    06/10/2009  04:44 PM            24,784 smallee.fon
    06/10/2009  04:44 PM            28,912 smalleg.fon
    06/10/2009  04:44 PM            24,832 smaller.fon
    06/10/2009  04:44 PM            29,200 smallet.fon
    06/10/2009  04:44 PM            21,504 smallf.fon
    06/10/2009  04:44 PM            19,600 smallfe.fon
    06/10/2009  04:44 PM            23,120 smallfg.fon
    06/10/2009  04:44 PM            19,760 smallfr.fon
    06/10/2009  04:44 PM            23,008 smallft.fon
    06/10/2009  04:43 PM            69,232 ssee1255.fon
    06/10/2009  04:43 PM            73,216 ssee1256.fon
    06/10/2009  04:44 PM            65,456 ssee1257.fon
    06/10/2009  04:44 PM            72,192 ssee874.fon
    06/10/2009  04:43 PM            95,840 ssef1255.fon
    06/10/2009  04:43 PM            67,328 ssef1256.fon
    06/10/2009  04:44 PM            90,336 ssef1257.fon
    06/10/2009  04:44 PM           102,400 ssef874.fon
    06/10/2009  04:44 PM            64,656 sserife.fon
    06/10/2009  04:44 PM            66,464 sserifee.fon
    06/10/2009  04:44 PM            65,328 sserifeg.fon
    06/10/2009  04:44 PM            68,848 sserifer.fon
    06/10/2009  04:44 PM            64,400 sserifet.fon
    06/10/2009  04:44 PM            89,856 sseriff.fon
    06/10/2009  04:44 PM            92,032 sseriffe.fon
    06/10/2009  04:44 PM            90,288 sseriffg.fon
    06/10/2009  04:44 PM            98,256 sseriffr.fon
    06/10/2009  04:44 PM            89,456 sserifft.fon
    06/10/2009  04:43 PM             5,680 svgafix.fon
    06/10/2009  04:43 PM            12,896 svgasys.fon
    06/10/2009  04:44 PM           228,348 sylfaen.ttf
    06/10/2009  04:44 PM            70,128 symbol.ttf
    06/10/2009  04:44 PM           697,972 tahoma.ttf
    06/10/2009  04:44 PM           647,184 tahomabd.ttf
    06/10/2009  04:44 PM            72,008 taile.ttf
    06/10/2009  04:44 PM            63,364 taileb.ttf
    11/04/2010  07:00 PM           834,240 times.ttf
    11/04/2010  07:00 PM           840,736 timesbd.ttf
    11/04/2010  07:00 PM           619,972 timesbi.ttf
    11/04/2010  07:00 PM           661,244 timesi.ttf
    06/10/2009  04:43 PM           172,976 tradbdo.ttf
    06/10/2009  04:43 PM           177,088 trado.ttf
    06/10/2009  04:44 PM           136,172 trebuc.ttf
    06/10/2009  04:44 PM           126,376 trebucbd.ttf
    06/10/2009  04:44 PM           133,716 trebucbi.ttf
    06/10/2009  04:44 PM           141,836 trebucit.ttf
    06/10/2009  04:43 PM           188,908 tunga.ttf
    06/10/2009  04:43 PM           174,896 tungab.ttf
    06/10/2009  04:44 PM            66,328 upcdb.ttf
    06/10/2009  04:44 PM            70,236 upcdbi.ttf
    06/10/2009  04:44 PM            71,248 upcdi.ttf
    06/10/2009  04:44 PM            70,912 upcdl.ttf
    06/10/2009  04:44 PM            75,300 upceb.ttf
    06/10/2009  04:44 PM            78,212 upcebi.ttf
    06/10/2009  04:44 PM            77,716 upcei.ttf
    06/10/2009  04:44 PM            74,048 upcel.ttf
    06/10/2009  04:44 PM            64,056 upcfb.ttf
    06/10/2009  04:44 PM            67,216 upcfbi.ttf
    06/10/2009  04:44 PM            67,424 upcfi.ttf
    06/10/2009  04:44 PM            64,900 upcfl.ttf
    06/10/2009  04:44 PM            71,080 upcib.ttf
    06/10/2009  04:44 PM            73,612 upcibi.ttf
    06/10/2009  04:44 PM            73,632 upcii.ttf
    06/10/2009  04:44 PM            71,068 upcil.ttf
    06/10/2009  04:44 PM            74,428 upcjb.ttf
    06/10/2009  04:44 PM            77,692 upcjbi.ttf
    06/10/2009  04:44 PM            76,456 upcji.ttf
    06/10/2009  04:44 PM            73,568 upcjl.ttf
    06/10/2009  04:44 PM            64,648 upckb.ttf
    06/10/2009  04:44 PM            68,872 upckbi.ttf
    06/10/2009  04:44 PM            68,140 upcki.ttf
    06/10/2009  04:44 PM            64,316 upckl.ttf
    06/10/2009  04:44 PM            54,260 upclb.ttf
    06/10/2009  04:44 PM            57,100 upclbi.ttf
    06/10/2009  04:44 PM            56,752 upcli.ttf
    06/10/2009  04:44 PM            54,264 upcll.ttf
    02/05/2011  03:25 PM           216,004 utsaah.ttf
    02/05/2011  03:25 PM           210,644 utsaahb.ttf
    02/05/2011  03:25 PM           218,956 utsaahbi.ttf
    02/05/2011  03:25 PM           239,152 utsaahi.ttf
    02/05/2011  03:25 PM           386,996 Vani.ttf
    02/05/2011  03:25 PM           370,576 Vanib.ttf
    02/05/2011  03:25 PM           188,184 verdana.ttf
    02/05/2011  03:25 PM           155,384 verdanab.ttf
    02/05/2011  03:25 PM           176,992 verdanai.ttf
    02/05/2011  03:25 PM           175,444 verdanaz.ttf
    06/10/2009  04:44 PM             5,168 vga737.fon
    06/10/2009  04:44 PM             5,168 vga775.fon
    06/10/2009  04:44 PM             5,232 vga850.fon
    06/10/2009  04:44 PM             6,160 vga852.fon
    06/10/2009  04:44 PM             5,120 vga855.fon
    06/10/2009  04:44 PM             5,552 vga857.fon
    06/10/2009  04:44 PM             5,184 vga860.fon
    06/10/2009  04:44 PM             5,184 vga861.fon
    06/10/2009  04:44 PM             5,200 vga863.fon
    06/10/2009  04:44 PM             5,184 vga865.fon
    06/10/2009  04:44 PM             6,128 vga866.fon
    06/10/2009  04:44 PM             5,184 vga869.fon
    06/10/2009  04:43 PM             7,232 vga932.fon
    06/10/2009  04:43 PM             6,272 vga936.fon
    06/10/2009  04:43 PM             6,304 vga949.fon
    06/10/2009  04:43 PM             6,272 vga950.fon
    06/10/2009  04:43 PM             5,952 vgaf1255.fon
    06/10/2009  04:43 PM             6,528 vgaf1256.fon
    06/10/2009  04:44 PM             5,376 vgaf1257.fon
    06/10/2009  04:44 PM             7,168 vgaf874.fon
    06/10/2009  04:44 PM             5,360 vgafix.fon
    06/10/2009  04:44 PM             5,376 vgafixe.fon
    06/10/2009  04:44 PM             6,112 vgafixg.fon
    06/10/2009  04:44 PM             5,600 vgafixr.fon
    06/10/2009  04:44 PM             6,112 vgafixt.fon
    06/10/2009  04:44 PM             5,168 vgaoem.fon
    06/10/2009  04:43 PM             7,104 vgas1255.fon
    06/10/2009  04:43 PM             7,648 vgas1256.fon
    06/10/2009  04:44 PM             6,656 vgas1257.fon
    06/10/2009  04:44 PM             8,704 vgas874.fon
    06/10/2009  04:44 PM             7,280 vgasys.fon
    06/10/2009  04:44 PM             6,608 vgasyse.fon
    06/10/2009  04:44 PM             7,008 vgasysg.fon
    06/10/2009  04:44 PM             6,912 vgasysr.fon
    06/10/2009  04:44 PM             6,912 vgasyst.fon
    02/05/2011  03:25 PM           171,192 vijaya.ttf
    02/05/2011  03:25 PM           154,072 vijayab.ttf
    06/10/2009  04:43 PM           259,520 vrinda.ttf
    06/10/2009  04:43 PM           257,672 vrindab.ttf
    06/10/2009  04:44 PM           121,664 webdings.ttf
    06/10/2009  04:44 PM            83,740 wingding.ttf
    I'm applying Windows Updates to that system and will update the above list when the very latest updates have been applied.
    -Noel

  • When I try to use Safari I get an error message that states it can not find server Xn--%20%20-1ia0eb092a

    When I try to use safari I get a message that states can not find server Xn--%20%20-1ia0eb092a

    It sounds like you've got a messed-up homepage. Click the Safari menu, click Preferences, and under "Home page", re-type the page you'd prefer to load when Safari starts (eg "nytimes.com" or whatever). Close preferences and try again.
    Matt

  • Iv downloaded the 0845 wizard from the App Store. Registered my details and it has been working. But for some reason it won't let me log in and keep saying failed every time I try to use it. Iv deleted and re-downloaded the app and it still says the same?

    Iv downloaded the 0845 wizard from the App Store. Registered my details and it has been working. But for some reason it won't let me log in and keep saying failed every time I try to use it. Iv deleted and re-downloaded the app and it still says the same?

    I would say to start by looking on their web site... unfortunately, that appears to be dead.
    Based on the horrible ratings on the App Store (1 star for the current version), I'm not surprised it doesn't work well.

  • After backing up my phone to the new iphone 4S, voice control comes on every time I try to use siri?

    After backing up my phone to the new iphone 4S, voice control comes on every time I try to use siri? I have to newest itunes so what should I do? I completley can not use Siri

    Some advice from various locations on the web (use google).  Each works for some users, not all.  Give these a try.
    Try to deauthorize the computer then authorize it.
    select song or app. that's not authorized, itunes will ask for your password, enter password, click ok, and ok again. Done.
    I had the same problem when I switched from my laptop to a macbook. What I figured out was that I had purchased applications under two different email addresses. You can click on one of the applications that is not syncing and go to "File" then "Get Info" to find out what email address you used to purchase those applications. Hopefully this helps.
    Sometimes a reboot of either the computer or the iPhone or both fixes this, if you’ve authorized already.

  • Hi,  I'm in Nova Scotia, Canada and when I try to use Siri it loads and loads and then says, "I'm really sorry about this, but I can't take any requests right now. Please try again in a little while."  I rebooted and it didn't fix the problem. I just got

    Hi,
    I'm in Nova Scotia, Canada and when I try to use Siri it loads and loads and then says, "I'm really sorry about this, but I can't take any requests right now. Please try again in a little while."
    I rebooted and it didn't fix the problem. I just got my iPhone 4s (unlocked right from Apple) several weeks ago.

    Siri has been a bit more erratic than usual in the last week or so. Apple has announced a major announcement for 9/12. Conclusions are left to the reader.
    Best of luck.
    (Occasionally from Lower Economy, Colchester County).

  • I already have installed Ai, Lr an Id, but when I try to use it the software says that the Proof period is over, and then ask me for a Serial Number of 6 digits. otherwise It offers to me to purchase a new subscription. BUT I ALREADY PAY 2 MONTH of THIS P

    I already have installed Ai, Lr an Id, but when I try to use it the software says that the Proof period is over, and then ask me for a Serial Number of 6 digits.
    otherwise It offers to me to purchase a new subscription. BUT I ALREADY PAY 2 MONTH of THIS PLAN!!!!!! 
    I want to USE the products….CAN YOU HELP ME????
    regards,
    Leticia
    There aren´t an email, a phone number, a chat or a place to find helpful. I live in Argentina, where I can find a solve to my problem?

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    If you really want to cancel, You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • I want to use my icloud email address as a new apple ID.  It was an additional email contact address I originally set up for my child.  But now, I'd like to set her up on Family Sharing, using that email as her ID.  Obviously, when I try to use it wh

    I want to use one of my icloud email addresses as a new apple ID.  It was an additional email contact address I originally set up for my child.  But now, I'd like to set her up on Family Sharing, using that email as her ID.  Obviously, when I try to use it when setting up a new apple ID, it says the email is already being used (Yes, by ME) and I need to select a different one.  Can I somehow delete that email address in order to set up a new apple ID using it?  Or is there another way to "re-use" that address for my child's new ID?

    "Well, then I want to be able to merge that one and the one my purchases are on..."
    This is exactly what I want to do but don't think I can:
    I noticed the following :
    If you attempt to create an Apple ID which is the same as your @icloud email address from the online facility, it does not allow you (can't use an Apple associated email address as your Apple ID). However - if you start a fresh device - such as a new iPhone, iPad (must be mobile it seems), and then create an iCloud account and Apple ID from the prompts when setting up the mobile device, it IS possible to have your Apple ID and @iCloud email address as the same. I know because I just did it!
    Unfortunately for me, the result I got above is not for one of my own ID's but a friends, and I would VERY much like to do the same - my current Apple ID is a completely different email address from my iCloud account. Trying to get them the same in my situation is a major bother - I think that if I wipe a device (such as an iPhone5 that is mine) and try to setup as I did my friend's device, then I will get a conflict because the iCloud email I have ALREADY exists. This is my worry and I will not attempt this until I get the new iPad 4 soon to test this.
    There is an inconsistency here between the two methods of creating Apple ID's and iCloud accounts.
    Overall in my opinion, the Apple ID system as currently available from Apple is not designed very well, and should be addressed.
    Best wishes -

  • Problem when try to use ACSE+ Windows AD to authenticate two kind of WLAN c

    I met a problem when try to use ACSE+ Windows AD to authenticate two kind of WLAN clients:
    1. Background:
    We have two WLAN: staff and student, both of them will use PEAP-MSCHAPv2, ACSE will be the Radius server, it will use Windows AD's user database. In AD, they create two groups: staff and student. The testing account for staff is staff1, the testing account for student is student1.
    2. Problem:
    If student1 try to associate to staff WLAN, since both staff and student WLAN using the same authentication method, the auth request will be send to AD user database, since student1 is a valid user account in AD, then it will pass the authentication, then it will join the staff WLAN. How to prevent this happen?
    3. Potential solution and its limitation:
    1) Use group mapping in ACSE(Dynamic VLAN Assignment with WLCs based on ACS to Active Directory Group Mapping), but ACS can only support group mapping for those groups that have no more than 500 users. But the student group will definitely exceed 500 users, how to solve it?
    2) Use methods like “Restrict WLAN Access based on SSID with WLC and Cisco Secure ACS”: Configure DNIS with ssid name in NAR of ACSE, but since DNIS/NAR is only configurable in ACSE, don't know if AD support it or not, is there any options in AD like DNIS/NAR in ACSE?
    Thanks for any suggestions!

    I think the documentation for ACS states:
    ACS can only support group mapping for users who belong to 500 or fewer Windows groups
    I read that as, If a user belongs to >500 Windows Group, ACS can't map it. The group can have over 500 users, its just those users can't belong to more than 500 groups.

  • I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    Logged the call with SAP who directed me to 'Define settings for attachments' in IMG and setting the 'Deactivate Java Applet' & 'Deactivate Attachment versioning' checkboxes - problem solved.

  • My ipod 5th gen says it is connected to the internet and i can go on apps that require an internet connection but whe i try to use the weather or another app that uses your current location it cant find me???

    My ipod 5th gen says it is connected to the internet and i can go on apps that require an internet connection but whe i try to use the weather or another app that uses your current location it cant find me???

    If you open the Maps app where does that say you are located?
    For location the iPod uses the location of nearby routers that are in Apple's database of routers and their location. Thus it appears that Apple's database is incorrect. You do not have to be connected to the router, just within range.
    Apple periodically updates their database based on information they obtain from iPhones, The iPhone has to have turned on the option to send info to Apple. no one has found another way to get the location of a router added/corrected.
    You can confirm that by going to well-know place with wifi like Starbucks or McDonalds                              

  • Firefox won't open at all, and when I try to use the 'run' feature, it says the file has been moved, etc. I use Windows 8 and I can not lose my bookmarks. Help?

    Firefox has been working great on my computer for months, and then all the sudden it wouldn't load any pages. So naturally I restarted my computer, but when it restarted Firefox wouldn't open at all. The icon glows for a bit like normal, then it fades and never actually opens. When I try to use the 'run' command, I get this error:
    "C:\Program Files\Mozilla Firefox\ refers to a location that is unavailable. It could be on a hard drive on this computer, or on a network. Check to make sure that the disk is properly inserted, or that you are connected to the Internet or your network, and then try again. If it still cannot be located, the information might have been moved to a different location."
    I also tried the same for the file in the x86 folder but it gave the same error, and I went and looked for the files in the location given and they were there.
    Firefox didn't crash, so there aren't any other error messages I can give you.
    The things I had bookmarked are really important, I can not lose those, but other than that I'm fine with anything else needing to re-installed, etc.
    Help please?

    But I can't... find... it... It's not there.
    Unless you're talking about the entire Mozilla Firefox folder (which isn't what the thing you copied says,) there is no installation folder.

  • I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    Can you open the Preview program without loading a file, like by itself?
    If it doesn't load then I suspect a corrupt Preview preference file.
    Deleting the System Preference or other .plist file
    Can you open other files with Preview, like jpg's and images?
    How about other PDFs? or is it just that one you have downloaded?
    Run through this list of fixes
    Step by Step to fix your Mac

Maybe you are looking for