ZBufferMan's Q&A profile
Software Development for Windows Vista Unable to install "Orcas" with WinFX SDK and Runtime Beta 2
On fresh Windows XP SP2 I have successfuly instaled: - Visual Studio 2005 C# Express edition - Microsoft Pre-Release Software WinFX Runtime Components - Beta2 - MicrosoftR WindowsR Software Development Kit (SDK) for Beta 2 of Windows Vista (6.0.5383.1.1.WindowsSDK_Vista_idw.DVD.Rel.img) in that same order. But I'm unable to install Microsoft Visual Studio Code Name “Orcas” Community Technology Preview – Development Tools for WinFXR. Instalation stops and i get window which says, that prerequisite is missing and that I must install WinFX Runtime components. But I have alredy installed them! Here is my errorlog of "msi ...Show All
Game Technologies: DirectX, XNA, XACT, etc. direction to rotation
Hi, I have a mesh which represents my spot light, it points forward in the z direction. And i have my direct3d spotlight, its direction is ( 0, -1, 0 ) so its pointing straight down, how do i take (0,-1,0) and convert it a rotation, so that i can put values in to Matrix.RotationYawPitchRoll(...) so that i can rotation my mesh to point in the same direction as my d3d spotlight bump. a mesh that points in the same direction as the light it represents... can this problem be solved by going from spherical to cartesian coords if someone could post a example of how to go from spherical to cartesian, caz im ...Show All
Windows Forms Make column header text visible in design time
Hi, The data grid in VB.NET could not have the column header text visible in design time. Anyone knows how to make them visible by using the designer. Some sample would be great. Thanks Yes, if the datasource is determined in design time, then the column header could be set up in the way that Joe described. However, the datasource of& ...Show All
Software Development for Windows Vista Vista + Dual Core Proc
Sorry if this has been asked or if I'm in the wrong forum. I'd like to test vista on a 3.0 dual core proc system. Will Vista run on a dual core proc or will it ask me to disable the dual core function If it wont work, any ideas when it will Appreciate your time. -Vincent Of course, I'm running it on a Dell XPS dual core - it's great. -Jeff http://www.jwfisher.com/sec-vista/ <== Vista tour (300+ images) ...Show All
SQL Server Stuck between "Failed to generate user instance" and "An attempt to attach...failed"
I wrote an application using Visual Studio 2005 beta 2 which uses a SQL Express .mdf file, included in the project, for the database. After installing Visual Studio 2005 RC and the SQL Express that comes with it (I followed all of the uninstall instructions first) I can no longer add a SQL Express database to any of my projects, nor can I open the SQL Express database in my original project. When I try either of these tasks, I get the "Failed to generate user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed." I read the thread which dealt with this er ...Show All
Visual Basic What does this error mean , please
"Windows Installer is not included in any selected prerequisite " this comes up on my errors tab when i compile. it's referring to a setup project which is part of my solution. Cant find any help on it. Can someone enlighten me please Thanks Mike No, the solution should be and still is -- Microsoft need to fix VS 2005 Deployment projects -- when one creates a deployment project in VS 2005 based on the primary output of your project file, it should KNOW that .NET 2.0 is a prerequisite and add appropriately. In some cases the build on primary output just doesn't work correctly -- this is what Microsoft need to address to solve the p ...Show All
Visual C# DllImport - EntryPointNotFoundException
hello.. I tried to load a function from a dll file that has a function with specification as below: return type : int *pResult parameter 1 : BSTR string1 Parameter 2 : int integer1 Parameter 3 : VARIANT_BOOL bool1 and in my code, that's what it looks like, [DllImport("myDll.dll", EntryPoint="function_name")] public static extern intPtr function_name( [MarshalAs(UnmanagedType.BStr)] String string1, int integer1, [MarshalAs(UnmanagedType.VariantBool)] Boolean bool1); And, when I call the function , function_n ...Show All
.NET Development Adding rows to table in Dataset
VB 2005 express beta 2 I've set up a dummy project to learn how to insert rows into a database, and i'm having some trouble. You'll see the naming convention right away.... Here's the code that looks like it should work... the warning that pops up is that the variable NewTestRow is used before it has been assigned a value. i want it to be a new row in the table, but can't figure out how to set it as a new row. Private Sub TextBox1_Leave( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.Leave Dim NewTestRow As TestDataSetDataSet.TestTableRow NewTestRow. ...Show All
.NET Development How can i get the maximum path length?
I didn't find any enum type that gives me this platform constant. How could i get it I mean the maximum character number which i could use to identify a file path. Thx. There is no built-in const or enum that provides this information. Currently you have to hard code it. 248 characters for the maximum path length and 260 for the maximum filename length. See http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=07ae9682-4f5c-497d-abc2-cb22b9eafa5c ...Show All
.NET Development Deleting Files Using oledbcommand
I have currently worked out how to add and edit records with vb.net frontend and access back end. im having some problems with working out how to delete things however. Can anyone explain how this can be done When i go to nthe qery builder to try and delete, i select delete from the SQL list however i am then unable to specify that i want the system to wait for the record i tgive it before it deletes. assignment due tuesday. please help!! Hi, If you want to delete a record using the Command object you need to set the CommandText to the DELETE SQL statement. If your only deleting one row then you'll ne ...Show All
Visual Studio Team System Service Unavailable - install didn't really work?
Hi folks, i'm trying to add a new team project in VS2005 and i get some errors. anyways, after trying to debug the problem, i've just noticed that i cannot even access any web pages that have been created by the TFS install. for example, people are saying to goto something like :17012/" href="http:// :17012/">http://<servername>:17012 and i always get 'SERVICE UNAVAILABLE' error. :( i checked the website in IIS and it's set for port 17012. um ... please help! i'm not sure where to start what have i done wrong ;( I've also noticed bucket loads of errors in my event log.. Event Type: Error Event Source: W ...Show All
Visual Studio Express Editions help! can not create any project in visual c++ 2005 express edition
when i try to generate any project in visual c++ 2005 express edition, it always told me that the operation could not be completed and can not find the required module! Lejing wrote: when i try to generate any project in visual c++ 2005 express edition, it always told me that the operation could not be completed and can not find the required module! Please. This is not enough information to visualize what is happening. What operation , please Are you using Menu selection New | Project | ... Or is it later - orcmid ...Show All
.NET Development POST to web service without input variables
is there a way to POST xml to a web service that does not take any input parameters [webmethod] public string ReceiveXML() if so, how do I grab the xml that has been sent How would I determine what xml was posted The reason I ask is because I have created a web service that will take in a string [webmethod] public string ReceiveXML(string _receivedStr) but the user that is sending the information cannot change the variable they are sending to _receivedStr. I do not know what variable they are using. They say they are doing a basic post and no input variable is needed. Any suggestions ...Show All
SQL Server Incremental loading
Hi Friends please let me know how can we incrementally load a destination table with source table. bearing in mind that we need to track that there are no duplicates in the destination table. I need to load only changed or new data in the final load. Please give me some examples also. I am tryin this from last 2 days as I am totally new to SSIS. Sam_dia wrote: Do I need to execute dtexec.exe from command prompt Yes! ...Show All
SQL Server Use View to speed up?
In my query, there is two fields using User Defined Function(UDF). It is the UDF calculation that slow down the query. The query will eventually become slow when more records(say over 1000) is return. I am thinking to use View to maintain the result of the query so as to speed up the process. Is it possible If not, what should I do Thanks. Yes, you can simplify complex query by using UDF but that doesn't mean that you will get the best performance. Query optimizer can do a better job on objects that contain statistics like tables/views. But once you use scalar UDFs in SELECT list o ...Show All
