Dynpro-PAI doesn't recognize actual selections in ALV-Control

Hi Control-Framework-Experts,
I have a Dynpro with an ALV-Grid-Control (cl_salv_table).
You can mark rows.
There is User-ALV-Button (cl_salv_functions_list) and
a event-handler (EVENT added_function OF cl_salv_events),
which find out, what rows are selected and gives a corresponding Info-message.
Example:
The rows 1 and 2 are selected.
User presses the ALV-Button
ALV-Event-Handler Method is proceeded and the following message is shown
"Selected Rows: 1   2".
Everything works fine.
Now the Problem. I want to put this function to a "normal" Dynpro-Standard-Toolbar-Event.
The PAI-Module does the same coding as the ALV-Event-Handler-Method.
But -> The Result is outdated.
Example:
The rows 1 and 2 are selected.
User presses the ALV-Button
ALV-Event-Handler Method is proceeded and the following message is shown
"Selected Rows: 1   2".
Now - Only Row 1 is selected.
+The Dynpro-Standard-Toolbar-Button is pressed. +
The PAI-Module (user_command_0100) tries to find out the selected rows -> Result:
"Selected Rows: 1   2". (wrong)
The PAI-Module only shows the result of the last Event-Handler-Call.
What is the trick to synchronize Control and Dynpro?
Regards
Juergen
Here ist the coding (sorry for some german inline-comments)
program  zschoe01.
data:      ok_code like sy-ucomm.
* Dynpro-CustomControl
data: gr_cont01 type ref to cl_gui_custom_container,
      gr_alv01  type ref to cl_salv_table.
types: begin of ts_fauf,
         aufnr type aufnr,
         text type maktx,
       end of ts_fauf.
data: gt_fauf type table of ts_fauf,
      gs_fauf type ts_fauf.
*       CLASS lcl_event_handler DEFINITION
class lcl_event_handler definition.
  public section.
*   Klassenmethoden
*   Trick, weil man sich so das Erzeugen eines gesonderten Objekts
*   sparen kann
    class-methods:
*     FCODE-Behandlung innerhalb des ALV01
      handle_alv01_user_command
        for event added_function of cl_salv_events
        importing e_salv_function.
endclass.                    "lcl_event_handler DEFINITION
*       CLASS lcl_event_handler IMPLEMENTATION
class lcl_event_handler implementation.
*     FCODE-Behandlung innerhalb des ALV01
  method       handle_alv01_user_command .
    data: lr_selections type ref to cl_salv_selections,
          lt_rows type salv_t_row,
          ls_row like line of lt_rows.
    data: lv_string type string,
          lv_char(6) type c.
* Markierte Zeilen aus ALV-Anzeige ermitteln.
    lr_selections = gr_alv01->get_selections( ).
    lt_rows = lr_selections->get_selected_rows( ).
    if sy-subrc <> 0 or lt_rows[] is initial.
      message i001(00) with 'Nothing selected'.
    else.
      case e_salv_function.
        when 'SAVE'.
          clear lv_string.
          loop at lt_rows into ls_row.
*           Aufzählung aller markierten Zeilen in einen langen String
            write ls_row to lv_char.
            concatenate lv_string lv_char into lv_string separated by space.
          endloop.
          message i001(00) with 'Selected Rows:' lv_string.
      endcase.
    endif.
  endmethod.                    "handle_alv01_user_command
endclass.                    "lcl_event_handler IMPLEMENTATION
start-of-selection.
  gs_fauf-aufnr = '4711'.
  gs_fauf-text  = 'Text1'.
  append gs_fauf to gt_fauf.
  gs_fauf-aufnr = '5616'.
  gs_fauf-text  = 'Another Text'.
  append gs_fauf to gt_fauf.
  call screen 100.
*  MODULE status_0100 OUTPUT
module status_0100 output.
  set pf-status '0100'.
  set titlebar '0100'.
endmodule.                 " STATUS_0100  OUTPUT
*  MODULE init_controls OUTPUT
module init_controls output.
  perform init_controls.
endmodule.                    "init_controls OUTPUT
*&      Module  exit_commands_0100  INPUT
*       text
module exit_commands_0100 input.
*   -> Transaktion verlassen
  leave to screen 0.
endmodule.                 " exit_commands_0100  INPUT
*&      Module  USER_COMMAND_0100  INPUT
*       text
module user_command_0100 input.
  case ok_code.
    when 'SAVE'.
