PHP with JAVA

I was working on one of the most common examples of getting system date, system property etc by calling Date and System classes of java from a PHP script. I have set up apache as the webserver on RedHat linux 7.2. Compiled PHP for java and i believe its properly compiled since it doesn't give error like "Fatal error: Cannot instantiate non-existent class:"
When i try to access the script using the browser, the script itself is displayed instead of the output of the script.

Is the problem with java or php?
Check your apache.conf (or httpd.conf) settings.
Find the lines and remove # if any.
LoadModule php4_module libexec/libphp4.so
AddModule mod_php4.c
AddType application/x-httpd-php .php
For further help try php lists.

Similar Messages

  • Integrating PHP with Java

    Hi
    Is it possible to retrieve the session attributes in PHP, that are set in JSP?
    My requirement is as i login ,i shud be redirected to a PHP page and in that page i need to access the session attributes which i set on authentication.
    Any help is greatly appreciated.

    I think you'd have to have a back door to do that. Basically the only thing that your PHP and Java will have in common is the session id that will come back in a cookie or a URL rewrite. Something on the Java side would have to present a page or an API or something to allow the PHP to get all of the variables.
    But this sounds like a horrible hack. I'd encourage something easier like have the Java side put the stuff you need into a database or a flat file or something that is more naturally shared. I could see a database table that has the session id as the primary key and has all of the other things you need in it.

  • Issue with Java - PHP interoperability

    Hi,
    There are some converts written in PHP that can take raw wikipedia data and output a good HTML. I wanted to make use of these in my Java code.
    So in my Java Web App, I wanted to run the PHP parser, get hold of the InputStream and push it to my ServletOutputStream.
    Code Snippet:
       String command="php testparser.php Anarchism.wikimarkup";
       proc = Runtime.getRuntime().exec(command);
       InputStream in = proc.getInputStream();
       InputStreamReader isr = new InputStreamReader(in);
       BufferedReader br = new BufferedReader(isr);
       String line = null;
       while ((line = br.readLine()) != null) {
         System.out.println(line);
       }But the problem here is that the PHP Process never stops and hence the Buffer never ends. THe program is waiting in infinite loop in readLine().
    Please let me know if anyone has tried this and whats a better way to handle interoperability between PHP and Java.
    Thanks,
    Phani

    Phanikumar_Bhamidipati wrote:
    Yeah, I had a look at the document. But as per my understanding, the way the PHP engine runs is different from normal execs. I don't see how it can 'run different' and in my experience it doesn't. PHP sends output to stdout and stderr and reads from stdin. When PHP terminates it will close stdout and stderr and, if you have followed the recommendations in the reference, your readLine() will return 'null'.
    Because the same code ran fine when I automated unzipping a set of files using "bunzip2" command.If you read the article it explains a possible reason for this BUT until you implement the recommendations you will not know what is wrong.
    >
    I tried using Process.waitFor() method as well, but the result is same (Infinite Loop).This almost certainly is nothing to do with Process.waitFor() and probably everything to do with buffers filling (probably stderr).
    Until you post the code with the recommendations implemented that exhibits the same blocking problem it is a waste of time anyone responding further.

  • Php with xsl on Sun Java Web Server 7.0

    Hi anyone,
    i installed php as nsapi via phppack. Now i need xsl support in php. I've tryed to compile php with the following line (php 5.2.6):
    ./configure with-nsapi=/export/netscape_71 enable-force-cgi-redirect with-gettext with-zlib --with-xsl=/usr/lib64/php5/extensions
    magnus.conf, obj.conf and mime.types are assimilate to this article:
    http://developers.sun.com/webtier/reference/techart/php2.html
    After compiling, i copy the libphp5.so in the .plugins/php/ dir an restart the webserver.
    He stops with this message:
    failure: CORE2253: Error running Init function load-modules: dlopen of /export/netscape_71/plugins/php/libphp5.so failed (/export/netscape_71/plugins/php/libphp5.so: wrong ELF class: ELFCLASS64)
    failure: server initialization failed
    What's going wrong?
    How i get xsl Support on Sun Java Web Server?
    thanks!

    essential wrote:
    ./configure with-nsapi=/export/netscape_71 enable-force-cgi-redirect with-gettext with-zlib --with-xsl=/usr/lib64/php5/extensionsYou are pointing to 64-bit library path. Change it to 32-bit library path.
    failure: CORE2253: Error running Init function load-modules: dlopen of /export/netscape_71/plugins/php/libphp5.so failed (/export/netscape_71/plugins/php/libphp5.so: wrong ELF class: ELFCLASS64)
    failure: server initialization failedThis means that it expects a 32-bit library but it found a 64-bit one.

  • How to get php content with java ??

    i have made a php file what will display a number,
    here's a example
    <?php
    if ($action == "answer"){
    echo "18274926";
    ?>
    no i want to get the number with java
    so here's my java code
    import java.io.*;
    import java.net.*;
    import java.util.Date;
    class URLConnecties
        public static void main(String args[]) throws Exception
            int teken;
            URL url = new URL("http://www.gamer.mineurwar.nl/net/javachallenge.php?command=DaTe");
            URLConnection urlconnection = url.openConnection();
            System.out.println("Type inhoud: " +
                urlconnection.getContentType());
            System.out.println("Datum document: " +
                new Date(urlconnection.getDate()));
            System.out.println("Laatst gewijzigd: " +
                new Date(urlconnection.getLastModified()));
            System.out.println("Document vervalt: " +
                urlconnection.getExpiration());
            int lengteinhoud = urlconnection.getContentLength();
            System.out.println("Lengte inhoud: " + lengteinhoud);
            if (lengteinhoud > 0) {
                InputStream in = urlconnection.getInputStream();
                while ((teken = in.read()) != -1) {
                    System.out.print((char) teken);
                in.close();
    }if you change the url ro a .html file it displays the code correctly(source),
    but when trying to get the content of a php file (the number)
    it says that there is no content from the php file
    yhe source of the original php file what's in the code can be found at
    www.gamer.mineurwar.nl/net/javachallenge.txt

    The 'content' is generated dynamically by a PHP script so the "content lenght" can't be known in advance by the server. For this reason connection.getContentLenght() returns -1; it doesn't mean that there is no content, only that it can't be known how much there will be.
    To solve the issue, remove the if statement from around the while-loop:// if (lengteinhoud > 0) { DELETE THIS LINE
    InputStream in = urlconnection.getInputStream();
    while ((teken = in.read()) != -1) {
        System.out.print((char) teken);
    // } and this too

  • Never programmed with Java

    Hello
    I have never programmed with Java, and dont know, what i can do, I use PHP, but, i am only a novice at it.
    I was wondering, is it possable to get data from a page, and put it into an image? if there is no data from the page, it will ask for the data to be added, and this will update every so often?
    Also, Most of you know about google maps, where you can search for something, well, can i do this same thing in java, have a map, not of the earth, but for a game, and make it easy to add different parts, so that we can search for it, and people can find it easy to look for what they are looking for?

    I think Google Maps is programmed in JavaScript using AJAX (short for Asynchronous JavaScript and XML) and is what as known as a web application. Google has released an API (still in beta) for working with Google Maps. The webpage for this API is http://www.google.com/apis/maps/. More about the development facilities Google provides can be found at http://code.google.com/.
    I've never read the source code to Google Maps before (a lot of which is available by just viewing the source code of the Google Maps webpage, which can be done by clicking, View > Source in Internet Explorer and View > Page Source in Mozilla Firefox), however I don't think it is a terribly complex application (this does not mean, however, that the source code is easy to read). I think the way it works is by requesting individual images as needed from the Google server and piecing them together on the client side (i.e. in the browser). Basically what you would need to do to use their existing code is to replace all requests made to the Google server with requests to a server of your own and have the server return the corresponding images. This might not be particularly easy to do.
    In my opinion, a better approach is just to write your own custom application (probably in Java) which simply mimics the behavior of Google maps, except with your own custom images. This way, you don't have to reverse engineer an entire web application before beginning to write one.
    Writing your own application for this purpose is not as difficult as it sounds, especially not in Java. Once understanding the basics, you will not be too far off from being able to write your application.
    Let's start with the most basic program (this program would be located in a file called Program.java):
    public class Program {
       public static void main(String[] args) {
    }This program simply starts, does nothing, and exits. I will explain this piece of code line by line, but first, I would like to gauge how much you already know to figure out how best to explain this. Have you used classes in PHP before?

  • How can I compact a MSAccess database with java?

    Hi.
    I have a question (Please Help!!!):
    How can I compact a MSAccess database with java-jdbc? Is it posible?
    Thanks

    MS Access database has a max length limitation of 2.14GB for Access 2000( 1.07G for Access 97), and won't recycle basically space for update/delete sql so tha it's a good idea to use MS Access database for program, which need update/delete frequent ly data. The programmers of HXTT Access(www.hxtt.net) are writing code for CREATE TABLE/DATABASE sql now. If you need a pure Java solution for PACK TABLE/DATABSE urgently in your project, you should send such a requirement to the Support page of www.hxtt.net so that they can schedule complementing such a fucntion. Otherwise, you should pack your databae manually or visit C++ code for Compact an Access Database Programmatically at
    http://www.codeguru.com/Cpp/data/mfc_database/microsoftaccess/article.php/c4327/ , or use Easy Microsoft Access MDB MDE Compactor at http://www.easyhr.com.au/software/easy_mdb_mde_compactor.htm.

  • In program written with Java Swing, I can't input Chinese

    In program written with Java Swing, I can't input Chinese.
    But if I change my language first, then change the input method tu U.S, open the Java Swing application, finally I can input Chinese. I want to know how to fix this bug.
    My OS is Mac OS X 10.6.8.
    At the JDK version 1.6.0_29, I can input Chinese friendly in Java Swing applications. But after 1.6.0_31, I can't do it anymore. The input methods can input Chinese in other non Java Swing applications so the problem must create by JDK or JRE's Swing part. What's the different between 1.6.0_29's Swing and 1.6.0_31's ? Why ? I heard that Java Swing apps not support Chinese input methods seens 2009... Why haven't fix these yet?

    Chazza wrote:
    Perhaps you need to change your keyboard layout in Xorg?
    https://wiki.archlinux.org/index.php/Ke … ard_layout
    Thanks for your answer!
    I have tried to change the keyboard layout from "en" to "cn", but it is still not work.
    The input method coin on the righttop is right when I change the method.But it still output english even I use ibus-pinyin.There is not a box for my choosing chinese words.
    Last edited by Dilingg (2015-05-15 16:18:43)

  • Convert from php to java

    Hello all,
    Can someone convert this code from php to java.
    <?php
    function bitbybit_crc32($str,$first_call=false){
    //reflection in 32 bits of crc32 polynomial 0x04C11DB7
    $poly_reflected=0xEDB88320;
    //=0xFFFFFFFF; //keep track of register value after each call
    static $reg=0xFFFFFFFF;
    //initialize register on first call
    if($first_call) $reg=0xFFFFFFFF;
    $n=strlen($str);
    $zeros=$n<4 ? $n : 4;
    //xor first $zeros=min(4,strlen($str)) bytes into the register
    for($i=0;$i<$zeros;$i++)
    $reg^=ord($str{$i})<<$i*8;
    //now for the rest of the string
    for($i=4;$i<$n;$i++){
    $next_char=ord($str{$i});
    for($j=0;$j<8;$j++)
    $reg=(($reg>>1&0x7FFFFFFF)|($next_char>>$j&1)<<0x1F)
    ^($reg&1)*$poly_reflected;
    //put in enough zeros at the end
    for($i=0;$i<$zeros*8;$i++)
    $reg=($reg>>1&0x7FFFFFFF)^($reg&1)*$poly_reflected;
    //xor the register with 0xFFFFFFFF
    return ~$reg;
    $str="123456789"; //whatever
    $blocksize=4; //whatever
    for($i=0;$i<strlen($str);$i+=$blocksize) $crc=bitbybit_crc32(substr($str,$i,$blocksize),!$i);
    ?>

    I am looking someone to help me w/o $.Go away.
    This reminds me of this one time. I had written this dice roller in PHP (still in use, actually) and someone who was using it thought it was nice and wanted a version of it for himself. Only he was running a different game system, some home brewn thing, so it had to be different in certain respects.
    First he just asked me if he could have the dice roller I wrote. I thought about it but eventually agreed. It wasn't much as code. Then he asked me to modify it for him, explaining that he could not do it himself. For some reason I was feeling generous that day, so I did not ask him for his physical address and send him a mail bomb. Instead I said that I would modify it for him if he explained what modifications he needed.
    Then he told me to go read his game system on his web site and figure it out for myself. I must have been in a saintly attitude that day because I actually went and looked at his site - which predictably, was totally disorganized and incomprehensible. I pointed this out and he told me that I would have to read through everything once or twice, and also, it wasn't done yet so I should check back periodically.
    This is a person who I had never met in my life, even online, and with whom my first contact was his request for my dice roller.
    Where do these people COME from?
    Drake

  • Hey Guys PHP OOP - JAVA OOP

    how are you developers? --keep it up smart guys.
    I'm a PHP programmer and I love the fact that PHP is starting to look like JAVA. Im developing a software and it really is starting to look like java-- looking back at my code.
    I love it how you can have Public and Private class-functions and have the ability to crossfade it in your API.
    I'm looking forward to see how PHP/ZEND can optimize Open Source development along with JAVA applets to ensure robustness.
    What i don't like about Java is that everything just takes so much time. I guess java is all about enginnering the software first and building the dummies la8r with a nice GUI in the End.
    I've gain sooo much knowledge via PHP/Linux/TomKat/MySql/apache/python and the list just goes on. Its so intelligent. I prefer java over .NET. I really dont like thier syntaxes and how it just a big jungle of Coms and Doms. lol. --miss dos, until I saw bash.
    Finally I can enter the Java world --hopefully without that coffee. /yikes bad breath and bad teeth. need to see a dentist. lol. =)
    - shaj miah.

    Ok, looks like the admins are zapping some topics, and zapped one of your duplicates too. How about this one?

  • Read GUID with java

    Hi to all, I need some help with java to retrieve the eDirectory GUID. I
    know it's a binary data field and I need to decode it to read the value,
    but I'm not able to retrieve anything, even if I name the attribute
    because it is operational.
    This is my code. What am I doing wrong?
    import com.novell.ldap.*;
    import java.io.UnsupportedEncodingException;
    public class GuidReader {
    public static void main( String[] args ) {
    String loginDN = "cn=admin,o=system";
    String password = "MYPASSWORD";
    String searchBase = "MYCONTEXT";
    String searchFilter = "(cn=MYUSERNAME)";
    int searchScope = LDAPConnection.SCOPE_SUB;
    LDAPConnection lc = new LDAPConnection();
    try {
    lc.connect( "MYIPADDRESS", 389 );
    try {
    lc.bind( LDAPConnection.LDAP_V3, loginDN,
    password.getBytes("UTF8"));
    } catch (UnsupportedEncodingException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    LDAPSearchResults searchResults = lc.search(
    searchBase,
    searchScope,
    searchFilter,
    null,
    false );
    while ( searchResults.hasMore() ) {
    LDAPEntry nextEntry = null;
    try {
    nextEntry = searchResults.next();
    } catch(LDAPException e ) {
    System.out.println("Error: " + e.toString());
    continue;
    LDAPAttribute attribute =
    nextEntry.getAttribute("objectGuid");
    if (attribute == null) System.out.println("not
    returned");
    attribute = nextEntry.getAttribute("GUID");
    if (attribute == null) System.out.println("not
    returned");
    attribute = nextEntry.getAttribute("cn");
    if (attribute == null) System.out.println("not
    returned");
    else System.out.println("returned");
    } catch( LDAPException e ) {
    System.out.println("Error " + e.toString() );
    If I run it, i get this result:
    not returned
    not returned
    returned
    Thank you,
    Natan Sanson
    nsanson
    nsanson's Profile: http://forums.novell.com/member.php?userid=1637
    View this thread: http://forums.novell.com/showthread.php?t=410589

    So I did it this way:
    LDAPAttribute attr = nextEntry.getAttribute( "GUID" );
    Enumeration allValues = attr.getByteValues();
    if ( allValues != null )
    System.out.println( getGUID( allValues ) );
    public static String getGUID( Enumeration values )
    String returnThis = "";
    while ( values.hasMoreElements() )
    int offset = 0;
    byte Value[] = ( byte[] ) values.nextElement();
    while ( offset < Value.length )
    int val = Value[offset++] & 0xff;
    String s = Integer.toHexString( val );
    if ( s.length() == 1 )
    s = "0" + s;
    returnThis = returnThis + s + " ";
    return returnThis;
    -jim
    On 5/14/2010 11:56 AM, nsanson wrote:
    >
    > Hi to all, I need some help with java to retrieve the eDirectory GUID. I
    > know it's a binary data field and I need to decode it to read the value,
    > but I'm not able to retrieve anything, even if I name the attribute
    > because it is operational.
    >
    > This is my code. What am I doing wrong?
    >
    > import com.novell.ldap.*;
    >
    > import java.io.UnsupportedEncodingException;
    >
    >
    > public class GuidReader {
    > public static void main( String[] args ) {
    > String loginDN = "cn=admin,o=system";
    > String password = "MYPASSWORD";
    > String searchBase = "MYCONTEXT";
    > String searchFilter = "(cn=MYUSERNAME)";
    > int searchScope = LDAPConnection.SCOPE_SUB;
    >
    > LDAPConnection lc = new LDAPConnection();
    > try {
    > lc.connect( "MYIPADDRESS", 389 );
    > try {
    > lc.bind( LDAPConnection.LDAP_V3, loginDN,
    > password.getBytes("UTF8"));
    > } catch (UnsupportedEncodingException e1) {
    > // TODO Auto-generated catch block
    > e1.printStackTrace();
    > }
    > LDAPSearchResults searchResults = lc.search(
    > searchBase,
    > searchScope,
    > searchFilter,
    > null,
    > false );
    > while ( searchResults.hasMore() ) {
    > LDAPEntry nextEntry = null;
    > try {
    > nextEntry = searchResults.next();
    > } catch(LDAPException e ) {
    > System.out.println("Error: " + e.toString());
    > continue;
    > }
    > LDAPAttribute attribute =
    > nextEntry.getAttribute("objectGuid");
    > if (attribute == null) System.out.println("not
    > returned");
    > attribute = nextEntry.getAttribute("GUID");
    > if (attribute == null) System.out.println("not
    > returned");
    > attribute = nextEntry.getAttribute("cn");
    > if (attribute == null) System.out.println("not
    > returned");
    > else System.out.println("returned");
    >
    >
    > } catch( LDAPException e ) {
    > System.out.println("Error " + e.toString() );
    > }
    > }
    >
    > }
    >
    >
    > If I run it, i get this result:
    >
    > not returned
    > not returned
    > returned
    >
    > Thank you,
    >
    > Natan Sanson
    >
    >

  • How i get hardware info with Java Applet

    Hello Everybody.
    first I am sorry for my english. This my first topic. I am a php developer and learning Java. I am developing a Java Applet.
    Can i get client hardware info with Java Applet
    Ýf i can How i do get hardware info with Java Applet.
    I need sample code or documentation.
    Thanx.

    TrojanMyth wrote:
    Hello;
    Can i get hardware info with Java ?? Have not a know people ?Applets are restricted, unless, as already noted, they are signed and accepted by the user. See
    http://java.sun.com/docs/books/tutorial/deployment/applet/security.html
    http://java.sun.com/docs/books/tutorial/deployment/applet/properties.html
    In general, since Java is designed to run on multiple operating systems and machine architectures it does not provide much access to the underlying hardware. As mentioned, you can access the os via methods in the java.lang.ProcessBuilder and Runtime classes.

  • Getting rates from ecb with java

    Does anyone know how i can get the latest exchange rates from the European central Bank website with java?

    Got this from [http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml]
    aparently it's updated daily :)
    <?xml version="1.0" encoding="UTF-8"?>
    <gesmes:Envelope xmlns:gesmes="http://www.gesmes.org/xml/2002-08-01" xmlns="http://www.ecb.int/vocabulary/2002-08-01/eurofxref">
         <gesmes:subject>Reference rates</gesmes:subject>
         <gesmes:Sender>
              <gesmes:name>European Central Bank</gesmes:name>
         </gesmes:Sender>
         <Cube>
              <Cube time='2008-07-25'>
                   <Cube currency='USD' rate='1.5734'/>
                   <Cube currency='JPY' rate='168.77'/>
                   <Cube currency='BGN' rate='1.9558'/>
                   <Cube currency='CZK' rate='23.595'/>
                   <Cube currency='DKK' rate='7.4619'/>
                   <Cube currency='EEK' rate='15.6466'/>
                   <Cube currency='GBP' rate='0.78880'/>
                   <Cube currency='HUF' rate='231.35'/>
                   <Cube currency='LTL' rate='3.4528'/>
                   <Cube currency='LVL' rate='0.7032'/>
                   <Cube currency='PLN' rate='3.2080'/>
                   <Cube currency='RON' rate='3.5675'/>
                   <Cube currency='SEK' rate='9.4610'/>
                   <Cube currency='SKK' rate='30.385'/>
                   <Cube currency='CHF' rate='1.6268'/>
                   <Cube currency='ISK' rate='127.51'/>
                   <Cube currency='NOK' rate='8.0815'/>
                   <Cube currency='HRK' rate='7.2182'/>
                   <Cube currency='RUB' rate='36.7435'/>
                   <Cube currency='TRY' rate='1.8966'/>
                   <Cube currency='AUD' rate='1.6438'/>
                   <Cube currency='BRL' rate='2.4808'/>
                   <Cube currency='CAD' rate='1.5968'/>
                   <Cube currency='CNY' rate='10.7275'/>
                   <Cube currency='HKD' rate='12.2698'/>
                   <Cube currency='IDR' rate='14352.55'/>
                   <Cube currency='KRW' rate='1584.41'/>
                   <Cube currency='MXN' rate='15.7525'/>
                   <Cube currency='MYR' rate='5.1129'/>
                   <Cube currency='NZD' rate='2.1159'/>
                   <Cube currency='PHP' rate='69.143'/>
                   <Cube currency='SGD' rate='2.1407'/>
                   <Cube currency='THB' rate='52.608'/>
                   <Cube currency='ZAR' rate='11.9481'/>
              </Cube>
         </Cube>
    </gesmes:Envelope>

  • XSLT Mapping with Java class not working in Integration Repository

    Hi,
    I have an XSLT mapping program with Java enhancement and I was able to successfully tested it in Stylus Studio. However, when I imported the Java class and the xslt program in Enterprise Service Builder and tested it, my program does not compile.
    Here is the error message: "Transformer Configuration Exception occurred when loading XSLT mapping_temp.xsl; details: Could not compile stylesheet".
    My java program is in a zip file containing SOAPHeaderHandler.java and SOAPHeaderhandler.class. My Java has a package com.nga.xslt.
    Here is the declaration of my Java class in the XSLT: xmlns:javamap="java:com.nga.xslt.SOAPHeaderHandler"
    It seems that it could not read the java class. Can you please advice what is wrong?

    Hi ,
    select XMLTOOLKIT option in Operation mapping and execute it.
    I am not sure we can call java program in XSLT Program,but alternative is copy the code and use it in XSLT mapping it self,that means your XSLT program will become with JAVA extensions.
    then in Operation mapping level select SAPXMLTOOL kit option and execute it. i hope it will work. if it is not working then you have deploy some JAXP files on server,because the way execution of XSLT Mpaping program got changed,like when eve you executing XSLT with extnasions( if you are not using XMLTOOL kit option) then you have to use latest version of JAXP.JDK files.
    Regards,
    Raj

  • Sir i am using datasocket read ,i am communicating with java but my problem is that bcz im using while loop to see if value has changed my labview consumes all the processors time ,sir i want a event like thing so that while loop is not in continuous loop

    sir i have given lot of effort but i am not able to solve my problem either with notifiers or with occurence fn,probably i do not know how to use these synchronisation tools.

    sir i am using datasocket read ,i am communicating with java but my problem is that bcz im using while loop to see if value has changed my labview consumes all the processors time ,sir i want a event like thing so that while loop is not in continuous loopHi Sam,
    I want to pass along a couple of tips that will get you more and better response on this list.
    1) There is an un-written rule that says more "stars" is better than just one star. Giving a one star rating will probably eliminate that responder from individuals that are willing to anser your question.
    2) If someone gives you an answer that meets your needs, reply to that answer and say that it worked.
    3) If someone suggests that you look at an example, DO IT! LV comes with a wonderful set of examples that demonstate almost all of the core functionality of LV. Familiarity with all of the LV examples will get you through about 80% of the Certified LabVIEW Developer exam.
    4) If you have a question first search the examples for something tha
    t may help you. If you can not find an example that is exactly what you want, find one that is close and post a question along the lines of "I want to do something similar to example X, how can I modify it to do Y".
    5) Some of the greatest LabVIEW minds offer there services and advice for free on this exchange. If you treat them good, they can get you through almost every challenge that can be encountered in LV.
    6) If English is not your native language, post your question in the language you favor. There is probably someone around that can help. "We're big, we're bad, we're international!"
    Trying to help,
    Welcome to the forum!
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

Maybe you are looking for

  • Change transaction type group for transaction type

    Hi Is it possible to change the transaction type group for a TTY.For ex i want to change for 270 and 151 -TTY GRP -32 and 33 respectively.As of now it is TTY grp is 25 and 10.I need to change this so that in Asset history sheet when i do ABT1N i want

  • Issue in Material Determination and Delivery Block

    Hi, I have an issue while changing a Sale Order. When I clear a particular block in VA02, the manual pricing conditions that were entered in VA01 are deleted and document becomes incomplete again. This happens only to the child material in a material

  • Doesn't Display Properly In Dreamweaver

    Hi, I just opened a website in Dreamweaver CS3 that was originally created in Expression Web. If I preview a page in a browser it looks fine, but in the Dreamweaver design editing window it looks a mess. The bar across the top is fine, but the left n

  • Input related random inputs and out of order events

    Hi My wife has a Mac Air 4,2 It has been flawless and in good working order, with minimal applications. All was well until 20th Sept. Immediatly after a system update to 10.7.4  the trackpad began to show strange drag and click problems .. as if the

  • 10.9 link a Contact to an iCal appointment?

    I want to link the information from Contacts to my Ical appointments, but can't find a way to do this. Help?