How to make 260 gtx 55nm VRM custom heat sink

Warning: This will void your warranty
The caveat above added by Mike, Forum Administrator
How to Create a Custom 260 GTX 55nm VRM Heat Sink
Introduction:  This guide was created to show how you can make a custom VRM heat sink from the stock heat sink to be used with an aftermarket cooler.
Reason:  Many aftermarket companies, such as Thermalright and Arctic, fail to provide a good VRM heat sink for the 55nm 200 series GTX’s.  The solution often involves poorly sticking thermal tape or no solution at all, such as the Arctic cooler, which states it’s ok to leave the 260 GTX 55nm VRM chips uncovered.  To leave the VRM chipset uncovered maybe ok for stock clocked cards but what about an over clocked card or an enthusiast trying to push the performance envelope?  That is after all, what these aftermarket cooling solutions are all about; especially the Arctic cooler which can cool up to 250 watts!  Fortunately the solution is very easy and should take you no more than 10 to 15 minutes to address.
Use:  To create a custom made VRM heat sink to be used with an aftermarket cooling solution such as the Arctic cooler and Thermalright cooler.
Tools: 
Dremel, with metal cutting wheel and sanding wheel.
Thermal Pads, which you can buy in sheets from any performance pc store and should be 1.0 mm in thickness.
Philips Screw Driver, very small size would be ideal.
Before we begin I’d like to remind you that removing or tampering with the stock heat sink will more than likely void your warranty.  This guide was also constructed assuming an aftermarket cooler will be installed.  The card used in this guide is a MSI 260 GTX 55nm with reference PCB design (REV 1)  but will also work with other 200 series GTX cards.  When working on any electronic device, always make sure you are well grounded!!!
Step 1:  Remove the screws with the springs only from the back side of the graphics card as shown in figure 1A.  There is a total of 13 spring screws that need to be removed.  Check to make sure that your card does not have two small additional securing screws which are located on the exhaust side of your graphics card with your DVI ports.  If your card does contain these additional screws, remove them before continuing on to step 2.
Step 2:  Gently work the card from the heat sink.  NOTE: Do NOT force or pry heavily, you will damage your card.  It may take a little caressing depending on how much poor quality thermal putty was used from the manufacturer.
Step 3:  Remove the fan power connector from the fan power port as shown in figure 2A.
Step 4:  Remove and discard all the old thermal pads.  You should never re-use thermal pads and especially not the low quality manufacturer ones!  NOTE: keep in mind the location of the VRM thermal pads since you will be making replacements.
Step 5:  Clean off the voltage regulator chips with a tissue or with a soft eraser as instructed by Arctic.  Personally I use a tissue very lightly dipped in alcohol to clean the surface of the chips.  The voltage regulator chips for the 260 GTX 55nm are shown in figure 3A.  NOTE: I will not be covering the cleaning of the GPU or Ram since it does not pertain to the VRM heat sink.
Step 6:  Flip the heat sink so you are looking at the bottom where the thermal pads were attached.  There are 6 very little screws which need to be removed from the assembly.  Figure 4A shows the location of the screws attaching the plastic shroud assembly.  Once they are removed gently pry the plastic shroud off and set it aside. 
Step 7:  Now turn the heat sink over and remove the 4 black screws from the top side of the heat sink.  The fan should come off freely and set that aside as well.  Your heat sink should look like figure 5A.
Step 8:  Now we are ready to begin cutting the stock heat sink.  With a sharpie draw a black as shown in figure 6A.  This will give you a marker to follow when cutting. 
Step 9:  Attach the metal cutting wheel to the dremel and begin cutting across the black line.  Danger: ALWAYS wear eye protection when cutting a metal object or any object.  The metal is very soft and not much force is needed to cut it.  Try not to damage the mounting holes when cutting (figure 6A).  You may need to lightly sand the cut edge depending on how rough or jagged it is after cutting.  When you’re done you should have a piece as shown in figure 7A.  This will be your VRM heat sink.  Important: MAKE SURE you clean the heat sink well and remove all metal particles.  Also allow the heat sink to dry well before installing!!
Step 10: Next cut the new thermal pads to the shape of your VRM chips.  It should look like figure 8A when you are finished.
Step 11:  Gently place the heat sink into place and attach the screws.  When you are done it should look like figure 9A. 
Congratulations on your custom made VRM heat sink.  The great thing is that it never has the risk of falling off, such as thermal taped ones, and can be removed and installed as many times as you wish.  It also does not contain thermal adhesives which also do not facilitate removal as well.  The stock spring screws will also insure secure contact between the VRM chips and the sink.  The custom heat sink comes with nicely built in fins and much better cooling performance then individual dinky VRM heat sinks provided from the Arctic or Thermalright coolers. 
p.s. It is possible to put old heat sink back on the card since each section has its own mounting screws but I would not recommend this unless absolutely necessary.

