gudia's Q&A profile
SQL Server OUTPUT Clause
We have a table, which is partitioned on a computed column, based on a UDF function (custom logic). We populate this computed column in an INSTEAD OF Trigger. But when we try to "output" the computed column using OUTPUT caluse, NULL values are returned for computed column. SQL BOL is not clear on this part of using output clause in instead of triggers. This does not even work for a table that is not partitioned. Here is an example ...Show All
Software Development for Windows Vista Video to texture??
Hej all I have been working on this "Player" project for 14 days now... and I have been trying to make a video player: http://www.eifonline.dk/fullscreenplayer.jpg Contens: Top : Font with DateTime as text Bottom : Font with DateTime as text --- events scrolling at the bottom... Center : Vertex with Video as texture. I tryed DirectX.AudioVideoPlayBack, simi worked... Tryed DirectShow, simi worked... My pro ...Show All
Visual Studio Retrieve in-report data
Hi all I'm wondering if it's possible to get the data saved on a RPT file wich contains the report data (report using its own data, not connecting to any DB), without having to export the report to any format. I'm not experienced, sorry for any imprecision! Carlo Hello Carlo, There isn't an easier way to do this - exporting to Excel and importing would be the best option. Keith - Business Objects ...Show All
Windows Live Developer Forums Error
I cant get windows live to work. I keep geting this error code:8004882c Anyone know what this error is Please provide us with more details. Specifically, where are you seeing this error Is this in Messenger, or at a Windows Live website ...Show All
.NET Development Loading external assemblies that are not strongly named
Hi, I have a project which references an assembly that is external to the application (it is not in the bin directory of the project or in a path relative to the application). At runtime I use reflection to load the assembly from a supplied path. The exception ‘System.IO.FileNotFoundException’ gets thrown. The external assembly is not strongly named and so I cannot use the ‘codebase’ ...Show All
.NET Development Installing Net Framework 2.0
I made a boo boo. Whilst the sandman was pulverizing me one night I accidently tried to install Net Framework 2.0 before installing the redist pack. Now when I try to install Net Framework 2.0 I get a message saying that there was an error creating process. The computer says that the reason for the error is because of C:\windows\system32\advpack.dll. If anyone can show me a way to correct my error without reformatting my hard drive I would be mo ...Show All
Visual C# Insert Command
Ok. In a button click event, I have a insert command that follows: "INSERT INTO `Audio` (`SongName`) VALUES (' + textbox1.text + ')" Can someone tell me how to make sure that the insert value isnt already in the database. Maybe something like: If (already.exists) { messagebox.show("The value alreaedy exists"). I know im not clerifying enough. I just dont know how to ask my question. Can someone help please. This ...Show All
Visual Studio could not load type Microsoft.VisualStudio.CommonIDE.TemplateWizard.Wizard
Hello, After installing VS.NET 2005 Beta 2 from the DVD (visual studio team suite beta experience kit), i installed a newer beta build . Now i had had to switch back to the Beta 2 that came with the DVD and i have all sorts of problems. Now, the latest problem is the one in the subject. Anyone can help Best regards, Lucian Chiriac I have the same problem. They have added the following Attributes [Microsoft.Visu ...Show All
SQL Server how to incorporate RS in c#.net
how can i call my reporting services reports using my c#.net what control should i use pls give me sample. thanks. Try here: Walkthrough Also my blog: SQLRS ...Show All
SQL Server Sql Job failing with MSDTC has canceled the distributed transaction.
I have a sql job which has to pull some data from a remote server. This job is running fine last few days and suddenly failing to execute with the following error. The same job is running fine in other servers. Executed as user: NT AUTHORITY\NETWORK SERVICE. The Microsoft Distributed Transaction Coordinator (MS DTC) has cancelled the distributed transaction. [SQLSTATE 42000] (Error 1206). The step failed. Note: The steps I have already don ...Show All
.NET Development Game development with .Net
Hello, I am looking for samples, articles, guidelines... to write .Net games with .Net. I don't want to use DirectX or, if with DirectX, not using 3D. The category of game is Legend of Zelda, Mario Bros... the ultimate goal being to make a game both for WinXP and WinMobile. Also, I'd like to find help on a 3d-iso game like age of empire or StrongHold. Thanks for any help, Claude There's a good start !! The URL ...Show All
Windows Forms Master - detail problem: DataMember property 'FK_foreign_master' cannot be found on the DataSource.
Hi everyone, I have a form with a master-detail relation and for each datagrid I use a bindingsource. The master bindingsource has following properties: datasource = dataset datamember = "tablename" The detail bindingsource has following properties: datasource = datasource of the master datamember = name of the master-detail key Everything works just perfect, but... Regularly I'm not able to view the "d ...Show All
Windows Forms Splash Screen
I am using Visual Basic .net to create a splash screen based off of the template provided. However when I access the MyProject tab of my application the 'Application' Tab is entirely greyed out with the exception of Assembly Name and Assembly Information. The Combobox that allows me to specify the splash screen is greyed out as well. How do I get around this and why is everything greyed out. Thanks for the help Kris ...Show All
Visual Basic ScriptControl
Visual Basic 6 had a component called ScriptControl which allowed scripting through VBScript and JScript. is there any namespace that can let me implement scripting ...Show All
.NET Development Display Image (pdf in specific) from Database in a Web Page
I am having trouble displaying a pdf that is stored in a image column in SQL Server database. my code looks like: con.Open(); SqlDataReader r = cmd.ExecuteReader( CommandBehavior .SequentialAccess); Response.ContentType = "application/pdf" ; if (r.Read()) { int bufferSize = 100; byte [] bytes = new byte [bufferSize]; long bytesRead; long readFrom = 0; // Read the field 100 ...Show All
