How can create color table for "write bmp file.vi"?

i want to create a color table for a 8 bit bitmap.The color table is the input of "write bmp file.vi". how can i make it?
thanks!

> i want to create a color table for a 8 bit bitmap.The color table is
> the input of "write bmp file.vi". how can i make it?
> thanks!
>
There is a color control on the front panel numerics palette. A color
in LV is a four byte xRGB formatted number. So you can make an array of
the color numerics and set them by hand or format the numbers however
you like. If unwired it will use the LV color palette which is pretty
much the HTML palette.
Greg McKaskle

Similar Messages

  • How can I create a black and white table for Write BMP File.vi?

    I just want to create a black and white array to create the picture in B'n W

    You can use this VI, which outputs an 8-bit Greyscale Color Table.
    Good luck,
    Jim
    Attachments:
    8-bit_Greyscale_Color_Table.vi ‏11 KB

  • How to create internal table for a structure in BSP

    hi ,
    I have created a Structure in BSP.I want to create an internal table for that Structure. But in my coding ie.
    <% data: begin of itab_1 .
                     include type zuvendstr.
                     data:end of itab_1.
                     data wa_str like line of itab_1.
                     loop at itab_1 into wa_str. %>
                    <tr>
                     <td><%=wa_str-name%> </td>
                           <%endloop.%>
    In this zuvendstr is Structure ,wa_str is workarea and itab_1 is an Internal table.But it is showinng an error that itab_1 is unknown.But we cannot define internal tables for an Structure in Page Attributes.So,please resolve how to create internal table for Structure in BSPS

    Hi,
    You can define itab_1 like this (assuming zuvendstr is a structure type):
    DATA: itab_1 TYPE TABLE OF zuvendstr.
    Regards,
    Tanguy

  • How can create a table in sap script?

    Hi,
    How to create a table in the sap script.i Have to use table in the main window with 11  rows and 3 columns. can any one send sample code. Any ideas?¿
    THKS 4all.

    Try and check on the below logic....
    1. write -
    2. write headings with '|' at start and end as well as the field separator.
    3. write -
    4. similar to step two write the data with pipe separators.
    5. write -
    regards
    Anurag

  • How to create PLD_Items table for Crystal Reports

    Hi experts,
    Im trying to use the variable 130 for a report but in crystal reports, in some SAP Standard Reports the table PLD_Items appears, my question is how to create this structure for my report, i know that is an ADO.NET connection based on an XML file, but i dont know from where i can take this value can any one help me please?
    Best Regards
    Dave

    If this is CR for B1, please post to SAP Business One Application
    Alternatively see the SCN Site Index for the correct SCN Space for your product / component.
    - Ludek
    SCN Moderator

  • How to create a password for the pdf file

    In Adore Acrobat XI, how to create a password for the file? The help states going to Tools Menu and clicking on Protection tab - but there is no such option. In the file - properties - security screen, it shows the security details but does not allow to edit it.

    I think you may be mixing up two different products: Adobe Reader (free), and Acrobat ($$).

  • How can we find tables for master data transactions

    hi
    could anybody tel.............
    when we create a customer the information is updated in structure RF02D
    some tables like kna1 are updated.
    how can we find these tables..?

    Hi Kalyan,
    This is how you can find any transparent table you want.
    1. Put your cursor in any of the  fields of the customer screen and hit <b>F1</b> on your keyboard. Next Click on the "<b>Technical Information</b>" icon. Under "<b>Field Data</b>", this would show you for example structure <b>RF02D</b> and field <b>KUNNR</b> (Customer Number), if your cursor was in the Customer Number field. Copy the field KUNNR.
    2. Next, open another session and execute transaction code <b>SE80</b>. On the Menu Bar, click "<b>Environment -> Repository Information System</b>". Open up the folder "<b>ABAP Dictionary -> Fields -> Double Click on Table Fields</b>". Paste your Customer Number field name (KUNNR) in the "<b>Field Name</b>" and Execute. This would show you all the transparent tables where the Customer number is stored.
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • How to create Check table for Field Maktx

    Hi Experts,
    I am create one ztable with fields Mandt, Matnr, Maktx, Type1 and Type2 etc.
    I need a create a check table for field MAKTX.
    If i give material number the its the material description also.
    Thanks in Advance,
    Purnaneelu.

    Hi,
    Actually i am create one ZTable with fields Mandt ,matnr, maktx, type1,type2 and type3
    Now i am entry the data for matnr,type1,type2 and type3 .
    Now i am going to TCode SE16n material is not appears, but the requirement is shows the description also
    STOP USING I AM in each and every sentence...and try to correct your english...so that people can understand your problem easily.
    Hope this suggestion will help you going forward at the time of posting your question at SDN.
    Wram regards,
    Abhishek

  • How can create air app for version 1.5 with cs5?

    How can be created an application for the latest Adobe AIR version ( 1.5 ) with Flash CS5. I have a licensed cs3 and I consider to buy cs5. I want to create an applications for the stable version of Adobe AIR.

    I posted about this last week. This should help:
    http://forums.adobe.com/message/2829283#2829283

  • How can create a MBean for LoginServlet?

    hi all,
    i am new to JMX concepts.
    i would like to find the response time for a login (servlet & jsp) process using JMX MBean.
    anybody have material to do this plz give me.
    Thanks
    Rams

    hi ,
    i solved
    here i am posting that steps
    JMX Interface definition
    ResponseTimeCalculatorMBean interface defined as follows.
    public interface ResponseTimeCalculatorMBean
    Note: MBean interface name must be ended with MBean.
    JMX MBean Implementation
    ResponseTimeCalculatorMBean interface implemented in ResposneTimeCalculator.java class.
    Implementation class should be the same name as MBean interface name except the suffix 'MBean'.
    public class ResponseTimeCalculator implements ResponseTimeCalculatorMBean
    Attributes for ResponseTimeCalculatorMBean.
    /*operations implementations*/
    Registering with MBean Server
    public class LoginResponseTimeService extends ResponseTimeCalculator implements MBeanRegistration
    MBeanServer mbs;
    ObjectName name;
    public void start() throws Exception
    //write custom code here to register custom Mbeans
    mbs= ManagementFactory.getPlatformMBeanServer();
    name= new ObjectName("mbean:type=ResponseTimeCalculatorMBean");
    mbs.registerMBean(this, name);
    /*MBeanRegistration interface implementations*
    Now the JMX MBean service has been created.
    JMX custom MBean with JBOSS Application Server
    To monitor login process��s response time using JBoss Application server's jmx-console or JConsole utility, do the following steps.
    Create an archive for created MBean classes (.class files)
    eg.jar -cf ResponseTime.jar *.class
    Set class path for ResponseTime.jar in "D:\jboss-4.2.0.GA\bin\run.bat" or copy and paste the ResponseTime.jar into D:\jboss-4.2.0.GA\server\default\lib
    Configure MBean service name in JBoss-service.xml as follows
    <mbean
    code="LoginResponseTimeService"
    name="mbean: service=LoginResponseTime">
    </mbean>
    Run the server.
    Now you can monitor the response time from http://localhost:8080/jmx-console.
    i hope this will help to new guys
    Regards
    Rams
    Edited by: Ram_Rengasamy on Sep 20, 2007 12:48 PM

  • How to create a link for download a file in text format

    Hi expect,
    I want to create a link when I link that link a text file should get download which i'm specified in jsp page. I tried by using hyper link it didn't get downloaded just it opened as it is. How can I resolve the problem.

    Swati.S wrote:
    in href provide another jsp name or servlet and pass filename as request parameter to this jsp or servlet. In called jsp or servlet set content type to application/forcedownload.Yes, that works (usually), but, IMHO, is nothing but a hack that you shouldn't use (and I could care less how often it is currently used in varying hacked scripts, such as this bogus force-download PHP script I've seen). That is an invalid MIME type (or at least unofficial/non-standard mime tye that most browsers will have no association for), so, since the browser doesn't know what to do with it, it'll ask the user what to do. And even that is not 100% certain. All I need do is create a mime-type to application association for that MIME type and, guess what, it doesn't work again (at least not the way you intended).
    The server should not be concerned with what the client does with the file linked to.

  • Index - How to create an index for multiple InDesign files?

    Hi everyone,
    I'm using InDesign CS2 to create a 250 page catalogue. Most of it is finished now, and I've come to creating the index.
    The catalogue is spread over about 10 InDesign files. How do I create an index for this? No paragraph styles were set up when it was started, but there are character styles.
    I've done some searching - does it need to be booked so I Can index? And can I book it without paragraph styles?
    (I've only been using InDesign for about a year, mostly self taught.)
    Thanks in advance :)
    Naomi

    Creating a book from your files should be no problem at all. ID does
    i not
    synchronize styles across documents -- unless you order it to! (That's what the checkboxes at the left of the book documents are for. Do Not Use, in your case.)
    The Index function itself is book-savvy, but you might want to search this forum for a few recurring problems.

  • How can I enable coockies for localhost and file://?

    I've a web form used to perform various computation in javascript and display the results. The form use cookies to store usefull information, under desktop firefox I actived coockies for file:// but I can't find how I can do it for the mobile edition...
    do html5 localstorage can solve the issue? how can I enable them? I fully understand the risk of having local file cookies enabled...

    thank you, I must find something else so I can restrict them from others.

  • How to create a method for reading a file

    i tried to make it as static method for reading a file and
    then to return string
    is this code correct?
              public static String fileMaterial(String fileName)
                   fileReader = new BufferedReader(new FileReader(fileName));
                   info = fileReader.readLine();
                   while(school != null)     {                    
                        return info;
                        info = fileReader.readLine();

    I created a class you might want to look at. I come from a world of C and love fgets() and other FILE stream functions. I created a class that uses the Java I/O buts to the calling application behaves like fgets and such. The block of code where I do the calling in the calling program even looks like C. In my class I capture almost all errors and set error buffers to the errors. The calling program looks at the return to see if it succedded or errored.
    BuffIO new = BuffIO.fopen("fiilename", "r");
    String s;
    if((s = new.fgets()) == null)
    System.err.println("error reading file: " + new.ferror());
    That would be waht the calling program does

  • How can I find tables for LOCK in ko02 ?

    Hi everbody .
    I want to learn a table . in the ko02 screen  EDIT --> LOCK --> SET . but I dont know this table field.
    in the set locked to data which table we use =?
    thanks reply.

    This menu option set a status to the order, the table is JEST "Object status" and JCDS "Change Documents for System/User Statuses (Table JEST)", look alson at JSTO "Status object information" - use the object key (AUFK-OBJNR) to access the data.
    - There is a conversion exit for those fields (Look at TJ02T System status texts and TJ30T Texts for user status
    - Look at FM STATUS_TEXT_EDIT to convert data of JEST into the two text fields displayed
    Regards,
    Raymond

Maybe you are looking for

  • Problem with adding new field to the mass change screen in FBL5N

    Hi, We have a problem with adding the field XREF3 to the mass change screen. We followed steps described in the SAP Note 640908, but the result is that when we try to mass change some documents in FBL5N and enter some values in the mass change screen

  • 10.2.0.4 to 11.2.0.3 Linux 64bit new hardware for primary and standby

    Hi we have 10.2.0.4 on Redhat 64bit we need to upgrade to 11.2.0.3 new hardware 64 bit we can afford 12 hours downtime , 600G DB , the DB have a physical standby my steps are:- 1- leave the primary 10R2 running 2- restore a backup to the new hardware

  • 3750x stack issue adding additional unit

    I have a 3750X stack with 2 48 port members that have been up and running for over a year without issue. I'm trying to add a new 24 port 3750X. I've made sure the priority is correct, and I've added a provision for the new member in the stack. they a

  • "device tracking limit 2" + ip alias == only one IPDT binding

    When I turn on ip device tracking, then set the tracking limit to 2 on a port, then connect a host that is using an ip alias address (same mac, different IP a-la "ip address secondary") then there is only one IP address entry under "show ip device tr

  • Cisco ASA - BGP or OSPF support on Multicontext Firewall?

    Hello Forum, I would like to know why is the limitation of Cisco ASA in multicontext mode that it is not able to run routing protocols like OSPF, BGP? if I see SRX firewall, you can cut that virtually and can configure BGP, OSPF routing instances wit