TableView change results to save in DB

Hi together,
i have a problem with my tableView. I show some results in a tableView with 10 editable columns. UNDER the tableView is ONE Button to save ALL changes inside the tableView, but i don't know, how can i get the new entries in ALL Columns and Rows from the tableView?
Yesterday i got an example(SBSPEXT_TABLE) in an another thread, but there was no file to show me that?
Can someone help me?
regards

Hi here is areply for u.
This is a example displaying Employee information .First see the Controller part and finally the view part
Let me explaiun a concept with MVC which clearly statisfies u.
Under Controller for  a table view
1.  First you have  to create an interface under interface tab namely if_htmlb_tableview_controller
2.This will automatically create three methods namely
Under the methods tab u will be getting the following
IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS
IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_ROW_START
IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
Under the first method describe
field-symbols: <def> like line of p_column_definitions.
append initial line to p_column_definitions assigning <def>.
<def>-columnname = 'EMPLOID'.
<def>-title = 'Employee ID'.
<def>-edit = 'X'.
<def>-horizontalalignment = 'left'.
<def>-width = '15'.
<def>-sort = 'X'.
Like this u can specify as much fields as u want.Every thing is user specified.
Under the second method describe as follows
m_row_ref ?= p_row_data_ref.
Under the third method leave a space and left it as it is.
Noneed to change anything.
3.Select the method "Do Request" and below that define the codings for that calling the view.
4.  Under the method *DoHandle Data * specify the following codings for getting input during Runtime such as gettin values from inputbox and so on.Below describes a sample coding
DATA: ls_form_field TYPE ihttpnvp.
  READ TABLE form_fields INTO ls_form_field
           WITH KEY name = 'eid'.
    if sy-subrc ne 4.
      current-emploid = ls_form_field-value.
    endif.
   READ TABLE form_fields INTO ls_form_field
           WITH KEY name = 'ename'.
    if sy-subrc ne 4.
      current-emploname = ls_form_field-value.
    endif.
Here eid,ename are the id of the input box designed in view part.
Current is a user definef name.
emploid and emploname are the fields of the table what i have created.
5. Now under the method "  Do Handle Event "  u can specify the codings for the action to be performed such as insert,delete,view and so on.Here is a sample coding for u.
case event.
    when 'view'.
     DATA:itab type zempdet_s,
             itab1 type TABLE OF zempdet_s.
        SELECT * FROM Zemployeetable INTO TABLE itab1.
        loop at itab1 into itab.
         append itab to emp_details.
      ENDLOOP.
      when 'insert'.
        insert into Zemployeetable values current.
        if sy-subrc = 0.
          msg = 'Succesfully Added'.
        else.
          emsg = 'Try Again' .
        ENDIF.
        when 'delete'.
          DELETE  from Zemployeetable where emploid = current-emploid.
          if sy-subrc = 0.
          msg = 'Succesfully Deleted'.
        else.
          emsg = 'Try Again' .
          ENDIF.
    ENDCASE.
By pressing the insert button u can add a new row to the existing table and then by pressing the view button u can view the information from it and according to my codings just by giving the id of an employee  u can delete the data from the database.
6.addition to that you have to create structure and table type for that table by moving to se11.
7. Under the ATTRIBUTES TAB u have to declare all the veriabes u are using such as id of the i/p box, ur fields of the table and so on
Next under the view part design ur gui and include the table view
<htmlb:tableView id         = "tab1"
            headerText            = "Employee Details"
            headerVisible         = "true"
            tableLayout            = "auto"
            columnHeaderVisible   = "true"
            table                 = "<%= controller->emp_details %>"
            design                = "alternating"
            footerVisible         = "true"
            width                 = "100%"
            visibleRowCount       = "5"
            iterator              = "<%= controller %>"
            keyColumn             = "emploid"
            sort                  = "SERVER"
            filter                = "SERVER"
            filterButtonTooltip   = "Filter" />
emp_details should be declared in attributes referring to the associated type ur table type name.
m_row_ref (type ref)used in render row start and current variable used in dohandle data have the associtedtype ur structure name
Hope this would help u a lot.
With Regards,
SHARMILA BRINDHA.M

