Assembler code example to can application using 8051

Hi,
I am developing a CAN application using 8051 family microcontrollers. I need recognize the information coming through Rxdc pin. So far, I was not able to do this. Where can I get some assembler code example for this microcontroller? Someone has one ?
Thanks.

Hello-
Unfortunately, we only provide source code for the NI-CAN boards in Windows under CVI and LabVIEW. The Philips site may have some examples. I believe that they actually sell a CAN chip that is integrated with an 8051.
Randy Solomonson
Application Engineer
National Instruments

Similar Messages

  • Examples of SAP Applications using Gamification

    Please share examples of SAP applications using gamification.
    Best regards,
    Rohit

    Gamification is the use of game thinking and game mechanics in non-game contexts to engage users in solving problems and increase users' self contributions.Gamification has been studied and applied in several domains, with some of the main purposes being to engage (improve user engagement, physical exercise, return on investment, flow,  data quality, timeliness), teach (in classrooms, the public or at work), entertain (enjoyment, fan loyalty), measure(for recruiting and employee evaluation), and to improve the perceived ease of use of information systems.A review of research on gamification shows that a majority of studies on gamification find positive effects from gamification. However, individual and contextual differences exist.
    Gamification uses an empathy-based approach (such as Design thinking) for introducing, transforming and operating a service system that allows players to enter a gameful experience to support value creation for the players and other stakeholders.Gamification designers address the user as player to indicate that the motivations and interests of the player are in the center of the gamification design.
    Gamification in a narrow sense is used in a non-game context, is built into the service system, and is aiming at an infinite experience. It does not aim at creating a game but offering a gameful experience. In a broader sense gamification also includes game context such as in serious games and finite and infinite games.
    Examples
    SAP Community Network
    Stack Overflow
    Yahoo! Answers
    LinkedIn
    Amazon.com
    MySugr
    Duolingo
    Zombies, Run!
    You can also check it here:
    http://www.bunchball.com/sites/default/files/case_study-gamification_sap_community_network-july2013.pdf

  • Exception code: 0xc0000005 while installing application using ClickOnce

    I am trying to install a .Net application using ClickOnce technology. The software is hosted on a webserver and is installed on my local machine. After downloading the package, the installer exits without a message. On checking the windows event logs,I get
    the error below
    Faulting application name: RightNow.CX.exe, version: 14.2.0.131, time stamp: 0x52f97d97
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x47890000
    Faulting process id: 0x14b0
    Faulting application start time: 0x01d057f486a99722
    Faulting application path: C:\Users\<>\AppData\Local\Apps\2.0\CKBZHX19.3W3\CT839ER7.EKJ\righ..abcd_48ad3057c253cb4a_000e.0002_46564157f66daf8c\RightNow.CX.exe
    Faulting module path: unknown
    Report Id: c4601ea7-c3e7-11e4-be8b-f0def10913fd
    Faulting package full name:
    Faulting package-relative application ID:
    I have tried it on other systems where the application can be deployed succesfully, so the package on server is not corrupt.
    Using Windows 8 64-bit, IE 10 RTM
    I did check some posts, but could not find anything relevant. Can you point me in the right direction?
    P.S. I do not have developer access to modify the package, but have admin access on my machine.

    Hi Win8FanBoy,
    As you can't modify the package, I suggest you checking if the application can be executed well in your win8 machine without the installer. You could get the application, run it directly in your machine. then check if it would be corrupt.
    If it still be corrupt, I'm afraid that you have to access to modify the package to make it compliant with win8 64-bit.
    Best regards,
    Youjun Tang
    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.

  • UK PAC Code... can you use AFTER activation with O2?

    Here's a question for UK iPhone owners after next Friday, 9 Nov 07 (please excuse my ignorance)...
    Does anyone know whether or not you'll be able to port over/in your existing mobile phone number DAYS AFTER you've activated an iPhone in iTunes (using the number "O2" automatically provide on the SIM inside the iPhone at point of purchase) by phoning O2 & requesting a transfer afterwards?
    Let me put it another way... if I activate a UK iPhone on Fri 9 Nov, then get my PAC code (within 5 working days) from my existing network, "Virgin", when my contract expires the following week, THEN ring "O2" and give them my "Virgin" PAC code so I keep my existing number... would this work?
    ... because if you buy a 'normal' mobile phone in the UK, this is quite possible, but I just want to check if I'll be able to do this with the iPhone as I really want to keep my existing number & I don't think I can hold off activating/using my iPhone until I receive the PAC code from "Virgin" 5 days later ... can someone please confirm if I'll be able to do this? Thank you.

    So you are saying that the recovery discs I made do include the copy of windows that was originally installed?
    Absolutely! They will restore the hard disk to its original out-of-the-box contents. Follow the instructions in the section Restoring from recovery DVDs/media, which begins on p. 73 of the User's Guide.
       Satellite A660 Series User’s Guide
    maybe i can make a deal with wd to have them swap this drive out for the BEKT instead...
    That would be a good idea in any case.
    As I said, the 10-fc12-045d error would not be due to the drive's being AFT, but more likely the discs are not being read properly. New discs can be obtained from Toshiba. Scroll down to Get Recovery Media here
    -Jerry

  • Code example: Simple animation, smart use of clipping

    The code posted below creates a set of eyes that will track the mouse around, and blink periodically.
    In particular, notice the way I use clipping to only paint part of the eyelid oval.
    There are two dependencies in the code. One is MathUtils.angle(). Comment this out and replace with the correct call to Math.atan2. The other place is WindowUtilities.visualize(). Remove this and put the Eyes class is a window and you should be good to go
    tjacobs.ui.Eyes
    package tjacobs.ui;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.util.Timer;
    import java.util.TimerTask;
    import javax.swing.JComponent;
    import javax.swing.SwingUtilities;
    import tjacobs.MathUtils;
    public class Eyes extends JComponent implements MouseMotionListener {
         private int mEyeGap = 0;
         private double mEyeDir1 = Double.NaN, mEyeDir2;
         private double mEyeRatio = .6;
         private int mBatEyesState = 0;
         private Timer mEyeBatter;
         private long mTimeBetweenBats;
         private long mBatAnimationSpeed = 100;
         public Eyes() {
              //setBackground(Color.BLACK);
              setBackground(Color.PINK);
              setForeground(Color.BLUE);
              addMouseMotionListener(this);
         public void setBatAnimationSpeed(long speed) {
              mBatAnimationSpeed = speed;
         public long getBatAnimationSpeed() {
              return mBatAnimationSpeed;
         public void mouseMoved(MouseEvent me) {
              Point p = SwingUtilities.convertPoint(me.getComponent(), me.getPoint(), this);
              int height = getHeight();
              mEyeDir1 = MathUtils.angle(height / 2, height / 2, p.x, p.y);
              mEyeDir2 = MathUtils.angle((3 * height) / 2 + mEyeGap, height / 2, p.x, p.y);
              repaint();
         public void mouseDragged(MouseEvent me) {
              mouseMoved(me);
         public int getEyeGap() {
              return mEyeGap;
         public void setEyeGap(int gap) {
              mEyeGap = gap;
         public void setBatEyes(long timeBetweenBats) {
              mTimeBetweenBats = timeBetweenBats;
              if (mEyeBatter != null) {
                   mEyeBatter.cancel();
                   mEyeBatter = null;
              if (timeBetweenBats < mBatAnimationSpeed * 8) {
                   return;
              else {
                   mEyeBatter = new Timer(true); //allow it to be a daemon thread
                   mEyeBatter.scheduleAtFixedRate(new BatEyesTask(), mTimeBetweenBats, mTimeBetweenBats);
                   //Thread t = new Thread(mEyeBatter);
                   //t.start();
         private class BatEyesTask extends TimerTask {
              public void run() {
                   try {
                        //System.out.println("bat");
                        Thread t = Thread.currentThread();
                        mBatEyesState = 1;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 2;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 3;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 4;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 3;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 2;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 1;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 0;
                        repaint();
                   catch (InterruptedException ex) {
                        if (mBatEyesState != 0) {
                             mBatEyesState = 0;
                             repaint();
         public void paintComponent(Graphics g) {
              int height = getHeight();
              int r = height / 2;
              g.setColor(Color.WHITE);
              g.fillOval(0, 0, height, height);
              g.fillOval(height + mEyeGap + 0, 0, height, height);
              g.setColor(Color.BLACK);
              g.drawOval(0, 0, height, height);
              g.drawOval(height + mEyeGap + 0, 0, height, height);
              g.setColor(getForeground());
              int irisR = (int) (r * mEyeRatio);
              if (Double.isNaN(mEyeDir1)) {
                   int x1 = (r - irisR);
                   int y1 = x1;
                   g.fillOval(x1, y1, irisR * 2, irisR * 2);
                   x1 += height + mEyeGap;
                   g.fillOval(x1, y1, irisR * 2 , irisR * 2);
    //               int x1 = r - r/4;
    //               int y1 = r - r/4;
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio), (int) (r * mEyeRatio));
    //               x1 += height + mEyeGap;
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio) , (int)(r * mEyeRatio));
              } else {
                   int x1 = (r - irisR);
                   int y1 = x1;
                   x1 -= Math.cos(mEyeDir1) * (r - irisR);
                   y1 -= Math.sin(mEyeDir1) * (r - irisR);
                   g.fillOval(x1, y1, irisR * 2, irisR * 2);
                   x1 = (r - irisR) + height + mEyeGap;
                   y1 = r - irisR;
                   x1 -= Math.cos(mEyeDir2) * (r - irisR);
                   y1 -= Math.sin(mEyeDir2) * (r - irisR);
                   g.fillOval(x1, y1, irisR * 2, irisR * 2);
    //               int x1 = (int) (r - Math.cos(mEyeDir1) * r);
    //               int y1 = (int) (r - Math.sin(mEyeDir1) * r);
    //               System.out.println("height" + height + " x1 = " + x1 + " y1 = " + y1);
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio), (int) (r * mEyeRatio));
    //               x1 = height + mEyeGap + (int) (r - Math.cos(mEyeDir2) * r);
    //               y1 = (int) (r - Math.sin(mEyeDir2) * r);
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio), (int) (r * mEyeRatio));
                   //Eye Batting
              //System.out.println("painting");
              if (mBatEyesState != 0) {
                   Rectangle rect = new Rectangle(0,0,getWidth(), getHeight() * mBatEyesState / 4);
                   g.setClip(rect);
                   g.setColor(getBackground());
                   g.fillOval(0, 0, height, height);
                   g.fillOval(height + mEyeGap + 0, 0, height, height);
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              Eyes eyes = new Eyes();
              eyes.setBatEyes(10000);
              eyes.setPreferredSize(new Dimension(60,25));
              eyes.setEyeGap(5);
              WindowUtilities.visualize(eyes);
    }

    The code posted below creates a set of eyes that will track the mouse around, and blink periodically.
    In particular, notice the way I use clipping to only paint part of the eyelid oval.
    There are two dependencies in the code. One is MathUtils.angle(). Comment this out and replace with the correct call to Math.atan2. The other place is WindowUtilities.visualize(). Remove this and put the Eyes class is a window and you should be good to go
    tjacobs.ui.Eyes
    package tjacobs.ui;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.util.Timer;
    import java.util.TimerTask;
    import javax.swing.JComponent;
    import javax.swing.SwingUtilities;
    import tjacobs.MathUtils;
    public class Eyes extends JComponent implements MouseMotionListener {
         private int mEyeGap = 0;
         private double mEyeDir1 = Double.NaN, mEyeDir2;
         private double mEyeRatio = .6;
         private int mBatEyesState = 0;
         private Timer mEyeBatter;
         private long mTimeBetweenBats;
         private long mBatAnimationSpeed = 100;
         public Eyes() {
              //setBackground(Color.BLACK);
              setBackground(Color.PINK);
              setForeground(Color.BLUE);
              addMouseMotionListener(this);
         public void setBatAnimationSpeed(long speed) {
              mBatAnimationSpeed = speed;
         public long getBatAnimationSpeed() {
              return mBatAnimationSpeed;
         public void mouseMoved(MouseEvent me) {
              Point p = SwingUtilities.convertPoint(me.getComponent(), me.getPoint(), this);
              int height = getHeight();
              mEyeDir1 = MathUtils.angle(height / 2, height / 2, p.x, p.y);
              mEyeDir2 = MathUtils.angle((3 * height) / 2 + mEyeGap, height / 2, p.x, p.y);
              repaint();
         public void mouseDragged(MouseEvent me) {
              mouseMoved(me);
         public int getEyeGap() {
              return mEyeGap;
         public void setEyeGap(int gap) {
              mEyeGap = gap;
         public void setBatEyes(long timeBetweenBats) {
              mTimeBetweenBats = timeBetweenBats;
              if (mEyeBatter != null) {
                   mEyeBatter.cancel();
                   mEyeBatter = null;
              if (timeBetweenBats < mBatAnimationSpeed * 8) {
                   return;
              else {
                   mEyeBatter = new Timer(true); //allow it to be a daemon thread
                   mEyeBatter.scheduleAtFixedRate(new BatEyesTask(), mTimeBetweenBats, mTimeBetweenBats);
                   //Thread t = new Thread(mEyeBatter);
                   //t.start();
         private class BatEyesTask extends TimerTask {
              public void run() {
                   try {
                        //System.out.println("bat");
                        Thread t = Thread.currentThread();
                        mBatEyesState = 1;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 2;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 3;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 4;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 3;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 2;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 1;
                        repaint();
                        t.sleep(mBatAnimationSpeed);
                        mBatEyesState = 0;
                        repaint();
                   catch (InterruptedException ex) {
                        if (mBatEyesState != 0) {
                             mBatEyesState = 0;
                             repaint();
         public void paintComponent(Graphics g) {
              int height = getHeight();
              int r = height / 2;
              g.setColor(Color.WHITE);
              g.fillOval(0, 0, height, height);
              g.fillOval(height + mEyeGap + 0, 0, height, height);
              g.setColor(Color.BLACK);
              g.drawOval(0, 0, height, height);
              g.drawOval(height + mEyeGap + 0, 0, height, height);
              g.setColor(getForeground());
              int irisR = (int) (r * mEyeRatio);
              if (Double.isNaN(mEyeDir1)) {
                   int x1 = (r - irisR);
                   int y1 = x1;
                   g.fillOval(x1, y1, irisR * 2, irisR * 2);
                   x1 += height + mEyeGap;
                   g.fillOval(x1, y1, irisR * 2 , irisR * 2);
    //               int x1 = r - r/4;
    //               int y1 = r - r/4;
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio), (int) (r * mEyeRatio));
    //               x1 += height + mEyeGap;
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio) , (int)(r * mEyeRatio));
              } else {
                   int x1 = (r - irisR);
                   int y1 = x1;
                   x1 -= Math.cos(mEyeDir1) * (r - irisR);
                   y1 -= Math.sin(mEyeDir1) * (r - irisR);
                   g.fillOval(x1, y1, irisR * 2, irisR * 2);
                   x1 = (r - irisR) + height + mEyeGap;
                   y1 = r - irisR;
                   x1 -= Math.cos(mEyeDir2) * (r - irisR);
                   y1 -= Math.sin(mEyeDir2) * (r - irisR);
                   g.fillOval(x1, y1, irisR * 2, irisR * 2);
    //               int x1 = (int) (r - Math.cos(mEyeDir1) * r);
    //               int y1 = (int) (r - Math.sin(mEyeDir1) * r);
    //               System.out.println("height" + height + " x1 = " + x1 + " y1 = " + y1);
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio), (int) (r * mEyeRatio));
    //               x1 = height + mEyeGap + (int) (r - Math.cos(mEyeDir2) * r);
    //               y1 = (int) (r - Math.sin(mEyeDir2) * r);
    //               g.fillOval(x1, y1, (int) (r * mEyeRatio), (int) (r * mEyeRatio));
                   //Eye Batting
              //System.out.println("painting");
              if (mBatEyesState != 0) {
                   Rectangle rect = new Rectangle(0,0,getWidth(), getHeight() * mBatEyesState / 4);
                   g.setClip(rect);
                   g.setColor(getBackground());
                   g.fillOval(0, 0, height, height);
                   g.fillOval(height + mEyeGap + 0, 0, height, height);
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              Eyes eyes = new Eyes();
              eyes.setBatEyes(10000);
              eyes.setPreferredSize(new Dimension(60,25));
              eyes.setEyeGap(5);
              WindowUtilities.visualize(eyes);
    }

  • Can I use Photoshops example images on my companies web site?

    On the Photoshops CD, there is a lot of example images, Can I use these example images on my companies web site?

    Here's the process to roll back:
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, download and save Firefox 3.6 to your desktop for future installation. http://www.mozilla.com/firefox/all-older
    Close Firefox 4.
    You could install Firefox 3.6 over it (many have reported success) or you could uninstall Firefox first. If you uninstall, do not remove your personal data and settings, just the program.
    Unless you have installed an incompatible add-on, Firefox 3.6 should pick up where you left off. If there are serious issues, please post back with details.
    Note: I haven't actually tried this myself!
    Does that resolve the NASA issues?

  • Need Code Example

    Can someone please show me a code example of how to use RS_EXTERNAL_SELSCREEN_STATUS function.
    I want to delete "Create delivery in background" pushbutton from report vl10h.

    This is the example given in the FM documentation.
    Example
    Example for calling RS_EXTERNAL_SELSCREEN_STATUS:
    PROGRAM SAPDBxyz DEFINING DATABASE xyz.
    FORM INIT.
    CALL FUNCTION 'RS_EXTERNAL_SELSCREEN_STATUS'
    EXPORTING P_FB = 'TEST_EXTERNAL_STATUS'.
    ENDFORM.
    Example for function module that sets the status:
    FUNCTION TEST_EXTERNAL_STATUS.
    ""Local interface:
    *" IMPORTING
    *" P_SUBMIT_MODE
    *" TABLES
    *" P_EXCLUDE STRUCTURE RSEXFCODE
    *" EXCEPTIONS
    *" NO_ACTION
    IF P_SUBMIT_MODE NE SPACE.
    RAISE NO_ACTION.
    ENDIF.
    SET PF-STATUS 'TEST' EXCLUDING P_EXCLUDE.
    SET TITLEBAR 'TST'.
    ENDFUNCTION.
    INITIALIZATION.
    CUA *
    IMPORT T185V FROM MEMORY
    ID SD_COND_MEM_01. "JAY
    RV13B-KVEWE = 'B'.
    RV13B-KOTABNR = '001'.
    CALL FUNCTION 'RS_SUBMIT_INFO'
    IMPORTING
    P_SUBMIT_INFO = RSSUBINFO.
    IF NOT RSSUBINFO-MODE_NORML IS INITIAL.
    TITEL = T185V-CTITEL.
    CALL FUNCTION 'RV_CONDITION_GET_CUA_REPO'
    EXPORTING
    PFKEY_I = 'BSELE'
    TITLE_I = TITEL
    PAR1_I = T185V-PARA1
    PAR2_I = T185V-PARA2
    PAR3_I = T185V-PARA3
    PAR4_I = T185V-PARA4
    TABLES
    EXCL_I = AUSSCHLUSS.
    CALL FUNCTION 'RS_EXTERNAL_SELSCREEN_STATUS'
    EXPORTING
    P_FB = 'RV_CONDITION_SET_CUA_REPO'.
    ENDIF.

  • Two code examples

    Hi,
    Look below, what is the difference between these two code examples? I always use the first one, but is it right to use the second one to get the same result?
    Ex.
    public void Hello(int i, Vector vec)
    int j;
    Vector vector;
    j=i;
    vector=vec;
    j++;
    vector[c]=8;
    public void Hello(int i, Vector vec)
    i++;
    vec[c]=8;
    /A

    The code is much the same but the second one performs better.
    You should also keep in mind that primitive datatypes like int, char, ... are call-by-value and objects are call-by-reference.
    call-by-value:
    Means that the only the value of the integer is copied to the function.
    call-by-reference:
    Means that the only the reference is given to the function and so you can manipulate the object. ==> the changes are also in the object in the calling fkt.

  • HT2589 in our country we dont have iTune Store if i create iTunes accounts in another country can i use my local bank credit card??

    In our country we dont have iTune Store if i create iTunes accounts in another country (example UK) can i use my local bank credit card??

    No, you need to be in a country and have a valid billing address in that country to be able to use a country's store. If there isn't an iTunes store in your country then unfortunately you won't be able to buy any content from iTunes.

  • OK since midday today firefox 3.6.24 apparently no longer executes javascript on ebay. Can't use the "add to watch list" buttons or the enlarge photo buttons. It says 'javascript at the bottom of the firefox window but nothing happens.

    just as I wrote above.. ebay loads and functions. I can bid and view auctions but trying to either use the "add to watch list" or "add to wish list" buttons or to switch between different posted photos of an item just gives me javascript:; at the bottom left of my screen but clicking the button has no effect.I'm still running 10.4.11 with the last java download.. is this an ebay change to a newer java version not supported by my os or is it a firefox error..oh and one more thing each page seems to have become 4 times longer..ie there is a huge empty space as I scroll down the page before I hit the bottom.Only appears to do this on ebay..haven't found any other sites showing similar errors and everything works fine on my imac running firefox 4 under 10.5

    Craig Stenton: at 12:13:04
    but I can't install windows! During the install I am asked for the product key and it tells me that it is not valid and so I can't proceed.
    Craig Stenton: at 12:14:16
    I can't use the usual methods of activation because I cannot get an activation code. I can't use the activation wizard. I can't call the number because it requires an activation code.
    Hi,
    I'm a bit confused with this paragraph, as you said Vista already install on your computer, why did you say Windows can't be installed?
    According to your description with your problem, it is Product edition and key are not match. Firstly of all, we must make sure the system you installed on your computer was
    Windows Vista Business, not matter 32 or 64 bit.
    Note: you can check current system edtion at System Properties.
    After that, you can try to input your product key and activate your system for test.
    If problem still presists, it would be better to provide the activation error message.
    Roger Lu
    TechNet Community Support

  • Monitor has HDMI--can I use it?

    Bought a 22" monitor that has HDMI and VGA inputs. Its a refurbished Famous Maker (HP) TS22W7H 22-inch LCD Vivid Color Widescreen Height & Pivot Adjustments w/ HDMI.
    I dont want to use the VGA. Is there a way to hook up the HMDI?
    Help.
    Thanks Steve

    In what sense are you not sure about the pivoting display? If you can physically rotate the display to 'portrait' mode for example, you can then use the Display preference panel to rotate MacOS to match orientation of the display. In the 'display' tab of the displays preference panel, you should see a drop down menu next to 'Rotate:' which allows you to select 90, 180 or 270 degrees rotation.
    In the past there were rotatable displays which had drivers to tell MacOS when the display was turned, and automatically rotated MacOS to match. I don't think the debranded HP has such a driver, but it can be done manually as described above.

  • Legally Unlocked 3G - how can I use when vacationing in USA?

    I have a 3G iPhone, legally unlocked by Optus (standard in Australia). I'm going to be visiting the US for a vacation shortly, and want to use my phone for both US phone calls as well as data.
    Obviously I don't want/need some kind of permanent subscription.
    Any suggestions for a good strategy would be appreciated.

    An iPhone unlocked by Optus in Australia will accept a SIM from non-Australian networks.
    I was in the USA recently. You can purchase a cheap Motorola AT&T Go Phone in places like Walmart for $14.95. I did this in Hawaii. You then call them via a 1-800 number on another phone or via the website to activate it. You will need to provide US address details, including Zip code. You can then use the SIM from the Go Phone in your iPhone. The $14.95 does not include any call credit. You have to purchase that by the standard means. Check out http://www.att.com/gophone .
    When unlocking a phone you should ensure it is unlocked before you leave the country. It is a lot harder to rectify once outside the country.
    There are two main GSM-based networks in the USA: AT&T and T-Mobile. With an Optus SIM you can roam onto either. With an unlocked iPhone you can even use a T-Mobile SIM. I believe you won't get any 3G service on the T-Mobile network as it uses a different band than those supported by the iPhone, although someone may correct me on this.
    Message was edited by: Matthew Smith

  • Can I Use  SAX  and DOM in same application?

    Hi,
    Here is my requirement. I am using Apache's SAX parser for my appliaction. The below xml is the sample xml i am processing.How can I know the parent of element 'C' using sax? Is there any way i can differentiate the element under <B> and under <A>? Or do i need to use DOM, when you encouter <C> and find out it's parent.?
    If any one had this situation,Please respond with some code examples.
    <A>
    <B>
    <C>aa</C>
    </B>
    <C>bb</C>
    </A>
    Thanx

    When using SAX, your application is notified about nodes as the parser encounters them, sequentially. There is no concept of a parent/child relationship for elements. When using SAX, you must develop this logic yourself.
    When using DOM, the contents of the XML file are read into a tree structure. If you have a reference to the node object that represents "C", you can get a reference to its parent by calling getParentNode().
    Hope this helps.
    Greg
    >
    Hi,
    Here is my requirement. I am using Apache's SAX parser
    for my appliaction. The below xml is the sample xml i
    am processing.How can I know the parent of element 'C'
    using sax? Is there any way i can differentiate the
    element under <B> and under <A>? Or do i need to
    use DOM, when you encouter <C> and find out it's
    parent.?
    If any one had this situation,Please respond with
    some code examples.
    <A>
    <B>
    <C>aa</C>
    </B>
    <C>bb</C>
    </A>
    Thanx

  • Does LCCS work on iOS, such as iPhone? Can I use the SDK examples to develop an app for mobile?

    I'm working on a project to create an air application which will have a chat area, webcam, and open videos in real time. This should also work on iOS.
    Can I use the same examples in the SDK to create this app by using flash builder 4.5? Is there any tutorials will help me in this topic?
    One more Question, by using LCCS, can I open a loaded videos/YouTube videos in a real time? Is there is any tutorial or example? In the adobe LiveCicle Collaboration web site, there is an example for The Video Livingroom. Is there a tutorial/code for this example?
    Your help is really appreciated.
    Thank you
    Suha

    I think these guys had success on the iOS:
    http://forums.adobe.com/thread/855200?tstart=60

  • Can i use REALTIME EQUALIZER of AUDIGY from another application? API of AUDIGY?? H

    Hi to all,?Can i use EQUALIZER of AUDIGY from another application? need SDK? Help me?For example, VIDEOLAN hasn't a REALTIME EQUALIZER.... i want REALTIME EQUALIZER under VIDEOLAN or other application... can i use API of SOUNDBLASTER AUDIGY from another application and how?

    ? Isn't the Audigy EQ working 'globally' (meaning, if it's enabled then it effects on all audio outputted through Audigy)?
    If you mean programming those API calls into your own software then you'll propably need to dig those functions by 'disassembling' the EQ code (it's maybe not very easy...).
    jutapaMessage Edited by jutapa on 05-08-200705:4 PM

Maybe you are looking for

  • Modify view object at responsibility level

    Hello, One of our business requirements is to change the drop-down values for several list of values based on the responsibility the user is logged in with. For example when creating a new application, the LOV 'Country' needs to list certain countrie

  • Can't export files in XPPro

    I just shelled out 30 duckets for the pro version to convert files to view in my new ipod nano. It will not convert files properly. The files are .flv type, when I click to export it opens box saying file already exists. then I check no to write a ne

  • Modify SoapAction and Endpoint dynamically

    I am currently using ESB 10.1.3.4. I have set up a routing service and a routing rule to a soap service. I am invoking the routing service from an oracle database using the utl_http package. The routing service is invoked correctly, the message gets

  • Rewire with Ableton Live 8 and Logic Pro 9

    Hi guys, I'm really hoping that somebody can help me with (sorry) a Rewire problem...I am close to tearing my hair out. I'm trying to Rewire Logic Pro 9 and Ableton Live 8. Before you ask I am using 32-bit Logic, and I am opening up Logic first, then

  • JES 2005Q4 Windows release date?

    I see the JES 2005Q4 documentation is up for the Windows Server platform. Although in BETA. Currently evaluating JES 2005Q1 for migrating system from Messaging Server 5.2p2 (also on Windows platform). When is JES2005Q4 for Windows coming out? Eli