Hi deleting left most character

my itab-f1 = 9uiytyrea .
while looping at itab i need delete leftmost character i.e 9 or any other integer and than need to display

If it's only for display, wherever you say
itab-f1
, instead just say
itab-f1+1
For more complexities, use the suggestions above...
Regards,
Dushyant Shetty

Similar Messages

  • HT201210 Contact List Problem.   I have duplicates on my iPhone.  I turned off my Contact and selected "Delete Contacts"  Most of the contacts were deleted but about 120 were left on my phone.   I've tried selecting individual contacts and deleting them,

    Contact List Problem.   I have duplicates on my iPhone.  I turned off my Contact and selected "Delete Contacts"  Most of the contacts were deleted but about 120 were left on my phone.   I've tried selecting individual contacts and deleting them, No Go. 
    Can anyone help?   How do I get rid of these contacts so I can re-synch my iPhone. 

    I have exactly the same problem on my ipad. It is happening on only some contacts but, as with you, when I delete one of the contacts on the ipad, the second ipad contact and the contact on the imac are also deleted. This is even the case when I have differentiated the two contacts on the ipad and can see the one I have deleted on the ipad is not the same one as is then deleted on the imac.

  • How to create a title over the top of the left-most column in a cross-tab.

    This is one of those things that seems simple until you try it.
    I'm almost there.  I moved the cross-tab from the report header to the report footer so I can have a page title.  I tried using an overlay but it didn't work for any page past the first.
    I can't seem to figure out how to put a title over the left-most column though.
    Thanks in advance,
    J

    I have used a text box, after you type in the text, select the box, and move it to the front.
    then select the crosstab and move it to the back.

  • I need to know how to delete the most recent version of Firefox. I JUST downloaded it tonight and my computer doesn't have that little edit bar to work with so I can download the proper Adobe player and my internet has been screwed up ever since I downlo

    I need to know how to delete the most recent version of Firefox. I JUST downloaded it tonight and my computer doesn't have that little edit bar to work with so I can download the proper Adobe player and my internet has been screwed up ever since I downloaded the new version of Firefox. I just want the old version of it back since I apparently can't download the Adobe stuff that is necessary to keep my computer safe from Hackers. It sure would have been nice to know there was an issue with the new Firefox Update BEFORE I uploaded it. I have Vista which is usually an issue with both Adobe and Firefox. I don't seem to be able to run much of Adobe at all on my computer because of the Vista.
    == This happened ==
    Every time Firefox opened

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • Why can't I see the left most tab in a window with FF6?

    My problem is that when I upgraded to FF6 and started firefox in some windows the left most tab is hidden, what do I need to do to be able to see all of my tabs? I did not have this problem with FF4 only the last version of FF5 and FF6. I reverted back to FF4 and was reluctant to upgrade because of this issue. I can get to the tab by going to tab group but I see this as an unnecessary step. perhaps you should stop having lunch with your microsoft neighbors.

    I think you would have had the same problem in 3.6. Anyway the tabs do not narrow down instead they scroll off the left side or off of the right side and you can only show 5 or 6 tabs depending on how wide you have your window.
    The following three styles will help you to work with tabs, the first one will help with your specific problem. Be sure tho read the write-up because you will need some configuration changes as well. The one with the tab borders will need an extension from the MozillaZine site.
    * Tabs Bar Minimal Size - Themes and Skins for Browser<br>http://userstyles.org/styles/9043
    * Tab Color Underscoring active/read/unread (Fx3.6 ) - Themes and Skins for Browser<br>http://userstyles.org/styles/24728/tab-color-underscoring-active-read-unread-fx3-6
    * Tabs, Enlarge list-all-tabs button (DM*) - Themes and Skins for Browser <br>http://userstyles.org/styles/18553

  • Nokia 6060...How do i delete a single character ?

    When composing a text message, if i make a mistake i can't seem to delete a single character. The only option i have is to return to the main menu and start again. How do i delete a single character ?
    TIA for any replies.

    Hi You just press the c button on the right hand side of the phone each time you want to delete a caracter

  • ALV Grid left Most Button

    Hi All,
    I had created a ALV grid control. I want to handle the left most button of the alv grid, which when clicked , entire row gets selected.
    I have to do some functionality when this button is clicked. So, can anybody help me in handling this button event.

    How about just making the row a hotspot.  When user double clicks the row, trigger some functionality.
    Here is a sample program
    report zrich_0001.
    data: begin of i_alv occurs 0,
          matnr type mara-matnr,
          maktx type makt-maktx,
          end of i_alv.
    *       CLASS lcl_event_receiver DEFINITION      Handles Double Click
    class lcl_event_receiver definition.
      public section.
        methods handle_double_click
          for event double_click of cl_gui_alv_grid
          importing e_row e_column.
      private section.
    endclass.
    *       CLASS lCL_EVENT_RECEIVER IMPLEMENTATION    Handles Double Click
    class lcl_event_receiver implementation.
      method handle_double_click.
        perform drill_down using e_row-index.
      endmethod.
    endclass.
    data: alv_container  type ref to cl_gui_custom_container.
    data: event_receiver type ref to lcl_event_receiver.
    data: alv_grid       type ref to cl_gui_alv_grid.
    data: layout    type lvc_s_layo.
    data: fieldcat  type lvc_t_fcat.
    selection-screen begin of block b1 with frame title text-001 .
    select-options: s_matnr for i_alv-matnr.
    selection-screen end of block b1.
    start-of-selection.
      select * into corresponding fields of table i_alv
            from mara
              inner join makt
                on mara~matnr = makt~matnr
                   where mara~matnr in s_matnr
                     and makt~spras = sy-langu.
      sort i_alv ascending by matnr.
      call screen 100.
    *      Module  status_0100  OUTPUT
    module status_0100 output.
      set pf-status '0100'.
      set titlebar '0100'.
      data: variant type  disvariant.
      variant-report = sy-repid.
      variant-username = sy-uname.
    * Create Controls
      create object alv_container
             exporting
                   container_name    = 'ALV_CONTAINER'.
      create object alv_grid
             exporting
                   i_parent          =  alv_container.
    *  Create Event Receiver
      create object event_receiver.
    *  ALV Specific. Data selection.
    *  Populate Field Catalog
      data: ls_fcat type lvc_s_fcat.
      refresh: fieldcat.
      clear: ls_fcat.
      ls_fcat-reptext    = 'Material Number'.
      ls_fcat-coltext    = 'Material Number'.
      ls_fcat-fieldname  = 'MATNR'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '18'.
      ls_fcat-col_pos    = 1.
      append ls_fcat to fieldcat.
      clear: ls_fcat.
      ls_fcat-reptext    = 'Material Description'.
      ls_fcat-coltext    = 'Material Description'.
      ls_fcat-fieldname  = 'MAKTX'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '40'.
      ls_fcat-col_pos    = 2.
      append ls_fcat to fieldcat.
    * Set table for display
      call method alv_grid->set_table_for_first_display
          exporting
               is_layout              = layout
               is_variant             = variant
               i_save                 = 'U'
               i_structure_name       = 'I_ALV'
          changing
               it_outtab       = i_alv[]
               it_fieldcatalog = fieldcat[].
    *   handler for ALV grid
      set handler event_receiver->handle_double_click for alv_grid.
    endmodule.
    *      Module  USER_COMMAND_0100  INPUT
    module user_command_0100 input.
      case sy-ucomm.
        when 'BACK' or 'CANC'.
          if not alv_container is initial.
            call method alv_container->free.
            clear: alv_container.
            free : alv_container.
          endif.
          if sy-subrc = 0.
            set screen 0.
            leave screen.
          else.
            leave program.
          endif.
        when 'EXIT'.
          if not alv_container is initial.
            call method alv_container->free.
            clear: alv_container.
            free : alv_container.
          endif.
          leave program.
      endcase.
    endmodule.
    * DRILL_DOWN
    form drill_down using index.
      read table i_alv index index.
      if sy-subrc = 0.
        set parameter id 'MAT' field i_alv-matnr.
        call transaction 'MM03' and skip first screen.
        if not alv_container is initial.
          call method alv_container->free.
          clear: alv_container.
          free : alv_container.
        endif.
      endif.
    endform.
    Regards,
    Rich Heilman

  • IMovie crops-truncates-cuts-deletes left and right area of ".mov" movie!!!

    iMovie crops-truncates-cuts-deletes left and right area of mov movie!!!
    I am using iMovie 8.05 on Mac OS X 10.5.8 on Mactel. Is that iMovie '09. The dual-naming is utterly confusing.
    OK, here is my problem:
    When I import a ".mov" file (generated by screen movie capture via Internet using Snapz Pro X) into iMovie, it shows complete on the lower pane (event timeline). Yet, when I drag from the event timeline pane it to the top left pane (project), the movie shows truncated-cropped (the left and right parts of the screen are not shown). That is, such left and right areas are deleted!
    Is this a bug? How to fix it?
    Thanks.

    Update:
    I have seen that I can use the "Window - Cropping..." menu to fit, crop and ken burns, yet if I choose to fit, then all the movie is included which is what I want, but also black areas are shown on top and bottom of the movie which I do not want. Is there a way to delete such black areas?
    If instead I try to use crop or ken burns, I cannot include all the movie area, because the real area of the movie is much wider than the area that the iMovie frame allows. Is there a way to select beyond the default area on the left and right, to really include all the movie?
    Thanks.

  • HT5848 Any way to move the Radio tab (Itunes Radio) right? Because it's the left-most tab, it loads first..forcing me to click on songs every time itunes loads. I'll never use ITunes Radio. The screen will  forever be trying to sell me on using it. Its fr

    Any way to move the Radio tab (Itunes Radio) right? Because it's the left-most tab, it loads first..forcing me to click on songs every time itunes loads. I'll never use ITunes Radio. The screen will  forever be trying to sell me on using it. Its free, I know.    Still not using it.

    Margthecar wrote:
      Apple has to stop pretending that their technology is not complicated.  It is.  Apple has to stop pretending users won’t have problems.  They will.  Apple needs to train their employees in their own technology.
    Awesome post.  This is the best description I've seen of what continually makes me angry about Apple.  I guess their attitude is, "Whoa, look at all this money!  If it ain't broke, why fix it?"  And Margthecar the I keep shoveling money into their coffers ....

  • I cannot close the left most tab

    When I try to close the left most tab or the default tab at start-up, it won't close, even when I have other tabs opened.

    Other things that need attention.<br>
    See http://www.mozilla.com/plugincheck/
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r32
    # Next Generation Java Plug-in 1.6.0_21 for Mozilla browsers
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • I deleted the 'most visited' bookmarks tab without intention. Can you let me know how I can reinstate this please? Thanks.

    I unintentionally deleted the 'most visited' or 'recently visited' tab from the Bookmarks Library menu and from the Bookmarks toolbar. I'd like to reinstate this can you advise how this is done please.
    Thanks,
    Lisel

    see https://support.mozilla.com/en-US/questions/871296

  • In Final Cut Pro X 10.1.1 I'm trying to separate left and right stereo tracks to delete left and pan right to centre. I cannot find a way to do this.

    I record in stereo with a 10KHz tone down the left channel to defeat AGC on my camera and mic feed into the right channel. When I edit, I want to mute/delete the left channel and pan the right into the centre, to leave me with mono audio across both left and right. I could do this easily in FCP 6 but can find no way to do it in FCP X. I'm using the same source files. When I choose Dual Mono mode in the Audio Inspector, it mixes left and right and pushes the combined signal into both channels, giving me a mix of 10KHZ tone and audio in both left and right. Stereo mode shows me the two channels correctly with one driven hard (the tone) and the other at good voice levels. I just want to kill the left channel and pan the right to centre.
    I'm converting original TOD files using MPEG Streamclip before import and definitely keeping audio as stereo.
    This is driving me nuts! It should be simple and is in FCP 6. Any help greatly appreciated.
    Stereo Setting
    Mono Setting

    Mb - If you're using FCPX 10.1.1 and Mavericks, make certain you've downloaded the most current Sony XDCAM FCPX plugin from sonycreativesortware.com unless you're using an older version of FCPX and then you'd need the previous XDCAM plugin.
    You shouldn't see 8 mono tracks.  There are import settings in /fCPX that you can check and I don't ask FCPX to analyze my media or seperate mono or combine stereo, etc.  I like to have everything come in as it is, especially because I know what I've done with every channel, etc.
    What I wrote to Ian is what I'd tell you - so please take a look at how you can make a "stereo" track that is actually two mono tracks, mono.  Once you do that you can address each mono channel by itself since it needs different volume, compression, and EQ than other channels.
    There are ethernet, USB, and firewire controllers that work in FCPX, but that's not the typical workflow because generally if you're getting into any amount of post audio sweetening beyond basic "staples" audio treatment, you would instead use "Roles" to export your audio to Logic or Pro Tools and do you work in those applications and then cut the final product back into your FCPX project.  In Logic or Pro Tools is where you might use a controller.
    In terms of automating levels, I'm not positive I know what you mean.  Compressor is a nice internal Logic plugin that kind of automates levels in a way but its about compressing peaks at a threshold that you set and at a ratio of compression.  So I may not understand what other automation is available unless you've exported you tracks to Logic or Pro Tools.

  • Ocassionally, when running Firefox 7.0.1 on Mac OS X 10.6.8, I am unable to click the items of the left-most side of the Menu Bar (everything between and including the Apple symbol and "Help").

    The keyboard shortcuts for all of the options still work, but will not let me select anything with the mouse. The Apple key seems also not to allow selection of anything on the Menu Bar.
    I can browse normally when this happens; it's not freezing or crashing. And I am able to click everything on the right side of the Menu Bar; the clock, wireless icon, battery, etc. Also, other programs running at the same time don't have this problem. A restart of Firefox seems to temporarily fix the problem, but it's happened a few times, with no clear pattern as to what is causing it.
    Anyone else having this problem? Solutions?

    I fixed this, in a fairly brutal way. Here is the solution.
    Save your bookmarks, like on the desktop. Or you could launch Safari and import your Firefox bookmarks into Safari, then later pull them back into Firefox.
    COMPLETELY delete everything that has to do with Firefox. That includes not only the application, any dmg file hanging around and most importantly the ENTIRE contents of User/Library/ApplicationSupport/Firefox. Indeed just throw the whole Firefox folder in the Trash. Empty the Trash just in case. Now use Safari to download a new Firefox.dmg file and start from scratch. You will have to re-establish your Preferences. But Firefox will not hang, and most importantly, it will not hang your OS. --Gene

  • Delete the specified character in a text file using RandomAccessFile

    Hi All,
    I have an invalid XML file which contains Return characters at the end of each line. I need to delete these return characters so the file becomes valid.
    Does anybody have any idea how this could be done using RandomAccessFile?
    I found joop_eggen's posting in this forum, modified it just a little and wanted to use it, but since the replacement character is "" (blank) it does not do what I need to.
    The XML file looks like this:
    <?xml version="1.0"?>
    <EPMSObject>
    <EPMSRecord><facilityname>KT0</facilityname><date_time>2007-06-01T00:00:00</date_time><devicetype>RPP</devicetype><devicename>RPP1A1_001.BCMF</devicename><meter>BCMF</meter><ckt_01_current>4.136000000000000e+000</ckt_01_current><ckt_02_current>0.000000000000000e+000</ckt_02_current><ckt_03_current>5.521000000000000e+000</ckt_03_current><ckt_04_current>0.000000000000000e+000</ckt_04_current><ckt_05_current>5.880000000000000e+000</ckt_05_current><ckt_06_current>0.000000000000000e+000</ckt_06_current><ckt_07_current>4.086000000000000e+000</ckt_07_current><ckt_08_current>0.000000000000000e+000</ckt_08_current><ckt_09_current>4.994000000000000e+000</ckt_09_current><ckt_10_current>0.000000000000000e+000</ckt_10_current><ckt_11_current>4.374000000000000e+000</ckt_11_current><ckt_12_current>0.000000000000000e+000</ckt_12_current><ckt_13_current>4.314000000000000e+000</ckt_13_current><ckt_14_current>0.000000000000000e+000</ckt_14_current><ckt_15_current>4.112000000000000e+000</ckt_15_current><ckt_16_current>0.000000000000000e+000</ckt_16_current><ckt_17_current>4.287000000000000e+000</ckt_17_current><ckt_18_current>0.000000000000000e+000</ckt_18_current><ckt_19_current>4.254000000000000e+000</ckt_19_current><ckt_20_current>0.000000000000000e+000</ckt_20_current><ckt_21_current>3.970000000000000e+000</ckt_21_current><ckt_22_current>0.000000000000000e+000</ckt_22_current><ckt_23_current>5.640000000000000e+000</ckt_23_current><ckt_24_current>0.000000000000000e+000</ckt_24_current><ckt_25_current>7.123000000000000e+000</ckt_25_current><ckt_26_current>0.000000000000000e+000</ckt_26_current><ckt_27_current>5.118000000000000e+000</ckt_27_current><ckt_28_current>0.000000000000000e+000</ckt_28_current><ckt_29_current>6.094000000000000e+000</ckt_29_current><ckt_30_current>0.000000000000000e+000</ckt_30_current><ckt_31_current>0.000000000000000e+000</ckt_31_current><ckt_32_current>0.000000000000000e+000</ckt_32_current><ckt_33_current>0.000000000000000e+000</ckt_33_current><ckt_34_current>0.000000000000000e+000</ckt_
    34_current><ckt_35_current>0.000000000000000e+000</ckt_35_current><ckt_36_current>0.000000000000000e+000</ckt_36_current><ckt_37_current>0.000000000000000e+000</ckt_37_current><ckt_38_current>0.000000000000000e+000</ckt_38_current><ckt_39_current>0.000000000000000e+000</ckt_39_current><ckt_40_current>0.000000000000000e+000</ckt_40_current><ckt_41_current>0.000000000000000e+000</ckt_41_current><ckt_42_current>0.000000000000000e+000</ckt_42_current></EPMSRecord>
    </EPMSObject>
    Here is joop_eggen's code:
    import java.io.*;
    import java.nio.*;
    import java.nio.channels.*;
    public class Patch {
      private static byte[] sought;
      private static byte[] replacement;
      private static boolean matches(MappedByteBuffer bb, int pos) {
        for (int j = 0; j < sought.length; ++j)
          if (sought[j] != bb.get(pos + j))
            return false;
        return true;
      private static void replace(MappedByteBuffer bb, int pos) {
        for (int j = 0; j < sought.length; ++j)
          byte b = (j < replacement.length)? replacement[j] : (byte)' ';
          bb.put(pos + j, b);
      private static void searchAndReplace(MappedByteBuffer bb, int sz) {
        int replacementsCount = 0;
        for (int pos = 0; pos <= sz - sought.length; ++pos)
          if (matches(bb, pos)) {
            replace(bb, pos);
            pos += sought.length - 1;
            ++replacementsCount;
        System.out.println("" + replacementsCount + " replacements done.");
        // Search for occurrences of the input pattern in the given file
        private static void patch(File f) throws IOException {
        // Open the file and then get a channel from the stream
        RandomAccessFile raf = new RandomAccessFile(f, "rw"); // "rws", "rwd"
        FileChannel fc = raf.getChannel();
        // Get the file's size and then map it into memory
        int sz = (int)fc.size();
        MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_WRITE, 0, sz);
        searchAndReplace(bb, sz);
        bb.force(); // Write back to file, like "flush()"
        // Close the channel and the stream
        raf.close();
        public static void main(String[] args) {
        String E_O_L;
        E_O_L = System.getProperty( "line.separator" );
        if (args.length == 0)
          args = new String[] { E_O_L, "", "C:\\GTI\\EPMSRecords.xml" };
        if (args.length < 3) {
          System.err.println("Usage: java Patch sought replacement file...");
          return;
        sought = args[0].getBytes();
        replacement = args[1].getBytes();
        //if (sought.length != replacement.length) {
          // Better build-in some support for padding with blanks.
          //System.err.println("Usage: sought (" + args[0] + ") and replacement (" + args[1] + ") must have same length");
          //return;
        for (int i = 2; i < args.length; i++) {
          File f = new File(args);
    try {
    patch(f);
    } catch (IOException x) {
    System.err.println(f + ": " + x);
    Thank you,
    Sinan Topuz

    Thank you all.
    Here is what I have right now and it works very well. It takes a couple of seconds to generate the second file and that satisfies me. I took the code sabre150 posted in this forum and changed it just a little bit, so thanks to him.
    I hope this helps someone.
    Sinan
    import java.io.*;
    public class SearchReplace{
        public static void main(String[] args){
            if(null == args || args.length < 2) {
               System.err.println("\nUsage: java <inputFileFullPath> <OutputFileFullPath> \nExample: java C:\\GTI\\Epmsrecord.xml C:\\GTI\\EpmsrecordNEW.xml");
               System.exit(1);
            Reader reader = null;
            Writer writer = null;
            try{
                char cr;
                char lf;
                char sp;
                int  indx;
                cr = '\r';
                lf = '\n';
                sp = ' ';
                indx = 0;
                reader = new FileReader(args[0]);
                writer = new FileWriter(args[1]);
                for (int ch = ' '; (ch = reader.read()) != -1;){
                    indx++;
                    if ( indx > 15 ) {      // Skip the first space character in <?xml version="1.0"?> otherwise the file becomes invaild!
                        if (ch != cr && ch != lf ) {
                            writer.write(ch);
                    }else{
                        writer.write(ch);
                System.out.println("\nFile " + args[1] + " has been successfully created.");
            }catch(FileNotFoundException fnfe){
                System.out.println("\nError : File " + args[0] + " not found. Please make sure it exists and you have rights to access to it.");
            }catch (IOException e) {
                System.err.println("Caught IOException: " +  e.getMessage());
            }finally {
                try {
                    if ( reader!=null ) {
                        reader.close();
                    if ( writer!=null ) {
                        writer.close();
                }catch (IOException e){
                    System.err.println("I/O error occured while trying to close the files.");
    }

  • I accidentally deleted the "most visited" feature. How can I reinstall it?

    There is a list of websites and features below the address line at the top of the start page. Some of the items in it are "Getting Started", "Bing Traffic", "Customize Links", etc. I tried to clean our the "Most Visited" feature as it was not updating, and I accidentally deleted it altogether. How can I reinstall "Most Visited", and can I edit its features?
    Thank you.

    Hello!
    Thanks for reaching out to Mozilla Support about your issue. We value and appreciate you as a user.
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Best Regards,
    feer56
    Did you know that Mozilla Support is helped out by volunteers? Be part of SUMO! http://mzl.la/OJtpch
    If any response posted satisfies you to be your solution, please mark it as your solution.

Maybe you are looking for

  • How to EMBED Youtube/Google Video into Pages

    Not import or copy, but EMBED. For instance, you can embed the following into a webpage: <object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/nqM4tKPDlR8"></param><param name="wmode" value="transparent"></param><embed

  • Unicode strings (Japanese) with java 2

    I have made a program with java 1.1.8 where I can paste in Japanese words from the clipboard. View them correctly in the JTextField, save them to file, read from file and display them. To get it to function I had to install a Japanese font, change th

  • Accessing a Cache From an Oracle CQL User-Defined Function

    According to the docs ... I am to use the following element to set the cache property in my bean... <wlevs:property name="cache" ref="cache-id"/> However, when I set it, the assembly does not validate. If I use <property>, I get a NullPointerExceptio

  • Deffered Transaction queue tables

    Hi, By defualt in which table/s and tablespace deffred transactions are stored in Multimaster environment? For brand new Installation how can I change that so deffred transactions will be stored in specified tablespace. Thanks.

  • Trying to uninstall photoshop trial

    i do not need the photoshop on my windows computer at this moment, i also need to free up space, but everytime i try and uninstall it from the control panel it tells me please wait until it is done, but it doesnt do anything.. help.