Merge Microsoft Surface(XNA) application with Microsoft Surface( WPF) application..

Hi All,
I have made an application in XNA ..which contained 3D building ,in which u can zoom the building, panning the building, rotate it & when u move yr finger over the building then it show individual floors of building , i mean when yr finger is on first floor
then it show 1 floor as so on , & if u tap any floor then u jump to isomeric 3d part of that floor & here u found same functionality like zooming , panning etc..
Now I wants to merge above XNA Application with my Surface(WPF) application ..for that I made the dll of my XNA apps & imported it in Surface(WPF) apps & tried to merge it but din't got success .....If any one has any idea please let me know ....
Regards 
Anupam Mishra

did you got it working? I am in desperate need of this solution as I am approaching to my deadline for project.
Thanks

Similar Messages

  • Building application with microsoft agent

    Can someone clarify if there is anything different that needs to be done while building a stand-alone application that includes VIs that use the MS agent voice VIs (for example MSagentTTS.llb) along with CGI VIs? I have been able to build applications with only CGI VIs but failed while adding MS agent VI functionality. Any help is greatly appreciated.
    -Sheela

    "Belur" wrote in message
    news:[email protected]..
    > Can someone clarify if there is anything different that needs to be
    > done while building a stand-alone application that includes VIs that
    > use the MS agent voice VIs (for example MSagentTTS.llb) along with CGI
    > VIs? I have been able to build applications with only CGI VIs but
    > failed while adding MS agent VI functionality. Any help is greatly
    > appreciated.
    >
    You'll need to install the Microsoft Agent parts on the target computer.
    They are:
    MSAgent.exe - the core components
    actcnc.exe - MS Speech Recognition Engine
    tv_enua.exe - MS Text To Speech engine
    Merlin.exe - or any of the available different voices
    Theses are available for downl
    oad from
    http://www.microsoft.com/msagent/downloads.htm

  • Interface jsp application with microsoft outlook

    hi friends,
    i have a requirement in one of my project.
    the project is something like this..
    my jsp page contains some fields
    like
    To:
    Subject:
    & many others....
    now i want my jsp application to communicate with microsoft outlook,
    wher i press submit on my jsp page & all the data entered in the jsp page should replicate in my outlook & from here i can send across the mails..is it possible....or is there any other way i can send mails using my jsp application..
    expecting ur replies to tackle intrestin problem
    thanks in advance
    Ganesh BS

    hi,
    check with this code.....if u have outlook its well N good..other it works with other mail systems like yahooo...(only thing u need is internet)
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <%@page language="java" %>
    <html>
    <head>
    <SCRIPT LANGUAGE="JavaScript">
    function mailsome1(){
    who=prompt("Enter recipient's email address: ","[email protected]");
    what=prompt("Enter the subject: ","none");
    bod=prompt("enter text","");
    if (confirm("Are you sure you want to mail "+who+" with the subject of "+what+"?")==true){
    parent.location.href='mailto:'+who+'?subject='+what+'?textbody='+bod+'';
    </SCRIPT>
    </head>
    <body background="background1.JPG";>
    <a href='javascript:mailsome1()'>E-Mail Someone!</a>
    <FORM>
    <input type=button value="E-Mail Someone!" onClick="mailsome1()">
    </FORM>
    </body>
    </html>

  • Apex Application With Oralce SSO (inbuilt) application integration

    Hi,
    Installed oracle 11g, configured Application Express Release 3.0.
    I developed application in APEX.
    Now I want to authenticate my application with Oracle SSO login.
    Please help me on this.
    Thanks in advance.
    Thanks,
    Surya

    Hello Surya,
    If you follow the instructions here you should be able to connect to your SSO.
    http://www.oracle.com/technology/products/database/application_express/howtos/sso_partner_app.html
    Peter

  • One application with Multiple schemas- common application frame work

    Hi All,
    I am trying setup a common application frame work in apex. Please help me.
    How to achieve this.
    Creation of one application attached to different schemas at run time. So that my application maintaince is going to be easy instated of creating copies of same application.
    More details:
    1. I have one application with 100 pages pointing to a schema dev_common in one workspace APP_COMMON. I have 50 schemas with same structure of dev_common schema with different set of data ( because of large amount of data).
    So I want to create one application attached to different schemas.
    2. And another thing is I have 100 users, the user can work on 1 or multiple schemas ( I mean same application with different schemas attached)
    Any help much appreciated.
    Thanks,

    Thank you for the reply.
    >> b) I think you have to give access rights for the dev_common and app_common to all users.
    Dev_common schema is a kind of placeholder. I have 50 schemas same as dev_common because of different business requirements but the front end is same for all 50 schemas. How can we create one application used for 50 schemas instead of creating 50 applications and 50 workspaces.
    Please help me.

  • Connecting Java Application with Microsoft Word Toolbar

    My project involves designing a GUI with which I will use Java for. And I also have to create a Microsoft Word Toolbar that will open the Java GUI. There will be other interactions between both the GUI and the toolbar.
    Is that possible? Or shall I use Visual Basic or .NET for the GUI?
    Advice appreciated please!

    hi
    check this
    http://help.sap.com/javadocs/NW04/current/bi/docs/connectors/sapq_howto.html
    let me know am i reached ur  point
    bvr

  • Does adobe frutiger standard family compatible with Microsoft office

    does adobe frutiger standard family compatible with Microsoft office?

    The OpenType CFF version of Frutiger is compatible with Microsoft Office.
    Beginning with Microsoft Office 2013 / Office 365, Microsoft Office is not compatible with any Type 1 fonts previously licensed by Adobe or anyone else (including Frutiger); that was Microsoft's decision folks!
              - Dov

  • Calling a BSP application with MVC and send one start value

    Hi,
    I developed a BSP application with BSP. The application has a start page with one input field. The user gives a number and click the send button. The controller creates the modeler and gives the userinput as start parameter for the data search. After the data are read/found, the controller calls a view to show the data.
    This is very easy and does work.
    I have to call this simply application from another one: the caller application sends the start value.
    I don't know, if is better to send the start value in the URL or not. I tried it, but the controller cannot read it.
    How can I call the controller with a start value?
    Thank you!
    Bye
    Patrizia

    Hi ,
    what you need to do is
    1) for the "Send" button attach a java script.
    <htmlb:button id="myButton" text="Submit ...." onClick="sendRequestWrapper()"/>
    this javascript should take the inputfrom the field,
    then in the javascript create the URL.
    function sendReqeustWrapper(){
    sendRequest(InputField);
    function sendRequest(InputField)
    var URL;
    URL  = window.location.protocol + "//" ;
    URL += window.location.host ;
    <b>Note: its only Example link,</b>
    URL += "/sap/bc/bsp/sap/<BSPApplication>/controller.do";
    URL +="?InputFieldName=";
    URL +=InputFieldValue;
    <b>then use</b>
    Your URL will look like:
    http://ld0507.wdf.sap.corp:50007/sap/bc/bsp/sap/<bsp appl>/controller.do?InputFieldName=XXXXX
    window.open(URL,"_self","");
    so once this URL is triggered  you need to goto the respective controller and handle the input. You can see the reply from Mr. Akshaya Rao .
    regards,
    Vijaya Kumar M.
    Message was edited by: Vijaya Kumar

  • Photoshop CS5 with Microsoft Surface

    Can anyone share their experiences with Microsoft Surface and Photoshop CS5 since the pen has been "fixed" . I have been using Wacom Bamboo with a PC and would like something more portable for travel.

    Windows 7 x64 is a separate build from Windows 7 32 bit.  Windows 7 Ultimate comes with BOTH.
    There isn't a separate package of Photoshop CS5 for 32 bit or 64 bit.  Photoshop (since CS4) installs both 32 bit and 64 bit software on a 64 bit Windows system, or only 32 bit software on a 32 bit Windows system.
    Photoshop CS5 is fine with every variant of Windows 7.
    Photoshop CS5 is reportedly fine with modern AMD processors, though I have only used Intel.
    The detailed system requirements are here:  http://www.adobe.com/products/photoshop/photoshop/systemreqs/
    My own (personal, subjective) opinion is that ATI (AMD) video interfaces are better than nVidia.
    Hope this answers your questions.
    -Noel

  • Does the microsoft surface rt work with iPhone/ipod?

    Does the microsoft surface rt work with iPhone/ipod?

    I have an iphone and was told that the surface rt cannot be sycned to my iphone like my
    Music directly. I think thats crap and am deciding whether or not to get the surface as my laptop. Do you know if it is able to sync music from it to my iphone?

  • Would Microsoft's surface keyboard work with the ipad air ?

    Hi, I know that this might be deemed as stupid but I am just curious: Would Microsoft's surface keyboard work with the ipad air ?
    Is the surface keyboard bluetooth enabled ? If so, then it should work, right?

    No, it would not. The Surface is optimized and uses a different operating system than iOS7.
    I'm pretty sure that both the Surface and iPad Air can use Bluetooth; but Bluetooth peripherals might or might not be recognized.

  • My macbook is loaded with microsoft work and every time I try and open the program I get an error reading and it will not open.  Powerpoint and the other applications still respond!

    my macbook is loaded with microsoft word for macs and every time I try and open the program I get an error reading and it will not open. This is what it says:
    The application Microsof Word quit eunexpectedly.  Powerpoint and the other applications still respond!

    The joys of Microsoft!
    Maybe the preferences file is corrupted.  You should be able to find the Word preferences file in the folder:
    your user name/Library/Preferences
    Its name is com.microsoft.Word.plist
    I suggest you drag this another folder and try Word again. 
    If that doesn't work then you might find clearing the cache files will fix the problem.  You can do this manually but I never bother. Instead I use a program like Snow Leopard Cache Cleaner (shareware) or Onyx (free). These programs do lots of other maintenance jobs so it's worth having at least one of them.
    Bob

  • Many years ago synced iCal with Microsoft program. Since installing Lion whenever I try to create an event in iCal it flashes up message "Unable to open Microsoft sync services Power PC applications no longer supported." How do I get rid of message?

    Many years ago synced iCal with Microsoft program. Since installing Lion whenever I try to create an event in iCal it flashes up message "Unable to open Microsoft sync services Power PC applications no longer supported." How do I get rid of message?

    Lion no longer supports PowerPC apps. If this is Microsoft Office 2008 (Entourage 2008) then you should disable the syncing services.  (I don't have Office 2008 installed anymore so I don't know exactly what it's called anymore.)  If you have Microsoft Office 2004 or earlier, then it can't be run on Lion at all since Lion removed Rosetta, which is what allowed a PPC app to run on an Intel based Mac.
    Also, I believe Microsoft removed sync services from the current Outlook 2011 (which replaces Entourage) so even upgrading to a newer version of Microsoft Office will not get you back that calendar sync feature.  Supposedly Microsoft is working on a new syncing system, but I wouldn't hold my breath.

  • I installed Lion and now seem to have problems with Microsoft Silverlight and other plug ins and applications.  I haven't ever used time machine to back up (my bad I know).  Is there a way to go back to snow leopard with messing up all my files and my set

    I installed Lion and now seem to have problems with Microsoft Silverlight and other plug ins and applications.  I haven't ever used time machine to back up (my bad I know).  Is there a way to go back to snow leopard with messing up all my files and my set?

    Are you using the latest version of Silverkeeper? - v.2.0.2 is stated to be compatible with Snow Leopard.
    http://www.lacie.com/silverkeeper/
    If it's messing things up you could try asking LaCie Support for assistance.

  • Can Microsoft active directory integrated with Oracle Applications

    Hi,
    Can anyone provide me any document on Microsoft Active Directory Integration with Oracle Applications(12.0.6)
    Manish

    Hi,
    It is possible, please refer to the following documents for details.
    Note: 376811.1 - Integrating Oracle E-Business Suite Release 12 with Oracle Internet Directory and Oracle Single Sign-On
    Note: 415007.1 - Oracle Application Server with Oracle E-Business Suite Release 12 FAQ
    Regards,
    Hussein

Maybe you are looking for

  • Unable to start diagnostic mode

    I have a mid-2012 macbook pro. It will not startup. during startup the status bar on the bottom of the screen starts and stalls after approx 5% of the way. I tried to startup in the diagnostic mode by holding down the D key during startup but I still

  • We would like to test old deltas from the source system( copied to new)

    Hi Gurus, The scenario is They will make a DB copy of the Prod system onto a QA system, the Copied system will have its system ID changed(SID) to a new one. There will be deltas available in the RSA7, as this is a copy of the  3 weeks old prod system

  • WHY DOES MY HP PRINTER (TAKES A #78 COLOUR CARTRIDGE) PRINT SOME DOCUMENTS IN RUSSIAN??

    Please could someone tell me why my HP printer prints some documents in RUSSIAN?? (don't know model - but it takes a #78 colour cartridge) The documents are not type of format and are in English when on my computer screen!!!! H-E-L-P PLEASE?????

  • External Hard drive permissions

    I have a 4 TB external hard drive which is formatted as NTFS - when I load it on my mac I can only read the drive and cannot edit, add, delete etc. therefore obviously making it useless! This problem hadn't occurred to me before purchasing my mac so

  • Do NI PXI Chassis support 3.3V PXI?

    Newer DSPs, e.g. TI TMS320C6415, which have a PCI interface built in, only support 3.3V PCI levels. Therefore, the PXI chassis must operate at the 3.3V level as well. In addition, the cards, such as MXI-3 need to operate at those same levels. Will th