How can a LabView process communicate with a Visual c++ process

How can a single Labview process communicate with another Visual c++ Process?
Both Application are running separately. The LabView  Application must have the Possibility to send command to the C++ Application and receive Data from this process.
Thanks.

Thank y for your answer.
The c++ application has already been written but don´t have an external interface.
The LabView application can have an activeX  interface other dlls.
Do you have some LabView example code using activeX interface other another Method to communicate with a c++ application?
I have no practical experience with the interprocess communication.
Any example in LabView will help me.
Thanks

Similar Messages

  • How can I have threads communicate with each other?

    I'm working on a project that requires a group of classes communicating with each other. I decided on using a server and carrying out communication that way. However, my app only has communication between the client and server. I need the clients to be able to communicate with each other. Does anyone know how I can do this or point me to a good tutorial?

    Sorry, here's a bone stock example of my server and client:
    <SERVER>
    package testserver;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class TestServer
    static int portOpen;
    public static void main(String[] args)
    portOpen=4000;
    try
    ServerSocket portListener = new ServerSocket(portOpen);
    TestServer userThreads = new TestServer();
    while (1==1)
    Socket userConnection=portListener.accept();
    userThreads.new PortConnection(userConnection);
    catch (Exception e)
    System.out.println("The server encountered a serious error. Server shut down.");
    e.printStackTrace();
    System.exit(0);
    class PortConnection extends Thread
    //Declare variables to handle connections.
    Socket ourConnection;
    BufferedReader serverInput;
    PrintWriter serverOutput;
    PortConnection(Socket userConnection)
    try
    ourConnection=userConnection;
    serverInput=new BufferedReader(new InputStreamReader(userConnection.getInputStream()));
    serverOutput=new PrintWriter(userConnection.getOutputStream(),true);
    start();
    catch (Exception e)
    System.out.println("An error occurred when a user attempted a connection.");
    public void run()
    serverOutput.println("Welcome to the Server.");
    try
    serverOutput.close();
    serverInput.close();
    ourConnection.close();
    catch (Exception e)
    </SERVER>
    <CLIENT>
    package testclient;
    import java.io.*;
    import java.util.*;
    import java.net.*;
    public class TestClient {
    static BufferedReader userInput;
    static Socket quizServer;
    static BufferedReader serverInput;
    static PrintWriter serverOutput;
    static String serverData;
    public static void main(String[] args) {
    userInput = new BufferedReader(new InputStreamReader(System.in));
    try {
    quizServer=new Socket("localhost",4000);
    catch (Exception e) {}
    try
    serverInput=new BufferedReader(new InputStreamReader(quizServer.getInputStream()));
    serverOutput=new PrintWriter(quizServer.getOutputStream(),true);
    catch (Exception e) {}
    try {
    serverData=serverInput.readLine();
    catch (Exception e) {}
    System.out.println(serverData);
    </CLIENT>

  • How can I do to communicate to parallel port using labview 5.0 and NT ?

    I am trying to write and read from parallel port using Labview 5.0. It does not work with NT.
    How can I do to communicate to parallel port using labview 5.0 and NT ?
    Thank you in advance.
    Regards,

    If you are trying to use In/Out port functions that come with LabVIEW they will not work with NT. I think the AccessHW file at the following link will fix that problem:
    http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/49664743ded6f1da862564bc004e3a7f?OpenDocument
    Try also this link:
    http://zone.ni.com/devzone/conceptd.nsf/2d17d611efb58b22862567a9006ffe76/0989d3d9dafae64e8625680400679736?OpenDocument
    and do some searchs at NI.com for parallel port, you should find some more usefull info.
    Good luck
    Brian

  • How can I record a video with LAbview?

    Hi,
    I have a question: How can I record a video with labview?
    I have a camera (AXIS 221) connected via rj45 on PC. I see the video of the camera in a browser.
    And I would to acquire the video in labview.
    Could someone help me?
    Thanks
    Raf

    Unfortunately I haven't any experience with this camera. Iguess, you should install API, then crete new VI, place ActiveX container (palette Container->ActiveX) on the Front Panel, then right mouse click, then choose Insert ActiveX object..., then found you camera object and select it and press OK. Then you probably can see image from the on the front panel. Also probably you will be able to get image data in array (how easy is it - depends from the camera API).
    If you able to see image from camera in the Internet Explorer, then another method - you can put Microsoft Web Browser as ActiveX object, then you should also see the image. Disadvantage of this method - you will be not able to get image data.
    Andrey.

  • RE: how can two Forte installtion communicate

    Hi,
    I have similar arrangement here but for "user acceptence test". However,
    may I remind you that when some objects/codes got checked out --> overwrite
    with new import --> integrate --> check out again. Some funny things ( I
    would say corruption ) may happen. I have one time that a normal old piece
    of code got compilation error and no one can find out why. The last resort
    is that I deleted everything and start from scratch again. Then everything
    works.
    Thus, I would suggest that from time to time, you should start out with a
    new repository instead of using it over and over again in this fashion.
    Maybe you can archive the old one as a version backup.
    Regards,
    Peter Sham.
    -----Original Message-----
    From: Kalidindi, Ravi CWT-MSP [SMTP:[email protected]]
    Sent: Tuesday, February 16, 1999 1:10 AM
    To: 'Nick Delany'; 'Jim Rice'
    Cc: [email protected]
    Subject: RE: how can two Forte installtion communicate
    Nick...
    We have a similar situation here. We have about seven teams,
    each
    with their own repositories with interdependent code.
    Let me give you a simple scenario to explain how you can
    make it
    work:
    Problem
    --Team A is responsible for projects 1,2,3 and use repository RepA
    --Team B is responsible for projects 4,5,6 adn use repository RepB.
    --Project 2 is a supplier plan to project 5 and project 3 is a
    supplier plan
    to project 6.
    Solution
    --each repository is reponsible for some projects and these projects
    can be
    changed only in that repository.
    --each repository also has a workspace called "SlaveProjects"
    --This workspace has all the projects that are needed but are not
    developed
    by this team.
    --These projects are checked out so that no one else can change them
    -- so, RepB's slaveProjects workspace will have projects 2 and 3
    (and other
    projects they need).
    -- You can also password protect the slaveProjects workspace.
    -- When team A thinks they have a new working(or atleast compilable)
    "version" of projects 2 and 3, they can trigger of an fscript which
    will
    export the projects 1 and 2, possibly save it in version control.
    -- team B can then trigger another fscript which will pull the code
    from
    version control, import the projects 1 and 2 into RepB's
    slaveProjects
    workspace, integrate it and recheck everything out.
    Options
    -- you can get fancy with the scripts
    -- you can add the two scripts together to do the whole thing in one
    shot.
    However existense of many such repositories can cause integrate
    failures and
    you might not know where exactly it stopped. You need to log the
    output to
    keep track.
    -- you should probably make the second script actually create a
    temporary
    workspace, and import projects there and integrate. This is in case
    you had
    many other projects in the slaveprojects workspace that need not be
    integrated and rechecked out each time.
    -- you could create an application in forte or VB etc.. to make this
    process
    more sophisticated.
    Hope that gives you a start. Different locations definetly
    adds more
    complexity to this, but the concept should be the same. If you have
    more
    questions or need more help, I suggest you call Len Lopez at
    612-594-2539
    who has played around with this stuff a lot. He put in place a VB
    app that
    does most of the stuff for us and will probably make a presentation
    at the
    Forte Forum this year on the same topic.
    Good Luck!
    -Ravi Kalidindi
    Born Info Svcs Group.
    > -----Original Message-----
    > From: Nick Delany [SMTP:[email protected]]
    > Sent: Monday, February 15, 1999 10:27 AM
    > To: 'Jim Rice'
    > Cc: [email protected]
    > Subject: RE: how can two Forte installtion communicate
    >
    >
    > Jim,
    >
    > Rajiv may not be referring to scenario 1, but I'm involved in
    something
    > like
    > that.
    > We're a bi-located team, and while we are trying to split up the
    work to
    > minimise the geographical dependancies, I'd be interested in
    anything you
    > might have to say about the best way to share code/repositories.
    >
    > Nick
    >
    > -----Original Message-----
    > From: Jim Rice [mailto:[email protected]]
    > Sent: 08 February 1999 22:38
    > To: Rajiv Srivastava
    > Cc: [email protected]
    > Subject: Re: how can two Forte installtion communicate
    >
    >
    > Rajiv,
    >
    > Can you elaborate ? I can see your questions leading toward at
    least the 3
    > following scenarios....
    >
    > 1. Are you asking about 2 different independent developer groups
    which
    > have
    > only the internet as a possible connection pipe between them,
    > or
    > 2. Are you asking about 2 deployed applications which are the same
    > application but deployed to environment production1 and redeployed
    to
    > environment production2
    > or
    > 3. Are you asking about 2 deployed applications whic are different
    > applications and each is deployed to either
    > 3a. a common deployment environment using the same
    "Forte_NS_ADDRESS"
    > 3b. two seperate deployment environements using the different
    > "Forte_NS_ADDRESS" and therefore may even be on sepearte LAN/WAN's
    >
    > -Jim
    >
    > At 11:33 AM 2/8/99 , Rajiv Srivastava wrote:
    > >Can somebody tell me that what r the possible way where two
    different
    > >independent Forte Installation can communicate to each other.
    > >and share certain the information.
    > >
    > >thanking you in anticipation.
    > >
    > >Rajeev
    > >
    > >-
    > >To unsubscribe, email '[email protected]' with
    > >'unsubscribe forte-users' as the body of the message.
    > >Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > >
    > Jim Rice mailto:[email protected]
    > Partner ConCall @ Feb 17
    > http://www.forte.com/events/frameset_partners.html
    > Forte Usr Mtg @ May9-12 http://forum99.forte.com
    > Partner Tech Specialist Work#: 301-721-1910
    >
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    I have similar arrangement here but for "user acceptence test". However,
    may I remind you that when some objects/codes got checked out --> overwrite
    with new import --> integrate --> check out again. Some funny things ( I
    would say corruption ) may happen. I have one time that a normal old piece
    of code got compilation error and no one can find out why. The last resort
    is that I deleted everything and start from scratch again. Then everything
    works.
    Thus, I would suggest that from time to time, you should start out with a
    new repository instead of using it over and over again in this fashion.
    Maybe you can archive the old one as a version backup.
    Regards,
    Peter Sham.
    -----Original Message-----
    From: Kalidindi, Ravi CWT-MSP [SMTP:[email protected]]
    Sent: Tuesday, February 16, 1999 1:10 AM
    To: 'Nick Delany'; 'Jim Rice'
    Cc: [email protected]
    Subject: RE: how can two Forte installtion communicate
    Nick...
    We have a similar situation here. We have about seven teams,
    each
    with their own repositories with interdependent code.
    Let me give you a simple scenario to explain how you can
    make it
    work:
    Problem
    --Team A is responsible for projects 1,2,3 and use repository RepA
    --Team B is responsible for projects 4,5,6 adn use repository RepB.
    --Project 2 is a supplier plan to project 5 and project 3 is a
    supplier plan
    to project 6.
    Solution
    --each repository is reponsible for some projects and these projects
    can be
    changed only in that repository.
    --each repository also has a workspace called "SlaveProjects"
    --This workspace has all the projects that are needed but are not
    developed
    by this team.
    --These projects are checked out so that no one else can change them
    -- so, RepB's slaveProjects workspace will have projects 2 and 3
    (and other
    projects they need).
    -- You can also password protect the slaveProjects workspace.
    -- When team A thinks they have a new working(or atleast compilable)
    "version" of projects 2 and 3, they can trigger of an fscript which
    will
    export the projects 1 and 2, possibly save it in version control.
    -- team B can then trigger another fscript which will pull the code
    from
    version control, import the projects 1 and 2 into RepB's
    slaveProjects
    workspace, integrate it and recheck everything out.
    Options
    -- you can get fancy with the scripts
    -- you can add the two scripts together to do the whole thing in one
    shot.
    However existense of many such repositories can cause integrate
    failures and
    you might not know where exactly it stopped. You need to log the
    output to
    keep track.
    -- you should probably make the second script actually create a
    temporary
    workspace, and import projects there and integrate. This is in case
    you had
    many other projects in the slaveprojects workspace that need not be
    integrated and rechecked out each time.
    -- you could create an application in forte or VB etc.. to make this
    process
    more sophisticated.
    Hope that gives you a start. Different locations definetly
    adds more
    complexity to this, but the concept should be the same. If you have
    more
    questions or need more help, I suggest you call Len Lopez at
    612-594-2539
    who has played around with this stuff a lot. He put in place a VB
    app that
    does most of the stuff for us and will probably make a presentation
    at the
    Forte Forum this year on the same topic.
    Good Luck!
    -Ravi Kalidindi
    Born Info Svcs Group.
    > -----Original Message-----
    > From: Nick Delany [SMTP:[email protected]]
    > Sent: Monday, February 15, 1999 10:27 AM
    > To: 'Jim Rice'
    > Cc: [email protected]
    > Subject: RE: how can two Forte installtion communicate
    >
    >
    > Jim,
    >
    > Rajiv may not be referring to scenario 1, but I'm involved in
    something
    > like
    > that.
    > We're a bi-located team, and while we are trying to split up the
    work to
    > minimise the geographical dependancies, I'd be interested in
    anything you
    > might have to say about the best way to share code/repositories.
    >
    > Nick
    >
    > -----Original Message-----
    > From: Jim Rice [mailto:[email protected]]
    > Sent: 08 February 1999 22:38
    > To: Rajiv Srivastava
    > Cc: [email protected]
    > Subject: Re: how can two Forte installtion communicate
    >
    >
    > Rajiv,
    >
    > Can you elaborate ? I can see your questions leading toward at
    least the 3
    > following scenarios....
    >
    > 1. Are you asking about 2 different independent developer groups
    which
    > have
    > only the internet as a possible connection pipe between them,
    > or
    > 2. Are you asking about 2 deployed applications which are the same
    > application but deployed to environment production1 and redeployed
    to
    > environment production2
    > or
    > 3. Are you asking about 2 deployed applications whic are different
    > applications and each is deployed to either
    > 3a. a common deployment environment using the same
    "Forte_NS_ADDRESS"
    > 3b. two seperate deployment environements using the different
    > "Forte_NS_ADDRESS" and therefore may even be on sepearte LAN/WAN's
    >
    > -Jim
    >
    > At 11:33 AM 2/8/99 , Rajiv Srivastava wrote:
    > >Can somebody tell me that what r the possible way where two
    different
    > >independent Forte Installation can communicate to each other.
    > >and share certain the information.
    > >
    > >thanking you in anticipation.
    > >
    > >Rajeev
    > >
    > >-
    > >To unsubscribe, email '[email protected]' with
    > >'unsubscribe forte-users' as the body of the message.
    > >Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > >
    > Jim Rice mailto:[email protected]
    > Partner ConCall @ Feb 17
    > http://www.forte.com/events/frameset_partners.html
    > Forte Usr Mtg @ May9-12 http://forum99.forte.com
    > Partner Tech Specialist Work#: 301-721-1910
    >
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • How can I edit multiple clips with different frame rates on the same timeline

    how can I edit multiple clips with different frame rates on the same timeline

    You do not want to edit material from different frame rates on one timeline. You CAN do this, but it is a very bad idea - and this is why.
    Once you establish the sequence frame rate - lets say it is PAL material at 25fps, any material that you drop into the sequence other than 25 fps will have to be changed to play at 25 fps. If the material you add is NTSC (29.97), FCP will DROP 5 frames per sec to bring the frame rate down to 25 fps. Which 5 get thrown away? Every 6th one. This yields a funky cadence that becomes even more complex as as there are also interlaced fields (DV/NTSC is an interlaced format). Oh, and by the way, the image sizes are different as well. DV/PAL has 576 lines of resolution and DV/NTSC has 480. FCP has to scale up the NTSC to fit the PAL frame.
    You do not want FCP adjusting these things on the fly. You want to do a thoughtful (and time consuming) conversion so that you end up with all your material in one format with the best possible image from the conversion process. Compressor can do an adequate job with Frame Controls turned on. The Natress Standards Conversion FCP plugin is another way to go. A third option is to find a post house that can do the conversion for you using a hardware based process.
    The good news is, once everything is in the same format, editing it will be painless and the output process very quick.
    Whatever frame rate/ image size you select, I'd suggest using ProRes for the codec. It is 4:2:2 color and will withstand color correction and composting with much more grace than any variant of DV based codecs.
    Have fun.
    x

  • How Can We Tune the Joins with "OR" Caluse ?

    Hi
    We've identified one Query in one of Our PL/SQL Stored Procedure which is taking huge time to fetch the records. I have simulated the problem as shown below. The problem Is, How can i tune the Jions with "OR" Clause. i have tried replacing them with Exists Caluse, But the Performance was not much was expected.
    CREATE TABLE TEST
    (ID NUMBER VDATE DATE );
    BEGIN
      FOR i IN 1 .. 100000 LOOP
        INSERT INTO TEST
        VALUES
          (i, TO_DATE(TRUNC(DBMS_RANDOM.VALUE(2452641, 2452641 + 364)), 'J'));
        IF MOD(i, 1000) = 0 THEN
          COMMIT;
        END IF;
      END LOOP;
    END;
    CREATE TABLE RTEST1 ( ID NUMBER, VMONTH NUMBER );
    INSERT INTO RTEST1
    SELECT ID, TO_NUMBER(TO_CHAR(VDATE,'MM'))
    FROM TEST ;
    CREATE TABLE RTEST2 ( ID NUMBER, VMONTH NUMBER );
    INSERT INTO RTEST2
    SELECT ID, TO_NUMBER(TO_CHAR(VDATE,'MM'))
    FROM TEST;
    CREATE INDEX RTEST1_IDX2 ON RTEST1(VMONTH)
    CREATE INDEX RTEST2_IDX1 ON RTEST2(VMONTH)
    ALTER TABLE RTEST1 ADD CONSTRAINT RTEST1_PK  PRIMARY KEY (ID)
    ALTER TABLE RTEST2 ADD CONSTRAINT RTEST2_PK  PRIMARY KEY (ID)
    SELECT A.ID, B.VMONTH
    FROM RTEST1 A , RTEST2 B
    WHERE A.ID = B.ID  
    AND ( (A.ID = B.VMONTH) OR ( B.ID = A.VMONTH ) )  
    BEGIN
    DBMS_STATS.gather_table_stats(ownname => 'PHASE30DEV',tabname => 'RTEST1');  
    DBMS_STATS.gather_table_stats(ownname => 'PHASE30DEV',tabname => 'RTEST2');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST1_IDX1');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST2_IDX2');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST1_IDX2');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST2_IDX1');
    END; Pls suggest !!!!!!! How can I tune the Joins with "OR" Clause.
    Regards
    RJ

    I don't like it, but you could use a hint:
    SQL>r
      1  SELECT A.ID, B.VMONTH
      2  FROM RTEST1 A , RTEST2 B
      3  WHERE A.ID = B.ID
      4* AND ( (A.ID = B.VMONTH) OR ( B.ID = A.VMONTH ) )
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=94 Card=2 Bytes=28)
       1    0   TABLE ACCESS (BY INDEX ROWID) OF 'RTEST2' (Cost=94 Card=1 Bytes=7)
       2    1     NESTED LOOPS (Cost=94 Card=2 Bytes=28)
       3    2       TABLE ACCESS (FULL) OF 'RTEST1' (Cost=20 Card=100000 Bytes=700000)
       4    2       BITMAP CONVERSION (TO ROWIDS)
       5    4         BITMAP AND
       6    5           BITMAP CONVERSION (FROM ROWIDS)
       7    6             INDEX (RANGE SCAN) OF 'RTEST2_PK' (UNIQUE)
       8    5           BITMAP OR
       9    8             BITMAP CONVERSION (FROM ROWIDS)
      10    9               INDEX (RANGE SCAN) OF 'RTEST2_IDX1' (NON-UNIQUE)
      11    8             BITMAP CONVERSION (FROM ROWIDS)
      12   11               INDEX (RANGE SCAN) OF 'RTEST2_PK' (UNIQUE)
    Statistics
              0  recursive calls
              0  db block gets
         300332  consistent gets
              0  physical reads
              0  redo size
            252  bytes sent via SQL*Net to client
            235  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              2  rows processed
    SQL>SELECT /*+ ordered use_hash(b) */ A.ID, B.VMONTH
      2    FROM RTEST1 A, RTEST2 B
      3   WHERE A.ID = B.ID  AND(A.ID = B.VMONTH OR B.ID = A.VMONTH)
      4  ;
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=175 Card=2 Bytes=28)
       1    0   HASH JOIN (Cost=175 Card=2 Bytes=28)
       2    1     TABLE ACCESS (FULL) OF 'RTEST1' (Cost=20 Card=100000 Bytes=700000)
       3    1     TABLE ACCESS (FULL) OF 'RTEST2' (Cost=20 Card=100000 Bytes=700000)
    Statistics
              9  recursive calls
              0  db block gets
            256  consistent gets
            156  physical reads
              0  redo size
            252  bytes sent via SQL*Net to client
            235  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              2  rows processed

  • How can I have two fields with the same name if it makes sense?

    Hello, folks :)
    I have a pretty hard time figuring out how I can have two text fields with the same binding name.
    The whole problem is that when I need two fields with the same binding name they are still differnent coz they have the same name but differnt indices.
    I should make a form filled at runtime by merging a pdf form file and an fdf file data file. And I have no choice to do it differently. And my form file needs some data like customerName, companyName twice in one form. But there's only one possible buinding name indexed zero.
    How can I create a field with absolutely the same name or is it just impossible due to possible name conflicts? And is there a workaround to this problem? I just need one piece of data repeated in different places.
    Thanks for your replies :)
    P.S. if u think that the problem is not clear enough let me know. I'll supply you with more details. But the general process can not be changed.
    One pdf should be mergred with an fdf with as the result of their merge a new filled and flattened form. I have no control over fdfs their are generated by Oracle and I can not fill the form using XML files coz this process should be integrated in a working application.

    I just thought about a really ugly workaround with a server-side script adding values to fdf files but it's a bit of work and tests and personally i think it's a bad idea :-(

  • How can I sync my calendar with outlook

    This question has a couple parts to it.<br><br>First, I am self employed and use Outlook as my primary calendar. With my BB7 device this syncing issue was easy but I find it so hard with my new Z30.<br><br>My email is a rogers.com email. I have 2 email accounts on my device (personal and business which are both rogers.com emails.<br><br>How can I sync my calendar with outlook and allow changes made in both outlook or the device appear updated on both outlook and my device?<br><br>When I make a calendar entry in my phone it prompts me to use either my groups, my work email, my personal email and then I see BLINK with the name of my office computer.<br><br>What should I be using as my default calendar? The one that says BBlink-Computer name or my business email address?<br><br>Secondly is there a way to sync all my calendar entries with outlook to avoid personal and business conflicts? That is my BBM group calendar entries, personal email calendar entries and my business calendar entries?<br><br>I'm really baffled by all this. I keep being told I need to set up an outlook.com email address. Do I really need to do this? I prefer not to.<br><br>Essentially, how can I make all my calendar entries show on my office outlook calendar so I can see everything to avoid scheduling conflicts and not need to check my device before booking an appointment in my desktop outlook?<br><br>Lastly I have my outlook set to show me Canadian Holidays. How can I get these to appear in my device calendar?<br><br>Please...<br>This has been baffling me since I for my device about a month ago. Any help would be greatly appreciated.<br><br>I have the latest link software on my PC and have the latest OS on my phone.<br><br>Thank you in advance to all that reply.<br><br>Regards,<br>Dan

    I think (and I'll double check) only the BBLink events will sync on a wired USB sync. I'm fairly certain of that.
    You'll need to use your calendar syncing via an EAS email account (outlook.com, for instance, is free) to sync wirelessly. It works great. I use it and was a former tied to the USB sync guy as well... and I thought I was gonna die a painful death without it. I found more freedom this way.
    This explains the process. But I don't think you'll get BBM Groups to sync.
    http://supportforums.blackberry.com/t5/BlackBerry-​Z10/How-To-OTA-Sync-BB10-and-non-BES-Outlook-Overv​...
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can I use the NI PXI-6508 with Lab View 7? what are the first steps to get started??How can I use the channels with lab view 7????

    I have a 8 slot PXI system with 2 NI PXI 6508 and 1 DMM 4070 in it. I want to get started with programming the digital I/O cards (6508)! How can I use this cards with LabView 7?what is the best way to get started, or where can I get examples showing how to use the several channels?
    Thanks!
    Philipp

    Philipp,
    The best way to get started is to decide if you want to use traditional NI-DAQ or NI-DAQmx. Recently we released NI-DAQ 7.1 which provides NI-DAQmx support for the PXI-6508. In my opinion, NI-DAQmx is more efficient and much easier to use.
    To get started with examples, simply launch LabVIEW and go to Help>>Find Examples. Then expand Hardware Input and Output>>DAQmx and select the appropriate digital group for your application. This should help get you started.
    Please repost if you need addition assistance. Good luck with your application!

  • How can i creat several rectangles with one draw rect.vi

    how can i creat several rectangles with one draw rect.vi? thanks
    Solved!
    Go to Solution.

    You can call it in a for loop, with an array of the rectangle coordinates you want to draw. Is this what you mean?
    CLA, LabVIEW Versions 2010-2013
    Attachments:
    rectangle.png ‏11 KB

  • How can I sync iPhone 3GS with my Windows 7 PC, when iTunes does not appear on monitor screen when I plug the iPhone into the computer?

    How can I ync iPhone 3Gs with my Windows 7 PC, when iTunes does not launch when I connect the iPhone to my computer? Note: My computer crashed and I am reinstalling everything.

    Syncing to a new iTunes library or computer will erase your phone. Only if you back up your phone manually before syncing, you can restore your device from that backup again. A manual backup does not include the sync process.
    Do this:
    Disable autosync in iTunes, connect your phone to your new computer and right click on it in the device list and choose backup. iTunes will backup your device without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect your phone for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the iPhone for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in iTunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread: http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved:iTunes: About iOS backups
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device
    You can also back up iTunes and restore it on your new computer How to back up your media in iTunes , but the iPhone will be erased anyway during the first sync.

  • How can i install another software with yum? No repo!

    Hi
    How can i install another software with yum? I can't find any softwarerepo. */etc/yum.repos.d/* is empty. Sorry I do not understand this. And update also not working.
    And the other thing is the Managementtool: https://myhost:5989_
    The website can not process the request. HTTP Error 501 (Not Implemented): The server does not have the necessary functions to process the request.
    What must i do that this things work?
    Thanks and Greetings
    tux007

    909396 wrote:
    How can i install another software with yum? I can't find any softwarerepo. */etc/yum.repos.d/* is empty. Sorry I do not understand this. And update also not working. If you don't have Oracle Linux support, you can use our public Yum repository. Instructions for setting this up can be found at http://public-yum.oracle.com.
    If you do have Oracle Support, follow the instructions at http://linux.oracle.com to register your server with the Unbreakable Linux Network for updates.

  • [pavilion g7-2116sr] How can I use amd driver with only integrated graphic?

     Radeon hd 7670m is disabled coz it's broken. Amd driver don't work. Windows use vgasave driver. How can i use amd driver with radeon hd7660g?
    P.S.  Sorry, my english isn't good(

    Hi @Leys 
    I see you are stilll unsuccessful installing the drivers as you get the blue screen.
    Here is a link to Computer Does not Start (Windows 7, Vista, XP) that may help.
    Here is a link to Testing for Hardware Failures (Windows 7, Vista) to determine if your graphic card is defective.
    If the graphic card fails, here is a link to the HP Pavilion g7 Notebook PC Maintenance and Service Guide. Please note page 9 or chapter 1 page 9 for a list of recommended replacement graphic cards.
    If the graphic card passes you may wish to consider doing a restore back to a known good time or a full recovery back to factory.
    Using Microsoft System Restore (Windows 7)
    Performing an HP system recovery (Windows 7)
    During the recovery process there is an option to backup your personal files to prevent data loss.  If you have not done one yet I suggest you do one now.
    Restoring Files that were Backed Up Using HP Recovery Manager (Windows 7)
    At any time you may wish to contact HP support for assistance.
    Please call our technical support at 800 474 6836. If you live outside the US/Canada Region, please click the link below to get a support number for your region.
    World Wide Phone Support
    Good Luck!
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • How can I associate 2 appleids with one account or use a different Appleid for imessage as described in another post?

    How can I associate 2 appleids with one account or use a different Appleid for imessage as described in another post?
    I have rejoined the iPhone community, not with one iPhone but with two. My wife agreed to move from the unenlightened!
    I have set up both under my apple account and want to keep it that way. But I do not want iMessages going to both phones. I would like separate message queues but share all apps and other purches from the store.
    I have created a separate AppleID for her but under Settings>Message>Receive At (it currently says 2 addresses) > ... will not allow me to change the current eMail address and when I add hers (her appleid) it errors out. The only thing I can do in the Apple ID field is to manage my account and not change it to hers.
    How can I have 2 iPhones (and my iPad) on the same account but have separate identies?
    Thanks,
    LpGrumpy

    1. Yes. Restart with the Option key held down as needed.
    2. No, it won't be a problem.
    (83373)

Maybe you are looking for