How do i format my code in the forum?

I cant remember?
someone sent me a link... before
its something like [p] [p] but that isnt correct

To be fair, the design guidelines for this site seem to include the rule: "every link pointing to useful information that will show up again and again in forum questions, must appear only at the end of a long paragraph of tedious boilerplate copy"

Similar Messages

  • How can I format a field in the form creator?

    How can I format a field in the form creator? It's putting the same text in all the fields within a table. I want each field within the table to have different text. As soon as you click out of the table, all the text is the same.
    I even changed the fields from a text box to a drop-down list so a person can make their selection, which will be a quantity from 0-9. There are two of these such fields. You make your selection in each, click off the table and both fields show whatever I selected in field 1. The original Qty I selected in the bottom field was a 5 but it changed it to whatever is in the top field on it's own. I've added a screen shot.

    This behaviors usually happens when you create the fields but  a copy paste command from one of the fields. The copy paste command assumes that your intentions is to maintain a copy of the field in two separate locations (e.i, a form field  "company name" printed in each and every page of a multi-page form document.
    Go to the properties fields of each field and make sure  to assign unique form field  names.

  • How do i format a MMC in the PC?

    How do i format a MMC in the PC?

    In a card reader. You can get them at any PC store. Best to get a USB 2.0 compatible version for speed of formating and file loading.

  • How to Mapping of company code to the billing units

    Hi,
    Please help me how to Mapping of company code to the billing units , iam doing the rollout project.
    Thanks
    Mustafa

    Hi Mustafa,
    External billing (A): Billing is controlled in the R/3 System.
    The company code is determined by the accounting adapter which calls
    the R3 system. You define the company code to be transferred in
    Customizing under:
    Customer Relationship Management
    Master Data
    Organizational Management
    Cross-System Assignment of Organizational Units
    Assign Company Codes and Business Places to Billing Units or
    Assign Company Codes to Billing Units.
    Also you can check attached note 717476 for further information.
    Cheers,
    Brian.

  • How to speed up my code inside the for loops,

    how to speed up my code inside the for loops using c# WinForm.

    Hi  John,
    Please take a look at the reply from Wyck in the following thread.
    How to speed up for loop?
    His answer is very comprehensive.   Thanks.
    Best regards,
    kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I write HTML code in this forums

    Sorry but I didn't know where to post this thread.....
    How can I write HTML code in this forums?

    Hello,
    Every piece of code in your post should be wrapped with the forum tags [ code] and [ /code], without the blanks.
    In case of the <a> tag, that is not enough. In this case, you have several options. The most elegant one is to use the entity name for the less-then sign - & lt; - without any spaces. Other options is to add a space between the less-then and the ‘a’ character (and make a note of it) or change the less-then character with a left bracket one.
    When posting code, you should always use the forum preview option, just to make sure the forum software “understood” your code correctly.
    Hope this helps,
    Arie.

  • How to protect JSP source code on the Server Side ?

    I am new on JSP. I Already know about various Web and Desktop technologies but is the first time on JSP. I know ASP for example.
    Well, about .NET platform, it protects my source code on the server, the source code is compiled and on the server, only the compiled file are installed, my source code stay with me...
    About JSP, how it works about ? Is possible to hide my source code too ? What the technique to hide the codes ? I need to prevent access to my source codes...
    Roberto

    roberto.novakosky wrote:
    About .exe files, do you know if a java class is more easy or dificult to do reverse engineering ?Depends on who your enemy is. If it's for example a hacker with a lot of C knowledge but zero of Java knowledge, reverse engineering .exe would be easier than .class. If one was interested, one would always take time to learn how to decompile the one or other. Making files secure is a waste of time. It's always "hackable".
    If there was a proof of concept, no one major software vendor would have had so much problems with piracy and cracks/keygens. Think about it once again. It's simply impossible. Just have a clear EULA and actually make work of it whenever you discovers if someone breaks your EULA.
    I was thinking about, the .JSP can be converted to servlet .java, and converted to .class, this way hide the source code.Once again, one could still decompile it (or reverse engineer, so you call).

  • Java SAX parser. How to get raw XML code of the currently parsing event?

    Java SAX parser, please need a clue how to get the raw XML code of the currently parsing event... needed for logging, debugging purposes.
    Here's and example, letting me clarify exactly what i need: (see the comments in source)
    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
         //..Here... or maybe somewhere elsewhere I need on my disposal the raw XML code of
         //..every XML tags received from the XML stream. I need simply to write it down
         //..in a log file, for debugging purposes, while parsing. Can anyone give me a suggestion
         //..how can i implement such logging while the SAX parser only returns me the tagname and
         //..attributes. While parsing I want to log the XML code for every tag in
         //..its 'pure form', like it is comming from the server directly on the
         //..socket's input reader.
         if ("p".equals(qName)) {
              etc...
    }Than you in advance.

    YES!
    I've solved my problem using class RecordingInputStream that wraps the InputStream
    here is the class source code:
    import java.io.ByteArrayOutputStream;
    import java.io.FilterInputStream;
    import java.io.InputStream;
    import java.io.IOException;
    * @author Unknown
    class RecordingInputStream  extends  FilterInputStream {
         protected ByteArrayOutputStream sink;
        RecordingInputStream(InputStream in) {
            this(in, new ByteArrayOutputStream());
        RecordingInputStream(InputStream in, ByteArrayOutputStream sink) {
            super(in);
            this.sink = sink;
        public synchronized int read() throws IOException {
            int i = in.read();
            sink.write(i);
            return i;
        public synchronized int read(byte[] buf, int off, int len) throws IOException {
            int l = in.read(buf, off, len);
            sink.write(buf, off, l);
            return l;
        public synchronized int read(byte[] buf) throws IOException {
            return read(buf, 0, buf.length);
        public synchronized long skip(long len) throws IOException {
            long l = 0;
            int i = 0;
            byte[] buf = new byte[1024];
            while (l < len) {
                i = read(buf, 0, (int)Math.min((long)buf.length, len - l));
                if (i == -1) break;
                l += i;
            return l;
        byte[] getBytes() {
            return sink.toByteArray();
        void resetSink() {
            sink.reset();
    } Then here is the initialization before use with SAX:
    this.psock = new Socket(this.profile.httpServer, Integer.parseInt(this.profile.httpPort));
    this.out = new PrintWriter(this.psock.getOutputStream(), true);
    this.ris=new RecordingInputStream(this.psock.getInputStream());
    this.in=new BufferedReader(new InputStreamReader(this.ris));
    try {
         this.parser = SAXParserFactory.newInstance().newSAXParser();
         this.parser.parse(new InputSource(this.in),new XMLCommandsHandler());
    catch (IOException ioex) {  }
    catch (Exception ex) {  }Then the handler class looks like this (it will be an inner class, so you can access ris, from the parent class):
    class XMLCommandsHandler extends DefaultHandler {
         public void startDocument() throws SAXException {
              //...nothing
         public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
              // BEGIN - Synchronized logging of raw XML source code in parallel with SAX parsing :)
              byte[] bs=ris.getBytes();
              logger.warn(new String(bs));
              ris.resetSink();
              // End logging
              if ("expectedTagThatTriggersMeToDoSomething".equals(qName)) {
                   //...Do smth.
    }Edited by: patladj on Jul 3, 2008 12:30 PM

  • How do I format bullet lists in the Notes tab?

    I have a transcript of the audio narration in the Notes section of my source PowerPoint slides. When I publish with Adobe Presenter, these transcripts appear in the Notes tab in the published course. However, when I publish my course, any bullet lists that I may have formatted in the Notes view in PowerPoint, do not format correctly in the published course. The text of the bullets is there, but the bullet formatting is missing.
    I am using Adobe Presenter 8, PowerPoint 2007, and I'm running on Windows 7 Professional. I have tried saving my PowerPoint file in the PPTX format and in the older PPT format. Neither retains the bullet-list formatting in the published course.
    Is there a trick to getting lists to format correctly in the Notes tab?
        -Ray

    Hello,
    Can you please email us the sample of your presentation (or the entire presentation) which contains those slide notes.
    We will check it on our systems and get back to you with a workaround/solution.
    Please email the presentation at [email protected]
    Regards,
    mukul

  • How to insert a script code before the /head tag?

    Would like to insert a <script> code inside all the pages of my website, and it has to be placed before the </head> code.
    Can I manage this with muse? Else, each time when I export the site as HTML, I need to open the updated file(s) and copy and paste again the SCRIPT code in the HEAD.

    Adding scripts to the head section of your documents is not currently supported in Muse, however it is planned for future versions of Muse.
    You can add links for scripts using Object -> Insert HTML, but they will be inserted roughly at the position of the HTML page item.

  • Paste code on the forum

    Hi,
    This question is not related to this forum, per se, but many times I face difficulty in asking question where I need to paste some sample code on this forum. How to paste the code so that it gets formatted properly rather than just seeing unformatted code on the screen which makes it difficult to read? Any html tag to be used?
    Thanks

    check this for more format options:
    http://wikis.sun.com/display/Forums/Forums+FAQ
    Edited by: M.Jabr on Apr 6, 2011 1:36 AM

  • How to edit a post here in the forum?

    I have noticed several posts in which the original author of the post went back into it to edit it.
    How is that done? There have been many times I wanted to go back and edit.
    Thank you.
    Lorna in Southern California

    Jabberwock, the experiment went like a slide on ice.
    I did say that I would return in 15 minutes to edit a second time, but I got tied up in other things and returned to my office in about 40 minutes. I clicked onto my post as it existed in the forum list, but when it came up, it did not have that icon of the pen, so I figured that too much time had elapsed and I just let it go.
    Lorna in Southern California
    Edit: Oh oh. I think I discovered what might have happened. When I sent this message to be posted, a copy of the message remained "behind." THAT message had the pen icon on it. So my mistake was to go to the forum topic list for my message rather than to return to that particular page that acts like a holding tank for messages that I recently posted.
    I might be way off base here, and if I am I hope someone clarifies so that anyone who is just starting out won't be misled by what I say here.....
    Lorna in Southern California
    Message was edited by: Lorna from Hawaii

  • How should I write my emails to the forums?

    When you write emails to the forums to start or respond to threads, you need to watch out for some potential problems in your message content.
    Do not use square brackets in your message or subject. Square brackets are interpreted as command codes and can lead to unexpected results, including unreadable messages*.
    Do not end a line in "wrote:". A line that ends in "wrote:" will be seen as a quoted message and from there onwards all content will be deleted. If you are used to classic quoting this will even result in a completely empty message.
    Do not use a sequence of 5 hyphens ----- or underscores _____ as they will be removed together with everything after them.
    If you quote messages with greater than signs ">", only quote one level deep and make sure there is a space after the greater than sign.
    Do not append your signature to your email. The only people interested in your address, company affiliation, telephone number and email address are spammers and people who would like to steal your identity.
    For best results use a 998 character line length limit in normal text, and a 72 character line length limit in quoted text.
    * It is possible to use some very specific command codes in messages. See this document for instructions. Please note that these command codes are scheduled to change in a future update of these forums.

    Target the LabVIEW RT Target - "switch execution target", then open the VI.  When you are targeted to a specific platform, your open VI runs there. 
    Press go, and it is running on your target. 
    You may want to look on the NI website for some RT tutorials to help you get started. 
    http://www.ni.com/support/labview/real-time/
    Preston Johnson
    Principal Sales Engineer
    Condition Monitoring Systems
    Vibration Analyst III - www.vibinst.org, www.mobiusinstitute.com
    National Instruments
    [email protected]
    www.ni.com/mcm
    www.ni.com/soundandvibration
    www.ni.com/biganalogdata
    512-683-5444

  • How can I change my password to the Forum?

    I have a hard time remembering my password because it was generated. Is there any way I can reset it to something I can remember?

    Hmmmm. Tricky question.
    To find the answer, I
    1) Clicked on the FAQ link (upper right side of my screen);
    2) Clicked on the "I have OTN login or password problems. What do I do?" in the FAQ;
    3) Clicked on the "How do I change my password?" link in that second FAQ.
    and read
    How do I change my password?
    To change your password, make sure you are logged on and click the "Account" link in the upper right side of the page. This will bring you to the main registration page where there is a "Change Password" link in the upper right side of the page under the "Log out" link.
    BUT the 'Account' link does not show up on the Forum. I needed to click on the "Oracle Technology Network" logo in the upper left side to get to the page that shows the Account link.
    By the way - this kind of question is best asked in the Community Feedback (No Product Questions) forum found at
    http://forums.oracle.com about 1/2 way down the page, center column.

  • How can I execute certain code once the button on stake is hit at runtime? (in Flash CS4(AS3))

    Hi
    I am trying to figure out how to execute code once a button_btn is hit on stage at runtime.
    Thank you for help and tips!

    You can also try to create an event listener for the button itself.  (In as2.0 it was onClick or onPress or something to that effect, now I'm not sure what they are syntaxed as but there are event listeners for buttons which "listen" to see if the button has been pressed.  Mouse Events are good because it makes sure that the mouse is actually performing the action.  Don't know about accessibility with Mouse Events though since you can use a Tab key to direct input of buttons so try the Button event listeners.

Maybe you are looking for

  • How do i sync itunes on 2 computers?

    i have two Windows PC's sharing the same account. I have turned ON Home SHaring on both pc's, however, they do not sync and each have a different music library.

  • ITunes syncing: unknown error (-50)

    Whenever I plug in my iPod Shuffle to sync my music a pop up comes up saying 'iTunes could not copy {song name} to the iPod {iPod name} because an unknown error occured (-50).' It happened after it asked me something to do with iTunes Store purchases

  • Windows doesn´t recognize ipod error 1415

    iPod prior Mac recognized now intended for Windows can´t be updated, it shows error 1415, When I connect this windows xp Averatec shows there is a new device, but then it fails to recognize it. some help please, Thank you

  • SOAP in XI: message use="encoded" and binding/@style="rpc"

    Hi Hope somebody who is familiar with XIs SOAP implementation could give the answer for my questions. Problem is that the SOAP server is not working but I am afraid that the reasons are not really simple. In our company we have to provide some SOAP s

  • How to create a discrete job on condition that build-in-wip attribute is No.

    two or three times a year, jobs are created in the Discrete Job  form although build in wip attribute is No. (never created from MRP) i have no idea how the job could be created... i tried several times at same condition, but i couldn't. does anyone