*     (Ctrl-S) gedrückt -> Same Coding as in lcl_event_handler
      data: lr_selections type ref to cl_salv_selections,
            lt_rows type salv_t_row,
            ls_row like line of lt_rows.
      data: lv_string type string,
            lv_char(6) type c.
*     Markierte Zeilen aus ALV-Anzeige ermitteln.
      lr_selections = gr_alv01->get_selections( ).
      lt_rows = lr_selections->get_selected_rows( ).
      if sy-subrc <> 0 or lt_rows[] is initial.
        message i001(00) with 'Nothing selected'.
      else.
        clear lv_string.
        loop at lt_rows into ls_row.
*          Aufzählung aller markierten Zeilen in einen langen String
          write ls_row to lv_char.
          concatenate lv_string lv_char into lv_string separated by space.
        endloop.
        message i001(00) with 'Selected Rows:' lv_string.
      endif.
  endcase.
endmodule.                 " USER_COMMAND_0100  INPUT
*&      Form  init_controls
*       text
form init_controls .
  data: lr_selections type ref to cl_salv_selections.
  data: lr_functions type ref to cl_salv_functions_list.
  data: lr_events type ref to cl_salv_events_table.
  data: lv_text             type string,
        lv_icon type string.
  if gr_cont01 is initial.
    create object gr_cont01
      exporting
*       parent                      =
        container_name              = 'CUSTCTRL01'.
*... §2 create an ALV table
    try.
        cl_salv_table=>factory(
          exporting
            r_container    = gr_cont01
            container_name = 'CUSTCTRL01'
          importing
            r_salv_table   = gr_alv01
          changing
            t_table        = gt_fauf ).
      catch cx_salv_msg.                                "#EC NO_HANDLER
    endtry.
*... §3 Functions
*... §3.1 activate ALV generic Functions
    lr_functions = gr_alv01->get_functions( ).
*  lr_functions->set_default( abap_true ).
    lr_functions->set_all( abap_true ).
    try.
        lv_text = '__Who_is_selected?___'.
        lr_functions->add_function(
          name     = 'SAVE'
          text     = lv_text
          tooltip  = lv_text
          position = if_salv_c_function_position=>left_of_salv_functions ).
      catch cx_salv_wrong_call cx_salv_existing.
    endtry.
*... §4.3 set the selection mode: multiple or single row selection
    lr_selections = gr_alv01->get_selections( ).
    lr_selections->set_selection_mode( if_salv_c_selection_mode=>row_column ).
*... §5 register to the events of cl_salv_table
    lr_events = gr_alv01->get_event( ).
*... §5.1 register to the event USER_COMMAND
**   Eventhandlermethode auch wirklich zuordnen.
**   Achtung: Syntax! Weil Klassenmethode, Aufruf mit =>
**   (vgl. Objekte ->)
    set handler:
      lcl_event_handler=>handle_alv01_user_command for lr_events.
    gr_alv01->display( ).
  endif.
endform.                    " init_controls

Well I figured out why it wasn't performing like I expected.  My logic was wrong.  Seems reasonable.
Was I right about this part though?
My guess is the restore
doesn't show up because the window isn't really maximized, because I
made it smaller to maintain proportions.
My updated VI is attached
Message Edited by elset191 on 09-23-2009 02:50 PM
Tim Elsey
LabVIEW 2010, 2012
Certified LabVIEW Architect
Attachments:
Untitled 1.vi ‏25 KB