I'm running a corsair 750 watt PSU
Q660
Gigabyte g31 motherboard
1TB WD Hard drive
OCZ 1066mhz of ram
And I recently swapped the lighting with a gtx 260 and see what would happen in the same system. The GTX260 ran games smoothly, and would run furmark fine with the newest nvidia drivers. Swap back the gtx 275 lightning, and games are really slow and choppy especially when you add any kind of AA. The FPS is literally cut in half when I switched to the msi gtx 275. I think it's safe to say that the GTX275 is defective.

Similar Messages

  • How to make fields editable in an custom enhancement

    Hi Experts,
    My requirement is to perform some custom validations against a field FKONT(BSEG) at the line item level of FB60 and display appropriate message and make the incorrect field editable.
    I have implemented an implicit enhancement point in include MF05AFGENJ.
    The error messages are coming but I am unable to make the GL account, cost center and profit center fields editable.
    Please let me know how to make the above fields editable after displaying the error message.
    For reference, I have done the coding like this:
    IF sy-tcode = 'FB60' .
    CHECK GL_ITEMS IS NOT INITIAL.
    DATA: L_COUNT TYPE I,
          L_STRING TYPE STRING,
          L_FKONT TYPE FIPLS,
          L_TABIX TYPE SY-TABIX,
          G_FLAG TYPE C.
    DATA: WA_ZZFSTP LIKE ZZFSTP.          "Work area for ZZFSTP table
    CONSTANTS:C_MK TYPE TXJCD VALUE 'MK0000000'.
    *-- Validating the Financial budget item field
    IF GL_ITEMS-FKONT IS NOT INITIAL.
    SELECT SINGLE FKONT
                        INTO L_FKONT
                        FROM ZFSTP
                        WHERE FKONT = GL_ITEMS-FKONT.  "cost center
    IF SY-SUBRC NE 0.
       CLEAR: G_FLAG.
       G_FLAG = 'X'.
       MESSAGE W003(ZZFI) WITH 'Please enter 'Financial' 'Budget Item Field' DISPLAY LIKE 'E'.
       EXIT.
    ENDIF.
    *-- Copying the first line item financial budget item field to all the line items in the internal table
    DESCRIBE TABLE GL_ITEMS LINES L_COUNT.
    IF L_COUNT > 1.
      READ TABLE GL_ITEMS INDEX 1.
      IF SY-SUBRC = 0.
            CLEAR: L_FKONT.
            L_FKONT = GL_ITEMS-FKONT.
    *-- Assign the tax jurisdiction codes in all the line items
             LOOP AT GL_ITEMS.
               CLEAR: L_TABIX.
               L_TABIX = SY-TABIX.
               GL_ITEMS-FKONT = L_FKONT.
               GL_ITEMS-TXJCD = C_MK.
    *-- Copy the first financial budget item number and tax jurisdiction code MK0000000 in all line items
               MODIFY GL_ITEMS INDEX L_TABIX TRANSPORTING FKONT TXJCD.
    *-- Populate tax jurisdiction and FKONT financial budget item number in XBSEG table
               L_TABIX = L_TABIX + 1.  "top record in XBSEG is for header
               READ TABLE XBSEG INDEX L_TABIX.
               IF SY-SUBRC = 0.
                 XBSEG-FKONT = L_FKONT.
                 XBSEG-TXJCD = C_MK.
                 MODIFY XBSEG INDEX L_TABIX.
               ENDIF.
             ENDLOOP.
      ENDIF.
    ENDIF. "describe statement
    CLEAR: WA_ZZSTP.
    *-- Validate the amount and GL account against the FKONT(financial budget item) number
    SELECT SINGLE FKONT
                  ZZWRBTR
                  ZZHKONT
                  ZZKOSTL
                  ZZPRCTR
           INTO CORRESPONDING FIELDS OF WA_ZZFSTP
           FROM ZFSTP
           WHERE FKONT EQ GL_ITEMS-FKONT.
    IF sy-subrc EQ 0.
    IF BSEG-WRBTR > WA_ZZFSTP-ZWRBTR.
           CLEAR: G_FLAG.
           G_FLAG = 'X'.
           MESSAGE W003(ZZFI) WITH 'Amount entered' 'cannot be' 'greater than ' WA_ZFSTP-ZZWRBTR DISPLAY LIKE 'E'.
           EXIT.
    ELSE.
             CLEAR: G_FLAG.
            G_FLAG = 'X'.
            SET CURSOR FIELD 'GL_ITEMS-HKONT'.
            MESSAGE W003(ZZFI) WITH 'Incorrect GL account' 'number entered for' 'given financial' 'budget item number'.
            EXIT.
           ELSE.
    *-- Check for cost center and profit center at line item level
             LOOP AT GL_ITEMS.
    *-- Both cost center and profit center is initial.
                IF GL_ITEMS-KOSTL IS INITIAL AND GL_ITEMS-PRCTR IS INITIAL.
                    CLEAR: G_FLAG.
                    G_FLAG = 'X'.
                    SET CURSOR FIELD 'GL_ITEMS-PRCTR' LINE SY-STEPL.
                    SET CURSOR FIELD 'GL_ITEMS-KOSTL' LINE SY-STEPL.
                    MESSAGE W003(ZZFI) WITH 'Please enter' 'cost center' 'or' 'profit center'.
                    EXIT.
    *-- Either cost center or profit center is initial
                ELSEIF GL_ITEMS-KOSTL IS INITIAL AND GL_ITEMS-PRCTR IS NOT INITIAL.
                    CHECK GL_ITEMS-PRCTR NE WA_ZZFSTP-ZPRCTR.
                      CLEAR: G_FLAG.
                      G_FLAG = 'X'.
                      SET CURSOR FIELD 'GL_ITEMS-PRCTR' LINE SY-STEPL.
                      MESSAGE W003(ZZFI) WITH 'Incorrect profit' 'center entered' 'for given' 'financial budget item' DISPLAY LIKE 'E'.
                      EXIT.
                ELSEIF GL_ITEMS-KOSTL IS NOT INITIAL AND GL_ITEMS-PRCTR IS INITIAL.
                   CHECK GL_ITEMS-KOSTL NE WA_ZFSTP-ZKOSTL.
                      CLEAR: G_FLAG.
                      G_FLAG = 'X'.
                      SET CURSOR FIELD 'GL_ITEMS-KOSTL' LINE SY-STEPL.
                      MESSAGE W003(ZZFI) WITH 'Incorrect cost' 'center entered' 'for given' 'financial budget item' DISPLAY LIKE 'E'.
                      EXIT.
                ENDIF.
             ENDLOOP.
           ENDIF. "GL Account
    ENDIF. "Amount check
    ENDIF. "SY-SUBRC check
    ENDIF.
    EXPORT G_FLAG FROM G_FLAG TO MEMORY ID 'ZER'.
    Please let me know how to make GLaccount,cost center and profit center fields editable.
    Regards,
    Sangeeta.

    Hi.. chaek the below links. may be useful to u.
    Making Table control records Editable / Non-editable
    Table control with both Editable and non Editable fields
    Regards,
    KP.

  • How to make our own Ajax based custom compnent

    hi
    i want to make my own Ajax based custom compnent.
    i know JSF custom comppnents, but dont know how to add Ajax functionality in it.
    what should i have to learn for this.
    can any one guide me. if some one have code example it will be appreciated
    br,
    Haroon

    You can read tutorials or manuals from the suppliers of AJAX for JSF components. And of course take a look into the code.
    Examples:
    http://getahead.ltd.uk/dwr
    http://icefaces.org
    http://www.exadel.com/web/portal/products/VisualComponentPlatform
    https://bpcatalog.dev.java.net/ajax/jsf-ajax/
    Overview:
    http://www.jsftutorials.net/
    http://www.jsfmatrix.net/

  • How to make a key in OM Custom infotype

    Hello everyone,
                        I have created the custom infotype in OM. I need to make one of the field in include HRI9xxx as Key field. Is any one know how to do this.

    Hello Oleg,
                  Thanks for replaying,  My understanding was When you create a infotype through PPCI you create structure HRI9*** with the fields you wants into infotype. SAP attach the HRIKEY include along with HRIADMIN with your HRI9*** include and create HRP9****. By default the fields in HRIKEY include will becomes Keys. I don't have a option from my client to modify HRIKEY.
    Let me know is there any thing I am missing in it?

  • How to make a complaint about in store Apple customer service on iphone4S ?

    Hi all,
    I'd like to know about how to make a complaint about a very unpleasant service experience and I'd also like to share this story with you to see whether you guys have any comments (good/bad all welcomed!).
    I booked a genius bar service to see the technical consultant at 1:00 pm yesterday. I came at around 1:15 pm and I was told by the order person (i.e. the person who holds a list of bookings on an ipad and instructs customers to queue) that I had to book another service time (i.e. next week).Our conversation was not pleasant and is (roughly) the following one.
    Order person: You missed your appointment so book another one and come next week.
    Me: I had my work and that is why I am late.
    Order person: Sorry you need to book another one.
    Me: No other alternative? I took a bus and came all the way here.
    Order person: Or you can try Bondi.
    Me: ............No other alternative?
    Order person: Or you can wait for half an hour to one hour. You have seen how many people there are here.
    Me: All right. I understand so can I ask you some technical questions?
    Order person: You need to make a booking and talk to a genius service person.
    Me: I just want to know given the issue I have if I can make a replacement.
    Order person: What is your problem?
    Me: I bought this iphone here in Sydney and gave it to someone who lives overseas as a gift. When he made a call he frequently could not hear anything from the other end. I bought two iphones, one black and one white. (I showed him my reciept.) The white one works but the black one doesn't.
    Order person: Did you restore it?
    Me: Yes and I brought it here. (I showed him the iphone.)
    Order person: You do not have a micro-SIM card in the phone?
    Me: No because I do not use an iphone.
    Order person: If you do not have a SIM card then how can we assess it?
    Me: So you need a SIM card?
    Order person: Yes.
    Me: I came here three times and different people told me different things. The first two times both the came-up people said just take your phone and we can offer you a replacement. So I think this is how it should be.
    Order person: Well, I'm sorry!!! Now you know you need to have your micro-SIM card.
    Me: Can I see your manager? I want to know exactly what I need to do.
    Order person: I am the manager at the moment.
    Me: So that is all I need to bring? Iphone and its SIM card.
    Order person: Yes.
    Me: OK.
    Order person and his colleague had an unpleasant laugh after I turned.
    There are a few things I want to make a complaint on and I'd like to see you guys' opinions on this.
    The order person's attitude was not very acceptable. I understand he is an expert in this area but I believe there are non-expert customers like me who takes time to understand. Some of his words and his laugh made me very uncomfortable.
    Even I have come three times I am still confused about what I need to bring to see the genius service person. I can bring an iphone but I do not have an Australian micro-SIM card (since this iphone is a gift to other people who lives overseas).
    Thanks for reading all this! Any comments or suggestions are more than welcomed, both good and bad!
    Please let me know if you know a proper place where I can make a complaint!
    Thanks!!!

    Thanks for your response and yes, I haven't thought about the warranty being not international.
    Having said this, using all the modern technology of identifying and tracking my device to e.g. figur out the warranty status, I find it not satisfactory. People like in my case relocate from time to time and Apple as an international company with employees world-wide should know better I think and I expect a more customer oriented problem solving attitude and -if you want to make a difference - it sure is possible.
    Yes, I know the cue information from Manhattan, but in Hamburg you get other educational information on them.
    For me there is a gap between the glamourous coolness, hand-shaking and introducing oneself on one hand and the unsatisfactory problem solution from the customer's perspective. As such I am already annoyed/frustrated when my device is not working as it is supposed to. Getting just process-required and not flexible responses does not help.
    And no, I don't feel well, if I have an appointment scheduled for 10 minutes, invest already hours to make it happen and stay for much longer.
    What annoys me is that I get the impression despite the fact that as an 'already educated customer' I do a lot myself in figuring out what to do best and be considerate and I am still confronted with an attitude as if I don't 'function good enough' as customer and should know this and that and better. This *****.

  • How to make custom icc color profile work as default for all users?

    Hi!
    I've calibrated two monitors for the machine running Mavericks OS X. I've managed to move these custom icc color profiles to ColorSync folder in HDD Library, so that that they are available for all the users. However, I cannot figure out how to make these icc profiles work as default profiles for all users and not only the one I used to calibrate monitors.
    Is there a specific place I have to put custom icc profile to make it system default?
    Thank you!

    If you put the profiles in the root /Library/ColorSync/Profiles/ folder, then each user needs to select them in their account. There isn't a way to apply them globally so each account automatically comes up that way.

  • How to make use of customer reserve pricing types in copying control

    Hi All
    Please inform how to make use of 'customer reserve' pricing types like 'X,Y,Z & 1-9' keys in copying control.
    Right now I'm on maintenance & supporting project for european client.  They used pricing type 'Z' for copying condition records from stadard sales order to returns(RE) order.  I wanted to know that what is 'Z' and how it is functioning to resolve one urgent ticket assigned to me.
    Could you please guide me where should I verify its logic.
    Thanks & Regards
    Seshu

    Hi Seshu,
    Pricing type changes will done at user exit level. You may want to look at the user exit USEREXIT_PRICING_RULE (module pool SAPLV61A, program RV61AFZA)
    Also, OSS note 24832 will help you to get an understanding.
    Regards,
    Please reward points if helpful

  • In OBIEE charts, how do you make drill downs work on custom formulas?

    I posted this over on Linked In and didn't get an anser, so I'm hoping someone here has an answer.
    I'm writing a summary query / chart for a dashboard in OBIEE 10.1 with a drill down (technically it's a "navigation") for more information. This chart breaks down the data by fiscal quarter and by geography (both are columns in the subject area) and I can get this drill down to work just fine. But I also have this chart broken down by some custom calculated fields (CASE WHEN statements) that classify revenue into Forecast / At Risk / Upside etc. (which are not columns or values of columns within the subject area).
    When I add a drill down or navigate function onto those calculated columns, I'm getting a full data set ... not a filtered data set for that particular calculated field. (Yes, I have all of the IS PROMPTED filters set up correctly, and yes the formulas in the source and destination queries are identical).
    Does anyone have any ideas on how to make the drill down or navigation work on custom formulas?
    Thanks
    Ted

    Using the Paint demo
    Report 1 Saved as: */shared/Paint Demo/Sample Analyses/Color Analysis*
    <saw:report xmlns:saw="com.siebel.analytics.web/report/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sawx="com.siebel.analytics.web/expression/v1" xmlVersion="200705140">
    <saw:criteria xsi:type="saw:simple" subjectArea="Paint">
    <saw:columns>
    <saw:column formula="case WHEN Markets.Region IN ('CENTRAL REGION', 'EASTERN REGION') then 'East Central' WHEN Markets.Region IN ('SOUTHERN REGION', 'WESTERN REGION') then 'South West' else Markets.Region end" columnID="c4">
    <saw:tableHeading>
    <saw:caption>
    <saw:text>Markets</saw:text></saw:caption></saw:tableHeading>
    <saw:columnHeading>
    <saw:caption>
    <saw:text>Region</saw:text></saw:caption>
    <saw:displayFormat interaction="default"/></saw:columnHeading>
    <saw:displayFormat suppress="default" interaction="navigate" wrapText="true">
    <saw:navigation xsi:type="saw:sawNavLink">
    <saw:navTargets>
    <saw:navTarget xsi:type="saw:reportLink" path="/shared/Paint Demo/Sample Analyses/Color Analysis Navigate"/></saw:navTargets></saw:navigation></saw:displayFormat></saw:column>
    <saw:column formula="&quot;Sales Measures&quot;.&quot;% Chg Year Ago Dollars&quot;" alias="" columnID="c3"/></saw:columns>
    <saw:columnOrder/>
    <saw:filter subjectArea="Paint">
    <sawx:expr xsi:type="sawx:special" op="prompted">
    <sawx:expr xsi:type="sawx:sqlExpression">case WHEN Markets.Region IN ('CENTRAL REGION', 'EASTERN REGION') then 'East Central' WHEN Markets.Region IN ('SOUTHERN REGION', 'WESTERN REGION') then 'South West' else Markets.Region end</sawx:expr></sawx:expr></saw:filter></saw:criteria>
    <saw:views currentView="0">
    <saw:view xsi:type="saw:compoundView" name="compoundView!1" rptViewVers="200510010">
    <saw:cvTable>
    <saw:cvRow>
    <saw:cvCell viewName="Title"/></saw:cvRow>
    <saw:cvRow>
    <saw:cvCell viewName="Table"/></saw:cvRow></saw:cvTable></saw:view>
    <saw:view xsi:type="saw:tableView" deck="bottom" headingDisplay="table2Rows" visibleFormats="all" name="Table" rptViewVers="200510010"/>
    <saw:view xsi:type="saw:titleView" name="Title" rptViewVers="200510010"/></saw:views>
    <saw:prompts/></saw:report>
    Report 2 Saved as: */shared/Paint Demo/Sample Analyses/Color Analysis Navigate*
    <saw:report xmlns:saw="com.siebel.analytics.web/report/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sawx="com.siebel.analytics.web/expression/v1" xmlVersion="200705140">
    <saw:criteria xsi:type="saw:simple" subjectArea="Paint">
    <saw:columns>
    <saw:column formula="Markets.Region" columnID="c5"/>
    <saw:column formula="&quot;Sales Measures&quot;.&quot;% Chg Year Ago Dollars&quot;" alias="" columnID="c3"/></saw:columns>
    <saw:columnOrder/>
    <saw:filter subjectArea="Paint">
    <sawx:expr xsi:type="sawx:special" op="prompted">
    <sawx:expr xsi:type="sawx:sqlExpression">case WHEN Markets.Region IN ('CENTRAL REGION', 'EASTERN REGION') then 'East Central' WHEN Markets.Region IN ('SOUTHERN REGION', 'WESTERN REGION') then 'South West' else Markets.Region end</sawx:expr></sawx:expr></saw:filter></saw:criteria>
    <saw:views currentView="0">
    <saw:view xsi:type="saw:compoundView" name="compoundView!1" rptViewVers="200510010">
    <saw:cvTable>
    <saw:cvRow>
    <saw:cvCell viewName="Title"/></saw:cvRow>
    <saw:cvRow>
    <saw:cvCell viewName="staticchart!1"/></saw:cvRow>
    <saw:cvRow>
    <saw:cvCell viewName="Table"/></saw:cvRow></saw:cvTable></saw:view>
    <saw:view xsi:type="saw:tableView" deck="bottom" headingDisplay="table2Rows" visibleFormats="all" name="Table" rptViewVers="200510010"/>
    <saw:view xsi:type="saw:titleView" name="Title" rptViewVers="200510010"/>
    <saw:view xsi:type="saw:staticchart" name="staticchart!1" rptViewVers="200510010">
    <saw:template tid="charts/pie.cxml"/>
    <saw:canvasFormat/>
    <saw:selections>
    <saw:categories>
    <saw:category position="0">
    <saw:constant value="1"/></saw:category></saw:categories>
    <saw:measures>
    <saw:column columnID="c3" position="0"/></saw:measures>
    <saw:seriesGenerators>
    <saw:column columnID="c5"/>
    <saw:measureLabels/></saw:seriesGenerators></saw:selections></saw:view></saw:views>
    <saw:prompts/></saw:report>
    The first report navigates and prompts the second report on the calculated field.
    Regards
    Chris

  • How to make custom ringtones in iOS 5.1

    How to make custom ringtones in iOS 5.1.
    I was on iOS 4.3 before and i used to create the AAC version and then change the file extension & that file would come up in the Rimtones in iTunes, After the iOS 5.1 i m unable to add the custom ringtones to my iPhone from iTunes.

    Was having this problem too.  Discoverd that that there is a "tones" top menu next to "music" under your iphone settings.  I'm not sure if this is new or not (I am a new iphone owner), but if you check on sync tones they will download.

  • How to make a custom form, buttons etc... please...

    I mean, how to make a form (for example, JFrame) with arbitrary form (geometry, for ex, round, oval, star like etc). I think you understand what i mean.
    Of course, i think i can use winApi, but it's only for windows. It doesn't suit for Java in this problem solution.
    That question also about cusomizing form of buttons, fields.. etc..
    i think, everything.
    What can java allows to cusomize and what not.
    Thanx!!

    I am just a learner and so i can just suggest you a strategy to implement Customized forms in JAVA. However i am sure that in practice it will work as far as Windows OS are concerned. Here is it:-
    The basic IDEA is to declare a native function in JAVA that makes JNI calls which will be further processed by Win32API and processed output will result into an elliptic or any polygonal shaped forms.
    To achieve declare some function as follows:
    public native void createEllipticalForm(formName formRefrance);
    create a Win32 Compiled DLL that manages this function as follows:
    (Mindwell, i havent stated what you call as pure-code but just a pseudo-code to the actual implementation)
    public native void createEllipticalForm(formName formRefrance)
    /* Search for the below stated Functions in Win32 API and work on
    them. I see a ray of success if you work with these functions properly.
    Further-more I assume that you are aware with concept of HANDLES */
    createEllipticRegion(); //WINDOWS.H
    showWindow(handleToTheForm); //WINDOWS.H
    Search for "createEllipticRegion() or showWindow()" on the GOOGLE to get the pure win32 API Code for Creating Customized Forms.
    Reply me in case any of you people get a solution based on my idea.
    [by VISH]

  • How to make Firefox to never update that slow custom look since FF 29?

    How to make Firefox to never update that slow custom look since FF 29? How to change windows installation and ubuntu installation so they never update after FF 28 witch was last normal speed normal browser?
    Hello. I can easy remove on Windows FF 29 or FF 30 and its slower on fast computer. But its affected by millions of users. With FF 28 it was allways fast.
    Why fast? I dont know but its SLOW Now any version after FF 28.
    Since FF 29 FF loads and hangs very very slow each time loading, starting, or changing tabs. It is making problem for everyone and now everyone calls with help- "why computer is slow.. oh its FF? Chrome? Chrome was slow but now its not the slowest one?"
    Very colorfull Example- one comp is 10" and its very very very very low specs. So it wont run at all.
    Now on small comp we can try linux and FF BUT no matter what OS just couldnt get back with any plugins back normal speed. Since FF 29 its very very very slow and that needs to have a solution. Today came update and still unneded custom menu button and its slowness hasnt been removed (unnoticed) so it needs a fix so it works for people who are not just for browsing internet buying new computer and cant get any faster speed then Chrome since now theres no FF anymore.
    SO- How to do that on Windows and Linux- installing FF 28 and making it never upgrade
    OR even better- Making a package that already has this update disbled setting ON?
    p.s. Should you first ask people how they like slow browsers before making fast one to a slow one?
    p.p.s. i dont get how menu could be added by thouse who need it as an add-on ass allways and not presuring everyone who never touches any button.
    p.p.p.s. your business was beeing neutral ngo making browser for people and not for making cloged systems so new computers could be sold by some company advice or infiltrated mole who will suggest such unneded feature as any other addons, but sticking it in for everyone.

    Hello,
    You can download version 28 from here:
    https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/28.0/
    Also, you'll have to disable auto updates to remain with version 28 by following the steps described in this support article:
    https://support.mozilla.org/en-US/kb/advanced-settings-browsing-network-updates-encryption#w_update-tab

  • How to make a custom template the default for Apple Mail (10.7.5)?

    Hi,
    I'm OK with making a new custom template in Apple Mail.  It shows up fine once under "custom" in the stationary pane (and once I take off signature in a new email).  But... that's a lot of trouble to go through everytime I want to send an email.
    So the question is: can I make my custom template my default for all my emails, unless I want to manually change it?  Seems like this should be possible but I can't figure it out and haven't run into any solutions (only on how to make a template).
    Do I really have to select it each time?
    Best,
    Joel

    As an FYI: I just solved the problem by going the "low road." I'll be a bit laborious in case someone else wants a solution at a later date (I know I Googled the topic and found nothing). I experimented by simply:
    Opening a new email message
    Selecting my custom template
    Copying the custom signature (Select All)
    Opening another new email message
    Selecting Edit on the Signature pulldown menu
    Hitting the plus symbol to create/add a new signature in the pane
    Pasting into the new signature
    Naming it
    Selecting "Choose signature" at the bottom of the signatures pane
    And violà!!
    It now appears as a possible selection *and* as the default.
    Better yet - it is now my default and will work as a reply to an email.
    I think I got it all right in the list above.
    OK, granted, this is a pretty simply signature - a list of my website, SoundCloud, twitter etc with those names in bold and a graphic of my color logo - but... it works! YMMV.
    Give it to Apple to make it so simple that any fool could do it (that would be me), you wouldn't need a "specialized" app, and - of course - there wouldn't even be instructions on how to do it!
    Best,
    Joel

  • How to make a field in custom screen as display field in screen exit

    Hi ,
    I have created a screen exit for CO02 with a field for item text in header level as input field , when value is given and save button is cliked it gets updated in database but the problem is same field shows as input field in CO03 ( display mode ) .
    Code which i have used .
    in PBO
    if sy-tcode = 'CO03'.
    loop at screen .
    if screen-name cs 'SUBSCREEN' or screen-name cs 'RESB-POTX1'.
    ( subscreen - screen name given in screen editor and   resb-potx1 field name given in screen editor )
    SCREEN-INPUT = '0'.
    modify screen.
    endif.
    endloop.
    endif.
    and even i tried in PAI too .....
    if sy-tcode = 'CO01' or sy-tcode = 'CO02'.
    update resb set POTX1 = RESB-POTX1
    where aufnr = i_aufnr.
    elseif sy-tcode = 'CO03'.
    *oop at screen .
    *f screen-name cs 'SUBSCREEN' or screen-name cs 'RESBD-SORTF'.
    SCREEN-INPUT = '0'.
    modify screen.
    endif.
    endloop.
    endif.
    but itshows as input field only ........how to make that custom field as display field in CO03

    HI Andy,
    Try this out.
    FIrst check the sy-dynnr, if it is same as your custom screen number
    in PBO of your custom screen
    if sy-dynnr = 'YOUR_NUMBER' and sy-tcode = 'CS03'.
    loop at screen
    if screen-name = 'YOUR_SCREEN_NAME'
    screen-input = 0.
    modify screen
    endif
    endloop.
    endif.
    if it wont work they try using Tcode SHD0
    Hope this will serve your purpose.
    Regards
    Ramchander Rao.K

  • ThinClient t5565z ThinPro Zero how to make custom localizati​on

    Does anyone know how to make a custom language pack for thin clients?
    All I managed is to edit *.mo and *.qm from EasternLanguagePack and pack it into a xar archive, so I was able to see russian text if I choose for example Japanese. But the problem is that this xar is installed every time a thin client is rebooted. And it is not convenient to choose Japanese (or say French) to get Russian translation.
    Any information on creating translations for thin clients would be helpful.
    We tried to ask russian HP office (becuase we need russian translation), but they refused to help.

    Hi,
    Take a look here:
    Re: Fill empty cell with '0'
    Steps to fill empty cell with '0':-
    1. Select intersection cell in cross tab.
    2. Go to properties tab.
    3. In Text Format section, click on Number Format button.
    4. Select Format type is 'Number' and check the Custom check box.
    5. Enter 0 in all text boxes(Positive, Negative, Equal to zero, and Undefined).
    6. Click ok.
    Now you can see 0 in the Emply cells of cross tab.
    If you want decimal values, enter 0.00 in Positive box.
    Edited by: Swarna K on Mar 12, 2011 9:25 AM

  • ECC 6.0 Upgrade - Lot of  Custom Objects - How to make it work ???

    Hi ,
    My client is on HR 4.6c and ESS in standalone ITS and upgrading to ECC 6.0 and EP7.  They have lot of custom objects ( Reports, ABAP Queries, Function Modules etc., ) and lot of customization done in ESS ( Std tcodes copied and developed ESS services in ITS). What is the approach to be followed to upgrade these custom objects/transactions into ECC 6.0? Once up gradation done, Is there any changes to be done either in EP 7 side or  R/3 side ( ECC 6 ) in order to call those z tcodes in EP7 ( ESS )?
    Client is happy with the current functionality in ESS ( ITS ) , wanted to use the same functionality in new system. Any clue on  how to make use of those Z transactions useful in ECC 6? Can we call these transactions in ESS in EP7? Your response will be highly appreciated. Example: For open enrollment, instead of std PZ14 , they have copied and developed their own transaction to use in ESS ( 4.6c ). The same one should also work in EP7 and ECC 6.
    Rgds
    Peddi

    Prakash,
    Thank you for your reply.  But we have custom transactions( Screen based , module pool ) used in 4.6C, ESS ( ITS),  What are the changes we may have to make potentially to work those programs from EP7 ESS.
    What are the changes you suggest to make in R/3 ECC6 ( after upgrade )and also EP7 side ( Like crating custom I Views would be a best bet ? )
    Peddi

