Software Development Network Logo
  • .NET Development
  • Game Technologies
  • Visual C++
  • SQL Server
  • Windows Vista
  • SharePoint Products
  • Audio and Video
  • Windows Forms
  • Visual C#
  • VS Team System
  • Visual Studio
  • Smart Devicet
  • IE Development
  • Microsoft ISV
  • Visual FoxPro

Software Development Network >> Navin C's Q&A profile

Navin C

Member List

Edward B.
RMORAR
shahrul
thames
Saman Attarian
Andrew MacNeill
akaRickShaw
xelatihy
Bachmo
Pp-Virmati
Jason W. Matthews
bsavaliya972
NetPochi
zhihao
lloydsantos
Mads Torp Jacobsen
Alastair Q
Hendo
Nefer-Ra
Kur Lan
Only Title

Navin C's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. mesh not rendering

    I set up my camera matrix to look at the origin. Then in my render loop I transform to the cameras matrix d3d->GetDevice()->SetTransform(D3DTS_VIEW, camera.GetViewMatrix()); begin the scene and set the render state. d3d->BeginScene(); d3d->GetDevice()->SetRenderState(D3DRS_FILLMODE, D3DFILL_WIREFRAME); then transform to the meshes matrix d3d->GetDevice()->SetTransform(D3DTS_WORLD, m_Object->GetMatrix()); and render the mesh m_Object->Render(d3d->GetDevice(), &meshes[m_Object->GetMesh()]); end the scene. nothing shows up on the screen, I took a look in the debugger and everything is positioned where it should be, is this not the proper way to set up the render loop. ...Show All

  • .NET Development Tackling the SqlCommandBuilder once again!

    Hi. I am developing a form which contains of the following: 1 ListBox, 1 ComboBox and 1 DataGridView. The ListBox contains a list of Sql Server databases currently stored which contain multiple tables. The ComboBox is populated with the names of the tables and the DataGridView is populated with the selected table. My code is as follows: private void BankComboBox_SelectedIndexChanged( object sender, EventArgs e) {      // Place here the code to display the current bank.      int i = this .BankComboBox.SelectedIndex;      if (i < 0)         i = 0;      try      { ...Show All

  • Visual Studio Tools for Office Mail Merge Visual Studio 2005 Office 2003

    Can someone direct me to the correct forum/thread/site to help me with Mail Merge with VSTO I can do a mail merge just fine with Word 2003, but I don't know where to start in VSTO. I want to be able to program in VS2005 and manipulate the data after each merge Private Sub ThisDocument_MailMergeAfterMerge( ByVal sender As Object , ByVal e As Microsoft.Office.Tools.Word.MailMergeAfterMergeEventArgs) Handles Me .MailMergeAfterMerge End Sub I tried looking under the tools menu and mail merge wasn't there. Can someone please help Your help would be truly appreciated. thanks. That's cake. What you'll need is to refer to the MailMerge.OpenDataSource() method and the MailMerge.Execute method. Here's a small exa ...Show All

  • Windows Forms UserAppDataPath not returning a value ?

    I've written a program in C# Express and can run it successfully on my own computer. This program uses the Application.UserAppDataPath property to store my selected options in an xml file. I've deployed this program via ClickOnce from my web site to my girlfriend's machine. When she tries to run the program, the program won't save her options like my copy does. There seems to be no UserAppDataPath being created on her computer, and so the program doesn't run right. Is there some kind of limitation of ClickOnce deployment, or something security-related I haven't enabled or some such adam I should add that no exception is thrown when the program runs on the other computer, it just doesn't do what m ...Show All

  • Visual Studio Automation server can't create object - figured out my problem

    Recently I was working in Microsoft Visual Studio .NET 2003 and all of a sudden I couldn't create a new project. I tried creating a Visual C++ Project (Console Application .NET) but I always got the error message: "Microsoft Development Environment >> Automation server can't create object". I then searched Google for that error message and found a page that said that downloading the "WindowsXP-Windows2000-Script56-KB917344-x86-enu.exe" update would fix this ( http://www.microsoft.com/downloads/details.aspx familyid=C717D943-7E4B-4622-86EB-95A22B832CAA&displaylang=en ) So I downloaded that update and installed it. When the computer restarted I got the error messsage "Error registering the OCX C:\Windows\sy ...Show All

  • Software Development for Windows Vista New Browser Windows when calling IWebBrowser2::Navigate

    EDIT: See my last post for more information about specifically what's happening (in regards to the IInternetSecurityManager not being queried for). I have a dialog in my code with an embedded browser control.  Previously (XP and IE6), it worked correctly, the embedded control could display web pages properly inside itself.  On Vista, I am having a strange issue that instead of loading the page on itself, it creates a new browser window and loads the page there instead.  I have tracked it all down to IWebBrowser2::Navigate.  As soon as I call this, the new browser window is created and the page loaded there. There is another thread with this same issue, but no solution was ever posted.  Has anyone else encounter ...Show All

  • .NET Development WSE 3.0 Secure Conversation

    Hello, I have a few questions about WSE 3.0 Secure Conversation features. When is it appropriate to use it Is it just for performance increase And when establishing a secure session is it possilbe to use that to create a stateful web service experience. Can i replace [enableSession=true] and use this instead Thanks, Kostadin Hi Kostadin, While there are more reasons to use secure conversation than simply performance boost, it would be the main reason why you would want to use it. The following article can answer questions you have towards secure conversation. http://msdn2.microsoft.com/en-us/library/ms996470.aspx The article was written towards WSE 2, but the concept of s ...Show All

  • Visual Studio DSL Tools support for Visual Studio editions

    I promised that I'd get back to this forum with details of our licensing plan once they were available. I'm pleased to say that we can now make some details available (Please also see our Modeling Strategy and FAQ ). On release, the DSL Tools for Visual Studio 2005 will be part of the Visual Studio 2005 SDK. We'll support the following editions for authoring DSLs: Visual Studio Professional Edition Visual Studio Team Edition for Software Architects Visual Studio Team Edition for Software Developers Visual Studio Team Edition for Software Testers Visual Studio Team Suite We'll support the following editions for deploying the DSLs that you build: Visual Studio Standard Edition Visual Studio Professional Edition Visual Studi ...Show All

  • SQL Server Open url in a new window

    hi, I got a problem with reporting services 2005. I have to create a link activated by clicking on an image. In the image navigation properties I inserted the link in "jump to url"  but the problem is that no new window is opened, the url is opened in the initial report page. I tried to use jscript this way: javascript:window.open("myurl","", "scrollbars=yes,width=800,height=600,left=0,top=0"); but in this case the url opens in a new window but a blank page is shown in the report page. How can I solve this problem and open the url in a new window without changing the report page Thanks in advance and sorry for my english I made the Jump to URL expression as: =void window.open('h ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. PLEASE HELP! CANNOT RENDER TERRAIN AT Beginning Game Development Guide from Code4Fun

    THATS IT. I run the example code from BattleTank 2005, and everything its ok, except the terrain, it is just dont being rendered. I dont know what it is, there is no error, the screen appears with all others elements except the terrain. Hope some one can help with this issue. I'm using WinXP VS.NET Standar Edition DirectX SDK (December 2006) .NET framewok 2 and 3 installed C# Language Thank you very much. http://blogs.msdn.com/coding4fun/archive/2006/11/09/1044115.aspx#comments This would imply your card cannot handle hardware vertex processing. I'm not too surrised since thats a pretty old DX8 card http://en.wikipedia.org/wiki/Radeon_9200 ...Show All

  • Visual Studio Express Editions Help needed to understand a compiling error on a simple C++ program

    Hello: I recently downloaded the Visual C++ 2005 Express edition and when i try to compile the following code: #include "iostream" int main() { cout << "hello" ; return 0; } I allways get a compiling error stating that: .\testC.cpp(5) : error C2065: 'cout' : undeclared identifier So what am i doing wrong here The code sample is from the book C++ How to Program by Deitel & Deitel and i just changed the original # include <iostream.h> statement to #include "iostream" because the include directory of VC++ 2005 Express Edition contains the file iostream without the .h extension and changed the <> symbols to "" because the examples that i saw i ...Show All

  • Windows Search Technologies Quick questions from a new user

    Just downloaded WDS for use with Office 2007 Beta2Tr... Where do I find out which version of WDS I'm running The file I downloaded has a version of 6.1.22.4... How do I get the indexing to stop I pause it for 8 or 12 hours and it starts up again, slowing down my whole PC... I've been a long time X1 user and have loved it... I'd like this to work since it's so integrated into Office. Thanks for the support! Lon Hello Lon, You can see the version of WDS that you're running by looking in the registry under: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search [CurrentVersion] - this will show the full version number of WDS. As for pausing indexing, you can cause it to sn ...Show All

  • Visual Studio Express Editions Form 1, 2,....

    How can I make from Form1 to Form2 on buttom click WITHOUT NEW WINDOWS I want all form in only one form. Please help thank you so much! I'm sorry but I do not. Did you take a look at the screen shots at the bottom of the link I gave above Is what you are looking for something like that Using MDI means that you have a parent form and within it's area child forms can exist and only within that area. If MDI is not what you are looking for could you please be more specific in what it is you trying to do ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. question on creating custom background

    Hello all ^^ I was wondering if anyone would be so kind as to let me know how to create my own custom background into my game. I used The Gimp to make kind of a Space-looking .png file, but im not quite sure as to how to go about replacing the CornFlowerBlue color background with the picture. Any help would be much appreciated. Thankyou! ^_^ A correct way of doing it would be: Create a SpriteBatch, a Rectangle, and a Texture2D in your class. In the class constructor and the Window.ClientSizeChanged eventhandler, set the Rectangle to (0, 0, Window.ClientWidth, Window.ClientHeight). Load the Texture2D from the file, and create the new spritebatch in the class constructor. In the drawing part, aft ...Show All

  • SQL Server How to enable clients to access the same DB via SQL Express

    Hi to all! My problem comes from this situation: I have two PC connected via a network calble; on the first I have SQL Server 2005 Express, an MDF data file in a shared directory under the "Document and Settings" path, and my program written in VB .NET 2005. On the second PC I have only my program, and I would like to have it connect to and work on the MDF on the first PC. The program on the first PC works well and uses a connection string like the following: Data Source=.\SQLEXPRESS;AttachDbFilename=<path>\<name>.mdf;;Integrated Security=True;User Instance=True I am able to access to SQL Express from the second PC (I have enabled the Client to use the right TCP ports, told the firewall to let them work and enabled ...Show All

©2008 Software Development Network