Similar Messages

  • SBS 2011 GPO for changing the default save location for Word/Excel 2013 not working

    So this is a strange one. I've got an SBS 2011 server that's the only domain controller in the org. I've created a GPO to change the default save location for Excel 2013 and Word 2013 using the Office 2013 ADMX files which were installed to the PolicyDefinitions
    folder.
    The GPO (U-Office2013 Default Save Location) only contains:
    1. User Configuration - Microsoft Excel 2013/Excel Options/Save - Default file location - Enabled - Z:\
    2. User Configuration - Microsoft Word 2013/Word Options/Advanced/File Locations - Default file location - Enabled - Z:\
    The GPO is linked at the OU that contains my users for my SBS organization.
    When I do a gpupdate /force on a windows 7 system with office2013 installed, and then run a gpresult/rsop, the policy appears to be applied successfully as it lists my GPO under the Applied GPOs list on the workstation:
    Applied GPOs
    Default Domain Policy dyndns.local AD (24), Sysvol (24)
    U-Office2013 Default Save Location domain.local/SBSusers AD (6), Sysvol (6)
    In the gpresult report, the applied settings appear under:
    Administrative Templates
    Extra Registry Settings
    software\policies\microsoft\office\15.0\excel\options\defaultpath Z:\ U-Office2013 Default Save Location
    software\policies\microsoft\office\15.0\word\options\doc-path Z:\ U-Office2013 Default Save Location
    BUT, when I go to the workstation, and check office->options-Save-default file path, the path has not been changed to what the GPO is pushing.
    The strange thing is that in my test environment running 2008R2 server and Win7 with Office 2013 and identical settings the default save location is applied and works as expected.
    Any ideas?
    I've already tried re-installing the ADMX templates and re-created the GPO's several times.
    I should also note that other GPO's on the SBS2011 server such as the folder redirection GPO work as expected on the same windows 7 system. It just appears to be an issue with the default save location in office2013 and other Office 2013 related GPOs which
    utilize the recently added ADMX template that don't seem to be working for me.
    Thanks in advance.

    Hi Justin,
    Thanks for your reply. I have tried several different user accounts (all have local admin privileges to the workstation) with the same issue. The default save path does not get applied from the GPO to any of the users i've tried. Here's the steps I took
    per your suggestion:
    1. log on as a user who has never logged onto the workstation before.
    2. run gpupdate /force (entered y for yes when prompted to log off).
    3. Log back in as the user and open Office and check the default save path. It has not been changed to match the GPO setting.
    4. Check rsop to see if the policy was applied. Rsop states the gpo was applied successfully.
    I have attached the gpsvc.log file from a the session described above. The GPO Guid in question is: {DC3C93EC-7C28-48E9-BA38-FCA1E275A207}. Its common name is: U-Word 2013 Default Save Location. It's only setting is:
    Policies\Administrative Templates\Policy definitions(admx files retrieved from central store\Microsoft Word 2013\Word Options\Advanced\File Locations\Default File Location = Enabled\Documents = F:\
    -------gpsvc.log sections containing the aforementioned GUID start---------
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  ==============================
    GPSVC(410.df0) 09:10:51:186 GetGPOInfo:  ********************************
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Searching <cn={DC3C93EC-7C28-48E9-BA38-FCA1E275A207},cn=policies,cn=system,DC=gc,DC=local>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  User has access to this GPO.
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  GPO passes the filter check.
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found functionality version of:  2
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found file system path of:  <\\gc.local\SysVol\gc.local\Policies\{DC3C93EC-7C28-48E9-BA38-FCA1E275A207}>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found common name of:  <{DC3C93EC-7C28-48E9-BA38-FCA1E275A207}>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found display name of:  <U-Word 2013 Default Save Location>
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found user version of:  GPC is 3, GPT is 3
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found flags of:  0
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found extensions:  [{35378EAC-683F-11D2-A89A-00C04FBBCFA2}{D02B1F73-3407-48AE-BA88-E8213C6761F1}]
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  ==============================
    GPSVC(410.1730) 09:10:51:191 ProcessLocalGPO:  Local GPO's gpt.ini is not accessible, assuming default state.
    GPSVC(410.1730) 09:10:51:191 ProcessLocalGPO:  GPO Local Group Policy doesn't contain any data since the version number is 0.  It will be skipped.
    GPSVC(410.1730) 09:10:51:191 GetGPOInfo:  Leaving with 1
    GPSVC(410.1730) 09:10:51:191 GetGPOInfo:  ********************************
    -------gpsvc.log start---------
    -------output of gpresult /r-------
    Microsoft (R) Windows (R) Operating System Group Policy Result tool v2.0
    Copyright (C) Microsoft Corp. 1981-2001
    Created On 5/30/2014 at 9:24:08 AM
    RSOP data for GC\ssanders on OPTI9020-01 : Logging Mode
    OS Configuration:            Member Workstation
    OS Version:                  6.1.7601
    Site Name:                   Default-First-Site-Name
    Roaming Profile:             N/A
    Local Profile:               C:\Users\ssanders
    Connected over a slow link?: No
    COMPUTER SETTINGS
        CN=OPTI9020-01,OU=SBSComputers,OU=Computers,OU=MyBusiness,DC=gc,DC=local
        Last time Group Policy was applied: 5/30/2014 at 9:10:47 AM
        Group Policy was applied from:      GCSBS.gc.local
        Group Policy slow link threshold:   500 kbps
        Domain Name:                        GC
        Domain Type:                        Windows 2000
        Applied Group Policy Objects
            Windows SBS CSE Policy
            Windows SBS Client - Windows Vista Policy
            Windows SBS Client Policy
            Update Services Client Computers Policy
            C-Create Syntiro Root Folders
            Default Domain Policy
        The following GPOs were not applied because they were filtered out
            Local Group Policy
                Filtering:  Not Applied (Empty)
            Windows SBS Client - Windows XP Policy
                Filtering:  Denied (WMI Filter)
                WMI Filter: Windows SBS Client - Windows XP
        The computer is a part of the following security groups
            BUILTIN\Administrators
            Everyone
            BUILTIN\Users
            NT AUTHORITY\NETWORK
            NT AUTHORITY\Authenticated Users
            This Organization
            OPTI9020-01$
            Domain Computers
            System Mandatory Level
    USER SETTINGS
        CN=Stephen Sanders,OU=SBSUsers,OU=Users,OU=MyBusiness,DC=gc,DC=local
        Last time Group Policy was applied: 5/30/2014 at 9:13:17 AM
        Group Policy was applied from:      GCSBS.gc.local
        Group Policy slow link threshold:   500 kbps
        Domain Name:                        GC
        Domain Type:                        Windows 2000
        Applied Group Policy Objects
            Windows SBS User Policy
            Windows SBS CSE Policy
            Small Business Server Folder Redirection Policy
            U-Word 2013 Default Save Location
            U-Office 2013 Disable Backstage
            U-Office Disable Start Screen
            U-Office Trust Center Settings
            U-Word Autorecover Location
            U-Word Autosave Interval
            U-Word Disable Capitalization First Word
            U-Word Set Arial Default Font
            U-Word UI Customizations
            U-Power Plan Settings
            Default Domain Policy
        The following GPOs were not applied because they were filtered out
            Local Group Policy
                Filtering:  Not Applied (Empty)
        The user is a part of the following security groups
            Domain Users
            Everyone
            BUILTIN\Administrators
            BUILTIN\Users
            NT AUTHORITY\INTERACTIVE
            CONSOLE LOGON
            NT AUTHORITY\Authenticated Users
            This Organization
            LOCAL
            Windows SBS Link Users
            Windows SBS Fax Users
            Windows SBS SharePoint_MembersGroup
            Windows SBS Folder Redirection Accounts
            Windows SBS Remote Web Workplace Users
            High Mandatory Level
    -------end gpresult output-------       
    Thanks in advance for any help. I also have a pps ticket open with Microsoft, but they're dragging their feet.

  • How to change the default save encoding of the dvm files when create dvm???

    When I creating a DVM(domain-value mapping) in Chinese on the ESB control and confirm it, then restarted the SOA service, the DVM that I created in Chinese disappeared from ESB control. All the maps(both English and Chinese ) are in DVM Repository.
    After I updated the encoding from ‘UTF-8’ to ‘GB2312’ in the three files below, and restarted the SOA service, the DVM in Chinese appeared on ESB control.
    But when I adding the second row in Chinese and save it, then restart the SOA service, the DVM in Chinese disappeared from ESB Control once again. Because the encoding in the three files below is updated from ‘GB2312’ to ‘UTF-8’ .
    Files:
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\metadata\files\dvm.def.xml
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\metadata\files\dvm\Chinese.xml.def.xml
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\content\files\dvm\Chinese.xml_1.0
    How to change the default save encoding of the dvm files when create dvm in ESB control ???

    I have the same problem.  When I updated to Mavericks now the bookmarks bar font is huge.  I liked it the way it was before.  I liked the smaller font.  Also wish I could change the color of the sidebar and font/folders too.
    I tried to see in preferences if there was anyway to change it, but I don't see anything there.

  • SBS 2011 GPO for changing the default save path applying to Win7 but not working

    So this is a strange one. I've got an SBS 2011 server that's the only domain controller in the org. I've created a GPO to change the default save location for Excel 2013 and Word 2013 using the Office 2013 ADMX files which were installed to the PolicyDefinitions
    folder.
    The GPO (U-Office2013 Default Save Location) only contains:
    1. User Configuration - Microsoft Excel 2013/Excel Options/Save - Default file location - Enabled - Z:\
    2. User Configuration - Microsoft Word 2013/Word Options/Advanced/File Locations - Default file location - Enabled - Z:\
    The GPO is linked at the OU that contains my users for my SBS organization.
    When I do a gpupdate /force on a windows 7 system with office2013 installed, and then run a gpresult/rsop, the policy appears to be applied successfully as it lists my GPO under the Applied GPOs list on the workstation:
    Applied GPOs
    Default Domain Policy dyndns.local AD (24), Sysvol (24)
    U-Office2013 Default Save Location domain.local/SBSusers AD (6), Sysvol (6)
    In the gpresult report, the applied settings appear under:
    Administrative Templates
    Extra Registry Settings
    software\policies\microsoft\office\15.0\excel\options\defaultpath Z:\ U-Office2013 Default Save Location
    software\policies\microsoft\office\15.0\word\options\doc-path Z:\ U-Office2013 Default Save Location
    BUT, when I go to the workstation, and check office->options-Save-default file path, the path has not been changed to what the GPO is pushing.
    The strange thing is that in my test environment running 2008R2 server and Win7 with Office 2013 and identical settings the default save location is applied and works as expected.
    Any ideas?
    I've already tried re-installing the ADMX templates and re-created the GPO's several times.
    Thanks in advance.

    When a group policy is not applying, it is often that it has been linked to the wrong OU. Please first check this.
    You might also check the apply status on the client site based on the GPSVC.log.
    How to enable GPO logging:
    http://blogs.technet.com/b/csstwplatform/archive/2010/11/09/how-to-enable-gpo-logging-on-windows-7-2008-r2.aspx
    It looks more like an issue on server side than an issue of Office Group Policy settings. Try to post in Server forum and see if there is any luck:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=windowsserver

  • Want to change the default save location- users have networked home dirs

    I am doing some work for a school which is still using iMovie HD because it allows them to save their movie projects wherever they want. The issue is that iMovie 08 and 09 do not allow you to change the location in which they save their movies. Currently all users/students have network home folders, so their home directory, documents, etc all pull across the network. All students are limited to 1GB of space, and the system is an older G4 Server- 2GHz with 1GB of RAM and 2x 500GB hard drives. Since the students can make some large projects transferring that data back and forth can kill the server. Currently they are staying with iMovie HD so they can save it to the local hard drive, and when the student comes back in for class they sit at the same machine- thus giving them access to their stored movie files.
    This summer they plan to upgrade both Xserves, but again internal storage in the Xserve is a joke and in my opinion not planned out properly. Which might require them to use one of the Apple Promise RAID units- major financial burden on a school.
    I wanted to see if there was a way to change the default save location for iMovie 08 or 09 to the local storage rather then the "Home" folder for each user.
    Thanks so much!

    hackths wrote:
    .. The issue is that iMovie 08 and 09 do not allow you to change the location in which they save their movies. ..
    wrong info.
    iM08/09 has a different file concept than iMHD6.
    Both versions allow to store Events (=huge files) 'anywhere' to usb or firewire connected, hfs(+) formatted harddrives. the Project files (=small files) can be de-located from 'internal' drive with vers09, for 08 you have to use a socalled symLink to de-locate Project files.

  • Need help changing the default Save Path

    Hello,
    We are implementing SAP, and will be using Citrix as the source for the GUI.  One of our requirnments are, that we need to change the default "Save Path" that users save documents too.   By default, this is to the C drive, but, we need it set to a different drive (i.e. V: on the citrix server).
    We found this note on SDN (see below) - however, it does not explain how to change or add this registry value?  Is this done in the GUI options, or in regedit?  If in reg-edit, where abouts in the tree does it go?
    Thanks guys, and any help would be greatly appriciated.
    Richard
    (As of SAP GUI 7.20, patch level 4) the REG_EXPAND_SZ registry value InitSaveDir can be used to configure the default path and folder for users to save the reported information in case of an access denial due to security rules. If users change the default path and save the information to an individual location, this new path will be kept as long as the user does not terminate the program. When starting SAP GUI again, users will get the configured default path again to store the reported information, the individual path changes will be lost. If the registry value does not exist, the default directory is the document directory of the SAP GUI.
    By default none of the above registry values exists. In order to change the behavior of the security module, the registry values need to be created and set to the desired value. A not existing registry value means use the default.
    In this doc:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/002444be-7018-2d10-e18e-a8c537198ef6?quicklink=index&overridelayout=true

    Hi,
    "Security rules that are created for a large number of users can be centrally stored on a server by an administrator. The administrator can use the registry values below under the registry key
    [HKEY_LOCAL_MACHINE\Software\SAP\SAPGUI Front\SAP Frontend Server\Security]
    to configure the behavior of the security module.
    Note: For 64 bit operating systems please use the following registry key
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP\SAPGUI Front\SAP Frontend Server\Security]
    to configure the behavior of the security module."
    You can use regedit for installing this values.
    Best Regards,
    Aleh

  • Changing Airdrop Default Save Location

    Hello All,
    Thanks in advance for any help you can provide. Simple question...
    There has to be a way to change the default save location of AirDrop. Has anyone stumbled across this?
    ~ lbcSSA

    Hi Jeffrey,
    your solution is nice for people who don't care about spoiling their system disk, which I agree must be numerous today.
    But would you possibly have another suggestion to avoid documents sent via Airdrop to end up at all on the System disk ? I mean, just as one can do it for the Safari or Mail downloads, where you can define a default folder located on a different hard disk ? I'm with a MacPro, and System disk is intended only for... system, not files, so to avoid fragmentations issues from multiple erase actions of unnecessary files.
    Is it possible that Apple writes "default folder" and forgot that "default" means one can opt for an alternative solution ??? Has Apple gone that un-professional ? Please tell me I've just missed a line somewhere... and that I don't have to rely once more on a third party app...
    Cheers !
    Config
    Yosemite OSX 10.10.1
    Mac Pro (Late 2013)

  • Changing the Default Save Directory in Acrobat

    I am currently working with multiple systems, some using Acrobat 7.0 and some using 6.0.
    Basically, I am wondering if in either of these versions of Acrobat it is possible to change the default save directory to something other than 'My Documents.' Acrobat will remember the last directory I saved to if I have already saved to that location once in a given session, but if I exit the program and then enter it again, it defaults back to 'My Documents' instead of the last place I saved.
    Is there a way to set the default directory in 6.0 and/or 7.0?

    No. Put a short cut to where you want to go in the My Documents folder and you are only 1 step away.

  • Not letting me change my screen saver

    Every time I open up system preferences and click on "Desktop & Screen Saver" and then click on the "Screen Saver" tab... the system pref. freezes and closes unexpectedly
    It lets me change my background but whenever i try to change my screen saver it keeps "Quitting unexpectedly"
    then it gives me the option to reopen system pref., report the message to apple (which i have done) or close it... then when I click reopen, i click again on desktop and screen saver and it freezes again and another error message opens up and says
    the application system preferences quit unexpectedly after it was reopened... and i have a new set of options
    Close, Try Again, or Report
    So i click try again and it does actually let me access the screen saver tab... and i change it from what it is now which is the iTunes artwork
    and when i click close or quit system pref. another window pops up that says...
    New settings have been created for this application.. do you wish to use these settings from now on? and so i click "Use New Settings" rather than "Use original settings"
    but then when i start my screensaver... it STILL is my original screen saver that i had before...
    so WHY won't it let me change it
    I have a MacBook Pro 15" glossy, 160 GB 2.4GHZ
    i bought it in July so its still brand new so what is the problem?
    Help would be MUCH appreciated

    Hi and welcome to the Skype Community,
    Please change your password to ensure that no other location is preventing/reverting the name change: https://support.skype.com/en/faq/FA95/how-do-i-change-my-password
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • How do you change the Default 'Save As' location in Adobe Acrobat 9

    How do you change the Default 'Save As' location in Adobe Acrobat 9?

    You put a shortcut to the desired location in that location. You are then only 1 click away.

  • Change Result analysis key in WBS element

    Hi Friends,
    Is it possible to change result analysis key in WBS element?
    Any thoughts/suggestions would be welcome.
    Regards,
    Soumya

    Hi Soumya ,
    Changing an RA Key in a WBS Element is easy and it just any normal activity which one can do. But the important thing is that you will have to look at the potential repurcussions which will arise because of changing the RA Key. As long as both the RA keys have the same valuation method and other relevant settings , changing would be OK. If the Valuation methods are different then there would be inconsistencies in Financial Accounting as the computation of revenues / cost of sales would be differing.
    Excercise due caution .
    Regards,
    Venkat.

  • How to Change the Screen Saver Settings to Mystify in Windows 7 using vbscript?

    HI All,
    How to Change the  Screen Saver Settings to Mystify in Windows 7 using vbscript?
    Thanks
    Divakar

    First: What is a GPO?
    Second: jrv, that was not too helpful in general. someone should do some actual code.
    Bob Blork - Mark as answer if it helped!
    This is a forum for technicians and not for home users.  GPO is what technical people use to manage Windows. THe script to do this is in the link I posted - how is that not helpful?
    I know this is all over your head.  I am curious as to why you would respond in a technical forum to a question you do not understand.
    We do not provide free scripts.  We also will point users at correct answers.
    This is not a forum for homw users or for simple support questions.  It is also a thread that has been  answered for a long time.  Perhaps you should start a new thread if you have an actual question about scripting.
    ¯\_(ツ)_/¯

  • Photoshop cs6 changes don't save

    Hi guys. New to the community. Had a strange issue with photoshop - when I use the "save as" option to replace an old pdf version of some work it won't keep the changes, but it saves fine as PSD or JPG. What could be the issue?

    We can't know. You have not provided any system info or details like where those MP4 fiels actually come from or what warnings you get.
    Mylenium

  • How do i change the font, save in messages i'm reading in ipad 3?

    how do i change the font, save in messages i'm reading in ipad 3?

    I have an custom app that I want to change the size of the fonts cause the app font size is too long so i cannot see the whole sentence. thanks.

  • Is there a way to change the default Save As location for Adobe Reader XI?

    Is there a way to change the default Save As location for Adobe Reader XI?

    kel-drago wrote:
    Can't be that difficult to arrange.
    No, it's not.  But someone has to request it: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Maybe you are looking for

  • Parent - Child mapping - ODI

    Hi experts, I have source as a below format, in .xls, this is parent- child relationship.. Gen1     Gen2     Gen3     Gen4 9000000009 blank     blank     blank blank     910000000 blank     blank blank     blank     9110000000     blank blank     bla

  • Upgraded to 7.6 iTunes, no longer opens.

    Upgraded to 7.6 itunes. It no longer opens, although iTunes.exe is in the Task Manager. It also made me upgrade my iPod software so now it will no longer let me use any old/previous versions of iTunes. I've tried formatting my computer (emptying it c

  • SSL Error when connecting to the mail server

    Hi,      i started having a wiered SSL error for some of my users on the mail servers when they connect using their mac machines to the mail server telling its the wrong username and password, but the same username and password works from the hand he

  • Why can't I seem to subscribe to Export PDF from outside N America? I'm using the Uk site...

    Why can't I seem to subscribe to Export PDF from outside N America? I'm using the Uk site...

  • Drag/Drop Proxy Image

    I would like to be able to access the Proxy Image during a drag/drop operation inside the DragOver event. Is it possible to get refernce to that object to be able to change the image, get it's current location, etc?