NSMutableString getCString misbehaves, does not show some characters

Hi everyone,
This is my first time here.
I have written a small tool for Cocoa / MacOSX 10.5 and I am trying to save a text to a file, but some characters such as # appear as hex 0x0.
Source: -----
int len = [results length] * sizeof(char);
char *buffer = malloc(len);
[results getCString: buffer maxLength: len-1 encoding: NSWindowsCP1250StringEncoding];
NSData *dt = [NSData dataWithBytes: buffer length: len];
[fileManager createFileAtPath: @"/Volumes/MacBackup/results.sh" contents: dt attributes:nil];
The # and the final 2-3 characters appear as 0x0 in a hex viewer. I have tried almost all encodings, but to no avail. Can anyone tell me how to make it work? Do I have to enter the # directly in the char buffer as ASCII char or am I missing something about the encoder?
Btw, I am a newb at Mac programming, but I come from a solid Windows programming background, but please don't hold that against me :P.
Message was edited by: TTDeath
Message was edited by: TTDeath

Hi TT, and welcome to the Dev Forum!
TTDeath wrote:
I have written a small tool for Cocoa / MacOSX 10.5 and I am trying to save a text to a file, but some characters such as # appear as hex 0x0.
int len = [results length] * sizeof(char); // <-- need to add one here
char *buffer = malloc(len);
The NSString length method doesn't count a terminator; i.e. it's analogous to strlen(), so if you convert an ASCII C string to a NSString object, the return from [results length] will be the same as strlen(source). I'm not sure there wasn't something else going on at your end, since this length error only strips the trailing char from the source string. In any case, the following code should work for you:
// made from MAC OS X->Command Line Utility->Foundation Tool template
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// insert code here...
NSLog(@"Hello, World!");
NSString *results = @"A string with # embedded
int len = [results length] * sizeof(char) + 1; // <--
char *buffer = malloc(len);
BOOL bError = [results getCString: buffer
maxLength: len encoding: NSWindowsCP1250StringEncoding];
NSLog(@"getCString returns %d", bError);
NSData *dt = [NSData dataWithBytes: buffer length: len];
NSLog(@"dt=%@", dt);
NSFileManager *fileManager = [NSFileManager defaultManager];
// I don't recommend testing in a system directory -
// remember to substitute your home dir name here:
bError = [fileManager createFileAtPath: @"/Users/Ray/results.sh"
contents: dt attributes:nil];
NSLog(@"createFileAtPath returns %d", bError);
[pool drain];
return 0;
// [Session started at 2009-12-05 16:47:41 -0800.]
// 2009-12-05 16:47:41.045 TT[463:10b] Hello, World!
// 2009-12-05 16:47:41.048 TT[463:10b] getCString returns 1
// 2009-12-05 16:47:41.049 TT[463:10b] dt=<41207374 72696e67
// 20776974 68202320 656d6265 64646564 0a00>
// 2009-12-05 16:47:41.054 TT[463:10b] createFileAtPath returns 1
// rays-imac:~ Ray$ cat results.sh
// A string with # embedded
- Ray