Maybe you are looking for

  • ICloud payment due date in the year 2050

    Hello,   I called Apple around 27 September with a problem on having iCloud bill my credit card on 30 September 2012 where the Apple representative seemed to have a challenge understanding my issue.   So 30 September came and went and now my iCloud a

  • Detect archivelog gap through gv$archived_log or GV$ARCHIVE_DEST_STATUS

    I am trying to set up a physical standby. Version 11.2.0.1,Single instance. Platform - Linux     X86-64 After setting up, when i execute the following queries, there is a difference in the output with reference to archivelog gap. Any inputs why these

  • Verizon process for iphones for existing customers......are you kidding me?????????

    Are you kidding me Verizon??? I did everything you told me in order to get my iphone right away.  I got up at 3 am on the 6th and your website was down more than it was up...by the time I was able to place my order you tell me you are no longer accep

  • Scheduling of Report  Mail it to concern User

    Hi Experts Is it Possible to Send the reports on Mail on predifned Time . Eg If daily how much material is dispatch. I want to schedule this report at 5 PM every day .Per day wise. If Possible please guide me Thanks & regards Ashish Gupte

  • Post-Install Batch File Won't Run

    Ok here's the deal. I have created an application that needs a little "cleanup" after the installer finishes. To handle this operation, I created a batch file and told the LV installer to run it after the installation. This works fine on every comput