SivaS's Q&A profile
Game Technologies: DirectX, XNA, XACT, etc. Mesh disappearing after a small amount of time
Hi all, well after playing a bit of beta 2 i founded a problem! Basically in my game, there is one spaceship that goes constanly in (depth, Z...) and there is camera that follows him all the time.And then, suddently after small amount of time (5-7sec) everything disappear, i can only see my background color. So does that mean that 3D space have its boundaries, where the meshes will get disposed If so, is there any way to expand them My game is supposted to be like real-time spaceshooter. Some snippets of code that may can help: =========================================================== private Vector3 SpaceshipPosition = new Vector3(0.0f, -450.0f, 50.0f); private Vector3 CameraPosition = new Vector3(0.0f, 0.0f, 5000.0f); override Update() ...Show All
Windows Forms Installer package
Hi, I am looking for a good and free installer package. A programm like Instal Shield or somthing simmlar like that. I've found NSIS to be much more versatile and customizable than Inno, but has a steeper learning curve. http://nsis.sourceforge.net/Main_Page They do have a pretty good forum, but as always, RTFM and also try out all the samples which cover all the basics. ...Show All
Visual C# vjslib and other unwanted assembly references in web.config
Hi all, I apologize if this is not the proper forum. I have a big solution containing a couple of class libraries and a web site (project type: file system based asp.net web site). Every time I build the web site, the following assemblies are added to the web.config: <add assembly="vjslib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03 ...Show All
Software Development for Windows Vista AutomationElements with no supported patterns
I'm attempting to automate one of our company's products, and I've run into a snag: I can get an automation element for all of the controls in the product, but many of the controls have no supported control patterns. IE: the menu bar and tool bar of the product have no control patterns supported, and no children. The product is built on .Net 2.0 windows forms, and uses primarily standard controls. Automation code will have to be done on the client side, as there are currently no plans to add server side support at this time. I've looked into the possibility of using client-side proxies for automation, but I'm not sure if that's what I need. (Especially since many of the controls in the product do have supported control patterns, and ...Show All
SQL Server Error viewing report created in Report Builder
Using the report builder, I created a simple report based on a report model. This report runs ok in the report builder. I proceeded to save the report to the report server, but when I want to view this report in Report Manager, I get the following error: An error has occurred during report processing. Query execution failed for data set 'dataSet'. Incorrect syntax near '<'. The label 'xmlns' has already been declared. Label names must be unique within a query batch or stored procedure. The label 'xmlns' has already been declared. Label names must be unique within a query batch or stored procedure. The label 'xmlns' has already been declared. Label names must be unique within a query batch or stored procedure. The la ...Show All
SQL Server import database
I need to import a database from MS SQL 2000. I created the database. Then I create the database scripts and run them in sql express but I get this error. "The specified schema name "username" either does not exist or you do not have permission to use it." I have also tried to use DTS on MS SQL 2000 to export the data into text file. I do not have the ability to copy the mdf files and attach them in SQL express or make a backup. SQL Server introduced the schema whcih did not exist in SQL Server 200. YOu would either have to rename the object owner in the script to a existing schema (like dbo) or create the appropiate schemas in SQL Server 2005 which were fromer the owners of an object ...Show All
SQL Server Install and Uninstall problem
I am having very simular problems with installation and uninstallation as Laydee is having. There had never been another instance of any type installed on my local computer, I installed SQLExpress because we want to begin migrating to something for the future, and after reviewing all the other options out there decided SQL Server 2005 would be the most efficient use of time and resources. The initial installation was successful, and we were doing well, writing the new GUI in VB6, then decided we would try VB 2005 in order to take advantage of the .NET framework, stored queries, etc. the first time we accessed the database (Thank God it wasn't the production database) it corrupted something, somewhere and we never could get anything t ...Show All
Visual Studio Team System MSProject Undo and Redo disabled
After choosing a team project and get some workitems the undo and redo items in MS Project are permanently disabled. Is anyone else finding this Is there anywhere on Microsoft's website where this issue is documented I have run into the same issue while using the object model in MS Project macros and I want to give my client proof. Thanks! ...Show All
Visual C# Using C# to Delete contents of entire Access Table in one step
I need to delete the entire contents of an Access Table after I am done using it. I am using the Table to store data until it is printed in a Crystal Report. After it is printed I no longer need that data in the Table. I have been able to delete individual rows in the past using the .Delete(...) and then the .Update(...) functions. The prblem is that doing this for 5000+ records several times a day would be cumbersome and time consuming. Is there a comand for deleting all the contents of the table in one step currently for testing purposes I am just opening the database and manualy deleting the entire contents of the table. Here is my current code for deleting the data: public void LoadDelete ( int Count) { StreamReader read ...Show All
SQL Server A Problem with Processing a datamining structure
Hello : I have tried to process a datamining structure in SQL Server 2005 (Developer Edition) but I receive these messages from Sql Server : "Errors in the high-level relational engine. A connection could not be made to the data source with the DataSourceID of 'Dbjao', Name of 'Dbjao'." "Errors in the OLAP storage engine: An error occurred while the dimension, with the ID of 'MCredito ~MC-Id', Name of 'MCredito ~MC-Id' was being processed." "Errors in the OLAP storage engine: An error occurred while the 'Class' attribute of the 'MCredito ~MC-Id' dimension from the 'CreditoAleman' database was being processed." I generate this model from a relational table and can explore this table and build and deploy the pr ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Render to Texture
Hi, is it possible to render my 3d world to a texture instead of the screen If so, can someone please supply a short example of how to do this. FYI - I am using depth buffer enabled =true. I have looked at some other posts regarding this topic, but the code no longer seems applicable since the release of version 1.0. Any help is much appreciated. Dave PS XNA is really good fun !!!! Thanks guys !!!! thanks guys. GiantKiller - I need to render to the texture, not just get a copy of the current screen. But what you have found will be very useful for another part of my game, thanks for that mate !! ...Show All
SQL Server Slowly seek in access
Hi I have a frontend Access and backend SQL works fine but when i in my customer table seek in name it takes very very long time . I use ODBC to my connection is there anayway to this better. regards alvin It also depends on what you are doing with the data that is returned to Access. How are you processing the returned data. It may be that SQL server is returning the data very quickly, but Access is taking a long time to parse the data. You could put debug.print statements on the access side to see how long it is taking to return and then process the returned data. ...Show All
SQL Server How do I get rid of SQL Server?
An icon for Microsoft SQL Server Service Manager just started showing up on my taskbar. I didn't install SQL Server. The icon starting showing up after I ran Windows Update. SQL Server is not listed in my Add/Remove programs, and I can't seem to find the application anywhere on my laptop. I have a new (less than 6 months old) Dell laptop running WinXP Professional. I seem to have lost my Internet connectivity at about the same time this icon showed up. I did a system restore back to before I installed the Windows Update, and the icon disappeared. However, it has now shown up again. Anybody know what's going on with this Does some other app use SQL server I really need to fix this problem. Thx, j ...Show All
Windows Forms DataGridViewComboBoxCell issue
When a cell in a databound datagridview (combobox style) is clicked, it enters editmode. The only way to exit editmode seems to be to click in another cell. When the dropdown list is opened and closed again by the user, the cell still remains in editmode. How can I exit editmode programmatically without leaving the cell The cell's IsInEditMode is true, the DataGridView.IsCurrentCellInEditMode Property is true as well. The datagridview endedit method doesn't work. Thanks Leo Leys ...Show All
Visual Studio Tools for Office Word and line command argoment
Hi, Sorry for my english! I would to read some arguments that I send to a word document on command line. Some could help me hello & thanks Ivan The problem is that I have more project in one solution (VS 2005). When I open the word document, i would to send some values. I open the word document with a simply "Shell " command!!! ... than I've thinked that i should send the values on command line!! ...Show All