Similar Messages

  • Hello, since I actualized my Mac with Maverick it doesn't recognize any  external hard disk ,... only the one to make copy on the time machine. Can anybody help me? thank you!!!!

    hello, since I actualized my Mac with Maverick it doesn't recognize any  external hard disk ,... only the one to make copy on the time machine. Can anybody help me? thank you!!!!

    Hello Laurabcn,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    USB and FireWire Quick Assist
    http://support.apple.com/kb/ht1151
    Have a nice day,
    Mario

  • Firefox doesn't print or open preview, when I select print preview I get the following error: Couldn't open the file. It may be corrupt or a file format that Preview doesn't recognize.

    Firefox doesn't print or open preview, when I select print preview I get the following error: Couldn’t open the file. It may be corrupt or a file format that Preview doesn’t recognize.
    However, when I print from Safari or another program, I have no problems
    == Yesterday

    The only solution to corrupted files is to restore from your back up.
    Regards
    TD

  • I have a Mac Mini, and it won't accept connecting my Sony video camera.  So I got a SD mem card reader to unload my movies from.  It worked the first time I used it a few months ago.  This time it says it doesn't recognize the format I am trying to use?

    I have all thenecessary updates.  I have switched over from a PC to Mac back in April and have nad nothing but problems adapting.  I don't know why this worked the first time, and put my videos inti imovie, and now it doesn't recognize it at all.  And the Mem card reader does work, because I just put the SD card from my regular camera into it and it downloaded those fine, it just won't take my movies!

    Which sony camera? I have a Sony HDR-CX550 right now and have been able to use the SD card as well as connect the camera directly. I also had CX110 that work too. You may want to try to copy the complete top level folder from the SD card to the Hard drive, then try to "import from Camera archive" and select that folder.

  • Imported photo's from computer, via Itunes, to iphone, now itunes can't find the folder with original pictures from Iphone or doesn't recognize it.

    Dear reader,
    i just bought a new Iphone 5s, and decided to download Itunes and sync my Iphone with my laptop. Everyting went well until i decided to try out some things and i imported pictures via Itunes from laptop to Iphone. this is how i did it: Itunes - iphone - pictures - pictures synchronized from 'option choose map' - I chose another map - after, i 'ticked' box 'all maps'. Then i hit the button 'synchronize'. I forgot to look how the orignal map was called and this was the one Itunes syncronised autmatically with, that one also contaned all the original pictures on my Iphone. So, after putting some new photo's on my Iphone, i wanted to change the settings back to normal so my Itunes and Iphone could sync iphone pictures again. But I can't find the old map back or Itunes doesn't recognize the map. I already tried to use the map 'Ipod Photo Cache' but it shows only empty folders. I also tried computer - iphone - Internal storage or DCIM or 860OKMZO; No idea what that means but i thought that the last two folders can contain pictures. However, i get an error if select these ones a map in Itunes. How do I get back to the old settings again?
    I hope I described the problem well; English is not my native language so i'm sure this might contain grammar mistakes.
    A big 'thank you' for helping me in advance!

    When i connected the iphone to my laptop, i found the location of the pictures on the iphone; the a map called  '860OKMZO' (i've mentioned this map earlier, this folder is located inside the folder DCIM). But if i try to open it with Itunes, this error comes up: 'foldername is invalid'. I figured that Itunes could have saved the synchronised pictures in another map somewhere else but i've found nothing... 

  • My iPod Classic 160 is in disc mode and won't turn off, itunes doesn't recognize it - ¿how can I make it work again?

    My iPod Classic 160 is in disc mode.  I responds to nothing.  iTunes doesn't recognize it.  It doesn't sync.  I've tried to restore and got error 1429.  Now it just stays in disc mode and won't turn off.  I'm keeping it connected to the charger so it doesn't go dead.  Is there anything I can do to resurrect my pod?

    To get out of disk mode do a iPod Hard Reset.
    Toggle the Hold switch till you dont see the red mark.
    Press Menu and Center buttons simultaneously for about 10 secs till the Apple logo comes ON then release the buttons
    Select your preferred language.
    See this Apple support Article on the 5Rs.
    http://www.apple.com/support/ipod/five_rs/classic/
    If you try to restore and get a1429 error message, read this Apple Support Article
    http://support.apple.com/kb/TS1372
    Good Luck!

  • AE CC doesn't recognize GPU on MacBook Pro Retina 15'

    Hi I've installed the latest After Effects CC 2014 version and it doesn't recognize my GPU.
    Following previous thread advice, I've also installed the latest CUDA driver version 6.5.37 and restarted the computer.
    I have a MacBook Pro Retina 15' running on OS X Yosemite with the NVIDIA GeForce GT 750M 2048 MB card.
    I can't make the program recognize the GPU, how can I solve this?????

    In the advanced secation select the option to use an unsupported card. There are several threads on this.

  • The iMac doesn't recognize my external hard disk

    My iMac doesn't recognize my external hard disk. The iMac also keeps a DVD inside. It doen't throw it out despite "eject".

    Sounds like you might need to make that call. In the meantime here are a few of things you could try that may help:
    To eject the disk try a restart holding down the mouse button - hopefully it'll eject.
    If you are running either Mountain Lion (10.8) or Lion (10.7) try booting into the Recovery HD:
    Restart holding down Command+r. At the screen with 4 choices choose Disk Utility and then select Macintosh HD and click on repair disk. If it fixes anything click on repair disk again until you get a clean pass. Restart as normal from the Apple menu.
    If you are running an earlier OS you would normally carry out this process by putting the grey restore disk that came with your Mac in the Disk drive and restarting holding down the C key. Choose your language and at the next screen from the menu bar select Utilities>Disk Utility and then follow the above instructions (I realise you won't be able to do this if you have a disk stuck in the optical disk drive).
    Try an SMC and PRAM reset: https://discussions.apple.com/docs/DOC-3603
    Try a Safe Boot: Restart holding down the shift key until you see a grey progress bar. Once it's booted restart as normal from the Apple menu.
    If none of this helps, I guess you need to make that call. Good luck.

  • Acrobat Pro on Mac OS X 10.6.2 doesn't recognize scanner

    I recently installed Adobe Acrobat Pro 9.2.0 on my MacBook running OS X 10.6.2 (Snow Leopard). I can't scan from within Acrobat because it doesn't recognize my HP OfficeJet 4315 scanner. I can scan from the Apple Image Capture software just fine. I can edit documents just fine in Acrobat; I just can't scan from within Acrobat.
    When I select "Create > PDF from Scanner" I get the following dialog box and no device is in the "Scanner:" dropdown list.
    Please help! Thanks.

    MacDaddyGro wrote:
    Well, I had no idea what I was doing with the whole SANE/Twain thing (although I did read about the SANE project) but I did go ahead and install the Snow Leopard components for SANE as you suggested. This did not help. Now in Acrobat a scanner named "SANE" shows up in the list, but when I select it and try to scan I get the following error message:
    I did not see my HP scanner in the list of supported scanners on the SANE site, but thought I'd try anyway.
    I have not yet tried the other suggestion you made.
    Thanks for trying.
    Sorry won't work unless you machine is listed, or type similar to yours is listed. in one of the components is installed in the system preferences go through that list and turn off all items except for your brand of scanner. And try again.
    Also restart computer, and unplug and plug back in your scanners usb connection.
    If that doesn't work. Then you have to go to Silverfast and see if they have a package for your Scanner. If so. You will have to pay for it. But is well worth it.
    I never have understood which despite having Scanner in Acrobat praticaly since day one. They have never been good about scanner support in Mac anyway.

  • Mini doesn't recognize airport

    My mini doesn't recognize the airport card. I have restarted my rounter, modem and my mac but no luck. All software on my Mini is up to date and other computers are connected to the network. The network tab in System Preferences doesn't give me an option to connect to airport.

    In this thread, your first post suggests you are running MacOS 10.4.8, but the second that you have 10.4.10. If you are running the latter, did the Airport work before and since stop? Perhaps around the time of the update?
    Do you see any sign of Airport, such as the empty fan in the menu bar?
    In the network preferences (and I apologize, I don't presently have a Mac running Tiger to test this on), when you click to add an interface and select Airport, does it then show the hardware to be present?
    Some time ago I was tracking a series of posts on www.macfixit.com which related to Airport issues in 10.4.10. It was suggested that if the Airport card was not recognized, to try an SMC reset (Intel Systems) or PMU Reset (PPC minis) Other issues could occasionally be resolved by removal of AppleAirport.kext, AppleAirport2.kext and AppleAiport3.kext files from the >System>Library>Extensions folder, but you would need a source of rreplacements, either from your existing MacOS install disk or the latest Airport Updater downloaded from Apple. In either case you'd need a utility called Pacifist to extract just those files. Sadly I don't have a Tiger system on hand to test that out at present.
    One troubleshooting step you might try is to create a new user account on the system and see if that account can 'see' the Airport card, thus indicating an issue at the user rather than systemwide level.
    It is a good sign however that the Airport hardware is seen by the profiler. Basically that means it's failure in the system is software.

  • IPhoto doesn't recognize iPhoto library - HELP!

    When I opened iPhoto today, there are "no photos" in the library, and when I open it holding the option key and try to select the iPhoto library (which does exist) it says it can't recognize those files. I can't get iPhoto to be the default application for jpeg files either - it says it doesn't recognize those either. I know the photos are there in the library but iPhoto won't open them - please help!

    Welcome to the Apple Discussions.
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new library:
    Note this will give you a working library with the same Rolls and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library on your desktop and find the Originals folder. From the Originals folder drag the individual Roll Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Further, iPhoto is a database not an image viewer and it cannot be be set as the default application to view files.
    Regards
    TD

  • New Mac Mini doesn't recognize airport card

    I have a new mac mini, leopard, 1.8G c2duo, and have finally resolved some display issues. Now it doesn't recognize my airport card. Ideas?

    If the airport card doesn't appear in the System Profiler (select 'About this Mac' in the Apple menu, then click the 'more info' button, then click 'Airport Card' down the left hand side) then the mini likely has a hardware problem and would be in need of repair/replacement. On the other hand, if the Airport Card shows up there, the system clearly can see the card, but it then means there is likely a problem with MacOS or a setting - in which case if you could describe the symptom (ie, where it is you are not seeing the card) then it may be possible to resolve.

  • 10.9.2 doesn't recognize scanner in Canon MX725 after upgrade

    10.9.2 doesn't recognize scanner in Canon MX725 (WLAN) after upgrade.
    I've reseted the printing system. Printing works fine.
    Any Suggestions?

    So after installing the ICA driver, did you try removing the MX725 from Printers and Scanners and adding again?
    And is the MX725 still failing to appear under the Shared entry of Image Capture?
    If it is not showing in Image Capture then open System Information (Applications > Utilities) and select Printers in the left column. The right pane will show information about the MX725. Please copy that information and paste back here for me to check.
    You could also try installing the MX725 TWAIN scanner driver via link below. This download includes Canon's IJ Scan Utility, which will install in Applications > Canon Utilities.
    http://support-au.canon.com.au/contents/AU/EN/0100488801.html

  • Mac OS X doesn't recognize Internet addresses starting with "http:"

    I have a Mac G5 and I am using Safari 4.13. My problem is that whenever A site I am on has a reference to a document (usually a ,pdf file) the screen goes blank for a moment as if it is going to the sight and then the above message appears on the screen. The message makes no sense to me and I am very frustrated as naturally I need to access these documents. I have tried going back and forth, cutting and pasting with no affect. If I use another browser it works just fine, I only have this problem with Safari. Any suggestions would be helpful.
    Hayne7

    Hi and welcome.......
    I found a thread that might help you.
    http://www.mackb.com/Uwe/Forum.aspx/mac/27730/OSX-doesn-t-recognize-http
    So from your Safari menu bar click Safari / Preferencees then select the Security tab.
    Where you see *Web content* if the box next to *Enable plug-ins* is not selected, select that box then quit Safari (Command + Q) then relaunch Safari.
    Carolyn

  • Using Photoshop Elements to edit raw.  Doesn't recognize file type

    I recently downloaded photoshop elements to use as my editor within Iphoto. I've set it up as the default editor in preferences, and made the appropriate change in the advanced settings within Iphoto so that it exports edits in RAW. When I attempt to edit by double clicking, Photoshop Elements gives me a msg that it can't open file because it does not recognize the file type. Does anyone know why this would be? I am using a Nikon D60. I haven't downloaded the Nikon software onto the computer (not sure if that has anything to do with it). Does photoshop elements need anything additional? Any help appreciated.
    Thx
    Richie

    Richie:
    As Terence mentioned we can help with using PSE within iPHoto but why PSE doesn't recognize the D60 files is an Adobe issue. I believe there are Adobe plugins available to handle RAW files. Check the Adobe site for those. For using PSE to edit jpgs within iPhoto this may be of some help:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Maybe you are looking for

  • Acknowledgement from receiver file Adapter with out BPM

    Hi Gurus, I am trying to get Acknowledgement from Receiver file Adapter with out Using BPM. Here is the scenario. I am sending files from different Sender Adapters. There is only one target that is File Adapter. After each successfull and failure tra

  • Monitor window problems in CS4?

    I just upgraded to CS4 from an older version.  I have Premiere Pro 4.2.1.  I'm using it on a Windows XP machine. The monitor window is not behaving at all as expected. I imported a Photoshop file to use as a still for a few seconds.  The thumbnail in

  • How to put some space b/w two components in panelGrid

    Hi, Can any one tell me how to put some space between two components in a panelgrid.I am trying to put   between the components in panelGrid,but it is not allowing me. I tried by putting <div> tags also...I am getting space on the top of the panelGri

  • IDCS2, WIN: How to export a document to SVG file?

    I did not find any code snippet, Do you know how to do it? Thanks.

  • IPhone File Transfer Speeds

    I have two MacBooks and two iPhones and I'm seeing very different file transfer speeds between the two. Both have the backup option manually disabled to improve sync times. Setup 1: iPhone 3GS with MacBook Pro (15-inch, Late 2008) model Setup 2: iPho