Similar Messages

  • Latha font not showing some characters correctly

    பூ is not displaying as intended in any fonts I use.
    In the layer Name it read correctly, but in the view window it renders incorrectly.
    I'm using a PC.
    Has anyone encountered this issue before? or know how to fix it?

    AE does not support full Unicode glyph substitution. Such stuff usually has to be imported as a graphic, if you can't find a way to enforce a correct glyph e.g. with an expression or manual typing in the character code.
    Mylenium

  • Mail 5: does not show some attachments if not config'd as Exchange

    One of my email accounts resides on an Exchange 2010 server. I clean installed Lion the other day, but ever since early Snow Leopard builds, I had this issue where every now and again, emails received on that Exchange account would have attachments that did not show up when the message was viewed in Apple Mail. These are not unusual attachments. We're talking a .doc or two. An email with one attachment might appear attachment-less in Mail, and one with five attachments might appear as if it had four attachments in Mail.
    The same is happening in Mail 5 on Lion. Here's how it goes:
    1. When the account is configured as Exchange IMAP, a message received today with one .doc attachment appears without the attachment.
    2. When the account is deleted and readded as IMAP, the same happens.
    3. When the account is deleted and readded as good old Exchange, the message appears properly -- attachment and all.
    Decided to try this after seeing that the attachment was showing just fine on my iPhone which connects via Exchange, not IMAP.
    I'm curious. Anyone have any thoughts on why this is?

    I've seen this behavior on both Snow Leopard and Lion as well, although I haven't linked it to the mail protocol being used.  Sometimes even on my iPhone and iPad.  It's variable, unpredictable and inconsistent.  I'm sure somewhere buried in the arcana that is modern multi-part MIME messages there's an answer, but I'll be darned if I know what it is.  All I can suggest is filing a bug report with Apple.

  • 8859-1  PDF does not show french characters.

    Hi All,
    I am stuck in this issue for 2 days now and finally i decided to post it here.
    I have created a custom oracle report(10G) with BI to open in PDF. The XML prolog Value is defined as <?xml version="1.0" encoding="iso-8859-15"?>
    Now when i run the report in R12 the pdf file shows junk character for french characters(É shown as "%o"). These characters are displayed properly if i look at the XML file. When we run that output from the server we get the weird characters but if we take the same output (XML) file and run it locally using desktop publisher the PDF document shows the French characters
    I check the nls_characterset and it is defined as AL32UTF8(which supports french)
    I read some articles they advise to copy fonts from *$FND_TOP/resource* to *$OA_JRE_TOP* and *$AF_JRE_TOP(lib/fonts)* , but it does no work.
    Also, one of the article says to add files in $JAVA_HOME. But i was not able to find JAVA_HOME and the dba says we have $JAVA_TOP and we are not suppose to change anything here.
    we are using EBS R12.1.3
    oracle reports : 10.1.2.0.2
    Any help on this will be appreciated.
    Regards,
    K

    I believe your only option is to setup Pasta
    How to Setup Pasta Quickly and Effectively [ID 356501.1]
    How to Generate PDF Output With UTF8 in R12? [ID 778970.1]
    HTH
    Srini

  • CSV output does not show speacial characters properly

    Hi,
    I scheduled a report to generate csv output. Data contains some Czech, French, German characters which are not coming properly in csv. But if generate excel output, I can see it comes properly.
    Please help me to resolve. I can not give long instructions to the users to use Import data options, define encoding etc.(available in MSexcel) while open the csv file in order to get coorect characters.
    Kind Regards.

    UTF-8 encoding is used for CSV output and please make sure you open it in UTF-8 encoding mode of your editor.

  • Subject: Why Restricting Calendar Year/Month Does not show some process cha

    I am struggling to figure to how to debug BEX queries. I am on BI 7.0.
    I am developing a query on 0TC_C21.
    1.     I want output like:
    Process Chain Id:   Average Duration
    When I run this query for an interval on 0CALMONTH (01.2009 u2013 12.2009), I get all the
    Process chains executed and their average duration.
    2.     Now I want to see Average Duration for each month. I simply put 0CALMONTH on top of the key figure Avg Duration. I now do see 
    Process Chain Id:   Avg Duration 01/2009 Avg Duration 02/2009 u2026. Avg Durtaion 08.2009
    But problem is only some process chains are shown. Why?  In the output, I do see for some process chains there is no Avg Duration, e.g. in 01/2009  because process chain was never run.
    So, I do not understand why some process chains are not being shown. 
    I know for sure that process chains not being shown were run in 08.2009.
    Appreciate any feedbacks, in particular how to debug this problem.

    Thanks for the assistance!
    The feed is here: http://gats.podomatic.com/rss2.xml
    The store URL is: https://itunes.apple.com/us/podcast/gaming-and-then-some/id744125948 (the same you got in Google)
    And that what is confusing me. As far as I know, the URL should not have changed from the one I received when the podcast was approved last year. The feed seems fine. It's still updating when I load up episodes to Soundcloud. I'm stumped. Any ideas?

  • Ps2pdf convert does not show right characters.

    I have a PS file generated from a software system. It has characters è and é which are converted into the \350 and \351.
    When I use ps2pdf to convert this ps file into pdf I get Ł and Ø instead.
    the file is encoded in ISO8859-15 encoding.
    Actual Name : Société Financière
    PS file : Soci\351t\351 Financi\350re
    PDF file : SociØtØ FinanciŁre
    Follwoing is the PS code. Please help me get the right characters on the pdf.
    %!PS-Adobe-3.0
    %%Title: stdout
    %%Creator: idttex 8.00.02.01 Copyright (c) 2007 Intec Telecom Systems PLC
    %%CreationDate: Thu 22 Nov 2012 05:41:33 AM UTC
    %%Pages: (atend)
    %%PageOrder: Ascend
    %%Orientation: Landscape
    %%BoundingBox: 0 0 612 791
    %%DocumentMedia: letter 612 791 0 () ()
    %%DocumentNeededResources: font Courier Helvetica-Bold Helvetica
    %%EndComments
    %%BeginProlog
    %%BeginResource: procset TextCommands
    /idttexdict 209 dict def
    idttexdict begin
    /rna 0 def
    /a{/rna exch def}bind def
    /df{exch findfont exch scalefont setfont}bind def
    /X{/xc exch def}bind def
    /R{xc add /xc exch def}bind def
    /L{xc exch sub /xc exch def}bind def
    /Y{/yc exch def}bind def
    /U{yc add /yc exch def}bind def
    /D{yc exch sub /yc exch def}bind def
    /t{xc yc moveto show}bind def
    /tr{xc yc moveto rna rotate show rna neg rotate}bind def
    /lw{setlinewidth}bind def
    /l0{[] 0 setdash}bind def
    /l1{currentlinewidth 6 mul currentlinewidth 3 mul 2 array astore currentlinewidth 3 mul setdash}bind def
    /l2{currentlinewidth currentlinewidth 2 mul 2 array astore 0 setdash}bind def
    /ln{xc yc moveto rlineto stroke}bind def
    /rb{xc yc translate rna rotate}bind def
    /re{rna neg rotate xc neg yc neg translate}bind def
    /ro{
    rb 0 0 moveto
    1 index 0 lineto
    1 index 1 index neg lineto
    0 1 index neg lineto
    0 0 lineto closepath pop pop
    }bind def
    /ra{
    rb dup 0 moveto
    2 index 1 index sub 1 index neg 2 index 90 0 arcn
    2 index 1 index sub 2 index neg 2 index add 2 index 0 270 arcn
    dup 2 index neg 2 index add 2 index 270 180 arcn
    dup neg 1 index 180 90 arcn closepath pop pop
    }bind def
    /rs{
    gsave [{/moveto load}{/lineto load}{/curveto load}
    {/closepath load}pathforall]cvx
    3 1 roll 2 copy cos mul 3 1 roll sin mul translate
    exec fill grestore gsave 1 setgray fill grestore
    }bind def
    /rf{gsave fill grestore}bind def
    /rl{stroke re}bind def
    /rn{newpath re}bind def
    /sb{.1 .1 scale}bind def
    /se{10 10 scale}bind def
    /boc{gsave sb}bind def
    /eoc{grestore}bind def
    /bos{gsave se}bind def
    /eos{grestore}bind def
    /bod{userdict /start-hook known{userdict begin start-hook end}if}bind def
    /bop{
    save exch
    userdict /bop-hook known{userdict begin bop-hook end}if
    pop boc
    }bind def
    /eop{
    eoc
    userdict /eop-hook known{userdict begin eop-hook end}if
    restore showpage
    }bind def
    /bls{gsave translate 90 rotate}bind def
    /els{grestore}bind def
    /bb{boc}bind def
    /eb{eoc showpage}bind def
    /eod{userdict /end-hook known{userdict begin end-hook end}if}bind def
    end
    %%EndResource
    %%EndProlog
    %%BeginSetup
    %%IncludeResource: font Courier
    %%IncludeResource: font Helvetica-Bold
    %%IncludeResource: font Helvetica
    idttexdict begin
    /f0{/Helvetica 80 df}bind def
    /f1{/Helvetica 70 df}bind def
    /f2{/Helvetica-Bold 80 df}bind def
    /f3{/Courier 80 df}bind def
    /f4{/Courier 100 df}bind def
    /f5{/Helvetica-Bold 90 df}bind def
    /f6{/Helvetica-Bold 100 df}bind def
    /f7{/Helvetica-Bold 70 df}bind def
    /c0{0 0 0 setrgbcolor}bind def
    bod
    %%EndSetup
    %%Page: 1 1
    612 0 bls
    0 bop
    0 a
    f5
    c0 3432 X 5491 Y()t
    f6
    317 R 177 D()t
    f2
    177 X 146 D(Invoice ICA: 14176 Soci\351t\351 Financi\350re)t
    5627 R(Invoice #)t
    f0
    342 R(: 129990000000046)t
    f2
    177 X 80 D(abc)t
    5627 R(Customer VAT #)t
    f0
    622 R(: 123456)t
    f2
    177 X 80 D(Paris, )t
    5627 R(Currency)t
    f0
    351 R(: USD)t
    f2
    177 X 80 D(FRANCE)t
    5627 R(Billing Cycle Date)t
    f0
    676 R(: NOV 08 2012)t
    f2
    676 L 240 D(Page: )t
    f0
    240 R(1 of  2)t
    f5
    2662 L 247 D(BILLING ACTIVITY DETAIL)t
    177 X 95 D l0 4 lw 7554 0 ln
    14 D 7554 0 ln
    f2
    4135 R 97 D(Quantity/)t
    177 X 94 D(Event Code)t
    567 R(Event Description)t
    2305 R(Affiliate)t
    366 R(UOM)t
    942 R(Amount)t
    1152 R(Rate)t
    921 R(Charge)t
    812 R(Total Charge)t
    177 X 36 D 7554 0 ln
    14 D 7554 0 ln
    157 D(Activity ICA: )t
    f0
    498 R(14176  )t
    f2
    267 R(Name: )t
    f0
    267 R(Soci\351t\351 Financi\350re)t
    f2
    177 X 80 D(Collection Method: )t
    f0
    742 R(Clearing)t
    f2
    1894 R(Billable ICA: )t
    f0
    494 R(14176)t
    f2
    177 X 160 D(Service Code: )t
    f0
    556 R(KQ  )t
    f2
    160 R(Name: )t
    f0
    267 R(KQ)t
    f1
    177 X 75 D(2BE56457)t
    567 R(LUO TOTAL CARDS AT QUARTER END)t
    2737 R(Q)t
    1061 R(100)t
    965 R(20.00)t
    926 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 103 D(Total for Service: )t
    f0
    676 R(KQ KQ)t
    5541 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 160 D(Total for Collection Method: )t
    f0
    1085 R(Clearing)t
    5132 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 154 D(Total for Customer: )t
    f0
    765 R(14176 Soci\351t\351 Financi\350re)t
    5452 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 166 D(Total for Invoice: )t
    6217 R(2,000.00)t
    1026 R(2,000.00)t
    eop
    els
    %%Page: 2 2
    612 0 bls
    1 bop
    0 a
    f5
    c0 3432 X 5491 Y()t
    f6
    317 R 177 D()t
    f2
    177 X 146 D(Invoice ICA: 14176 Soci\351t\351 Financi\350re)t
    5627 R(Invoice #)t
    f0
    342 R(: 129990000000046)t
    f2
    177 X 80 D(abc)t
    5627 R(Customer VAT #)t
    f0
    622 R(: 123456)t
    f2
    177 X 80 D(Paris, )t
    5627 R(Currency)t
    f0
    351 R(: USD)t
    f2
    177 X 80 D(FRANCE)t
    5627 R(Billing Cycle Date)t
    f0
    676 R(: NOV 08 2012)t
    f2
    676 L 240 D(Page: )t
    f0
    240 R(2 of  2)t
    f5
    3007 X 247 D(BILLING ACTIVITY SUMMARY)t
    177 X 95 D l0 4 lw 7554 0 ln
    14 D 7554 0 ln
    f2
    77 D(Service Code)t
    567 R(Service Description)t
    6074 R(Charge)t
    425 R(Total Charge)t
    177 X 37 D 7554 0 ln
    14 D 7554 0 ln
    156 D(Activity ICA: )t
    f0
    498 R(14176  )t
    f2
    267 R(Name: )t
    f0
    267 R(Soci\351t\351 Financi\350re)t
    f1
    177 X 76 D(KQ)t
    567 R(KQ)t
    6077 R(2,000.00)t
    638 R(2,000.00)t
    f2
    177 X 157 D(Total for Customer: )t
    f0
    765 R(14176 Soci\351t\351 Financi\350re)t
    5840 R(2,000.00)t
    638 R(2,000.00)t
    f2
    177 X 240 D(Total for Invoice: )t
    6605 R(2,000.00)t
    638 R(2,000.00)t
    eop
    els
    %%Trailer
    eod
    end
    %%Pages: 2
    %%EOF

    You need to reencode the needed fonts to ISOLatin1Encoding to match the encoding used in your PS file.
    How to do this, see the PLRM, rd. edition, section "5.9.1 Changing the Encoding Vector" on page 349 ff.
    As the file states that is has been created by an application "idttex", you should file a bug report
    to the vendor of that application.
    Helge

  • Report S_ALR_87012000 Asset Register does not show correct values sums

    Hi,
    I've taken a look at S_ALR_87012000 transaction - Asset Register (Italy) after an Assets Data transfer and something strange happens:
    1-  the sum of column Depreciation for year is not correct. It is a little bit strange because the single assets depreciation for year is correct. The same problem is in report S_ALR_87011990  - Asset history sheet
    2- if I put  an asset number range or the asset class in the report selection screen the report does not show some of the assets included in the range or in the asset class.
    Could you explain me why? Is there some program bug?
    Thanks in advance
    Giovanna

    Hi
    If you are executing the reports for previous / future years - execute them as of last day of the fiscal year
    The execution for current year can have any date of the fiscal year for report execution
    BR,Ajay M

  • Flash Builder 4.6 code hinter problem - not showing some methods

    Hi All,
    I have a problem with FB code hinter. It does not show some methods on an object.
    To be exact I created a Date object and FB code hinter does not show .toDateString method (actually I it shows only one to string method - .ToString(), although according to docs there are more)
    When I use .toDateString method, code still compiles and work just fine, however method is not showing up in code hinter, which is really annoying..
    Anyone had this problem? If so, please, share some wisdom how to solve this thing.
    Thanks in advance.
    UPDATE:
    Here is some more info in my problem.
    I have tried to reinstall the application, but it did not help.
    So what I did was:
    * first I installed FB standard edition version 4.
    * I checked the code hinter and it worked. It showed .toDateString method.
    * I have purchased FB standard 4.5 upgrade.
    * I installed this upgrade, and boom the code hinter does not show the method...
    * Next I tried to create a project with Flex 4.1 sdk and then it worked - method was there. So the problem is with 4.6 sdk apparently...sucks...

    Hi, I have the same problem. I have a new FB 4.6 installation and it is my first FB installation. Do you have a solution already?

  • My Macbook Air does not show up on my network to any of my other computers, Other computers on my network appear and disappear, some shared folders are not accessible

    My Macbook Air with Lion does not show up on my network to any of my other computers (PC's) , even though it is connected to my wifi and does access the Internet. In addition, my other computers sometimes show up in Finder and sometimes they're not there. Sometimes they do show in Finder and when I click on them, I get "Connection Failed", other times, they connect. Also some shared folders on those other computers, which are PC's are not accessible, even though fully shared. My network is Apple Airport Extreme and works perfectly otherwise, including all PC's being able to see each other. Help would be much appreciated

    I got the same problem. I want to access my shared folder on my home windows7 from my MBA. Tried many suggestions on the web but all to no avail. I thought that should be very trivial. Maybe a Lion bug?

  • Lightroom 4 does not recognize some older JPG images (that Picasa and ACDsee show all right).

    Lightroom 4 does not recognize some older JPG images (that Picasa and ACDsee show all right).

    What is exiftool??
    From: Rob Cole [email protected]
    Sent: Saturday, March 30, 2013 5:35 PM
    To: shaibeilis
    Subject: Lightroom 4 does not recognize some older
    JPG images (that Picasa and ACDsee show all right).
    Re: Lightroom 4 does not recognize some older JPG images (that Picasa and
    ACDsee show all right).
    created by Rob Cole <http://forums.adobe.com/people/areohbee> in *Photoshop
    Lightroom* - View the full
    discussion<http://forums.adobe.com/message/5192327#5192327

  • [svn:fx-trunk] 13128: Fix for ASDoc tooltips does not show ASDoc for some functions

    Revision: 13128
    Revision: 13128
    Author:   [email protected]
    Date:     2009-12-21 13:46:32 -0800 (Mon, 21 Dec 2009)
    Log Message:
    Fix for ASDoc tooltips does not show ASDoc for some functions
    QE notes: None.
    Doc notes: None
    Bugs: SDK-24751
    Reviewed By:Paul
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24751
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java

    Welcome guy -
    Unless you are using Spry menus as a learning experience, you should move forward to a menus system that will display properly on the millions of portable devices that won't work with Spry which was deprecated 2 years ago.
    Many are using JQuery menus or pure HTML/CSS menus.
    If you wish to continue your Spry for learning experience, we'll be glad to assist; please let us know.
    By the way, your submenus are not showing because you need to add the red value to this rule in your vertical CSS
    ul.MenuBarVertical ul.MenuBarSubmenuVisible{
        width: 220px;
        left: 180px;

  • After install snow leopard, ical does not show the events of some calendars

    After I install snow leopard, ical does not show all the events, or simple does not show the events of some calendars that I created.
    Can somebody solve this problem? Is there some update for ical?

    Try the following:
    1 - Go to your user account home folder, and open the library folder within it.
    Look for the folder named "Calendars" and inside you might find a bunch of different folders with weird names. If they are there that means your calendars might not be lost.
    2 - Look for the file "Calendar Cache". That file might be corrupted. Trash it. You may want to save a copy of it elsewhere. Once trashed, re-open ical. This should force it to rebuild its library based on those folders with weird names you saw. Your calendars should be back. Good luck

  • I had clicked some pics on tour but without taking backup i restore my old backup and now photos are gone. I had even try i phone photo recovery but it does not showing those photos i want those pics so deadly help me.

    i had clicked some pics on tour but without taking backup i restore my old backup and now photos are gone. I had even try i phone photo recovery but it does not showing those photos i want those pics so deadly help me.

    pulkitpareekonline wrote:
    ... without taking backup i restore my old backup and now photos are gone.
    No Backup = No Photos... sorry.

  • Why some times jdeveloper does not show a coreect design view ?

    Hi
    thank you for reading my post
    why jdeveloper does not show a correct design view of jsf pages sometimes?
    It does not shows labels and ... , just show tag names like : form , ... ?
    here is a picture for this :
    1-incorrect page:
    http://www.flickr.com/photos/59086726@N00/217556594/
    2-correct page :
    http://www.flickr.com/photos/59086726@N00/217556595/
    I just closed and open the IDE and page designer shows incorrect pages
    thanks

    Also try this...go to the project properties for the View project. Look at the JSF Libraries and remove the two JSF libraries and then re-add them....this sometimes helps.
    Regards
    Grant Ronald

Maybe you are looking for

  • Upgrade from 4.6C to ECC6.0 - development quality and production

    Upgrade from 4.6C to ECC6.0 I have got three systems right now... Development(D1)     Quality(Q1)    Production(P1). These three systems need to be upgraded to ECC6.0 The recommended process is to copy D1 to a new temporary server(D2) and then upgrad

  • How to put Variable Name in Description dynamically

    Hi Experts, I have a structure in which I am restricting calender day by 0I_DAYS (period from and To), so that I can select the date range in variable screen. Now my requiremnet is to pass the selected date in one of the Column's description dynamica

  • How can i get my iphone 4s to stop disconnecting from data

    My iPhone is always stopping data, how can I get it to stay connected?

  • IMAGE IN ALV CELL

    Hi Guys, I have inserted image element as cell editor in alv column. But image is not coming. Check the below code and let me know where i did mistake.      DATA: LR_IMG3 TYPE REF TO CL_SALV_WD_UIE_IMAGE.     DATA: LO_COLUMN3 TYPE REF TO CL_SALV_WD_C

  • Computer seems to be overheating

    While working on the computer I started smelling something that smelled like plastic burning - then it started smelling like something electrical. Some others in my office came in because the smell had filtered through the office and we determined th