Budoray's Q&A profile
Visual Studio WorkItem Store and IIS
Working on a web service to expose Currituck. Works fine running in development server in IDE. Once deployed however it always returns an Access Denied error when trying to connect to store. For development purposes, the web service site is set up as login TFSService, which has ownership permissions on the Currituck database, and which has been added to the project permissions as an administrator (near as I can tell, equivelant in every way to t ...Show All
SQL Server Reporting Services Parameters
I have a report set up in SQL reporting services which I need to pass two values: fundingRef and mRef from another aspx page which I have managed to get working using the following code: string param = "&fundingRef=2" + "&mRef=25"; ReportViewer1.ReportPath = Global.ReportPath + reportPath + param; Both the parameters have been set up in the SQL report designer in VS2003.NET and will contain several valu ...Show All
Visual Studio Team System Another warehouse not updating :( - now FIXED :)
Hi folks, i've noticed our warehouse reports are updating/working. eg. Remining Work Report Generated: 6/06/2006 4:16:54 PM by Domain\User; Last Warehouse Update: 21/05/2006 5:41:04 AM. I can use http://localhost:8080/Warehouse/v1.0/warehousecontroller.asmx in IE and it works (well, it says TRUE and pretty soon after that it (refresh IE) says FALSE). There's no errors in the EVENT LOG anymore. The TFSServiceScheduler was o ...Show All
Visual Basic Arraylist in Arraylist
As a newbie I'm struggling how to set up an arraylist in an arraylist. dim TickerName as new arraylist dim Data as new arraylist Each tickerName contains an item with 1 Name, 1 MaxValue, 1 MinValue etc. (Class1) Additionally, each tickername must have an arraylist called Data, containing Prices, Volumes and Times (Class2 ) I've Googled for this but without result, at least one I could understand.. All help is appreciated ...Show All
.NET Development Assembly strong binding
Hi, I have strange problem: I try to build .NET application which use Microsoft.DirectX assembly, but i have installed more than 1 version DirectX SDK on my PC and now i have such problem: //=========================================================== Error 1 The type 'Microsoft.DirectX.Direct3D.Device' exists in both 'c:\WINDOWS\Microsoft.NET\DirectX for Managed Code\2.0.0.0_x86\Microsoft.DirectX.dll' and 'c:\WINDOWS\Microsoft.NET\Di ...Show All
Software Development for Windows Vista Bug? InvokeWorkFlow activity used with Sequential Workflow hosted in Console App
I've been experimenting with InvokeWorkFlow activity and found what I think might be a bug with the logic in hosting code for the console app. In the Main method, the WF runtime is instantiated and the started passing in the type for WorkFlow1. Before it starts the workflow however it wires up a handler for the WorkflowCompleted event that when called sets a AutoResetEvent which the main thread uses to terminate the WF runtime and en ...Show All
Windows Forms ComboBox with DropDown style does not show initial value
Imagine a combo box with option values stocked in a parameters list. The user will can enter any other values. I initialize at run time the combo box with this code The dataset contains (5,00 %, 10,00 %, 15 %, etc.) values cbTest.DropDownStyle = System.W ...Show All
Software Development for Windows Vista Capturing correct output parameters
Hi, I'm using a workflow to convert customer proposals into quotes. The proposal instance is passed to the Workflow as an input parameter. The quote instance is captured from the Workflow as an output parameter. I capture the output parameter in an OnWorkflowCompleted method I assign to the WorkflowRuntime. My application will process many customer proposals. I use a single WorkflowRuntime in the application. My question ...Show All
Visual C# Overlaying Class Instances?
Hi guys, I've written a Su Doku solver in C#, and the current solution uses three classes: A Grid class, which contains a 3x3 array of a Subgrid class, which itself contains a 3x3 array of a Square class. When performing row or column based manipulations, the index calculations for a row to get the related Subgrids and Squares are long-winded and look a bit messy. What I was wondering is, is it possible to create instances of different cl ...Show All
Visual Studio 2008 (Pre-release) WPF Bitmap Effects
I'm having trouble building the RGBFilterEffect sample from the Beta 2 SDK. I modified my environment for c++ examples like it said in the readme, but I still can't build because of an alleged sytax error in unknwn.idl. What gives Also, it was my understanding that you could create a bitmap effect with a hardware accellerated pixel shader. Are there any examples of this Error 1 error MIDL2025 : syntax error : ...Show All
Visual Basic Settings ConnectionString "ease of use"
is there any way change applicationsettings ( Properties. Settings .Default.ConnectionString is readonly property) at runtime especially for the ConnectionString. It is common to write and test on one computer but deploy for other computers with other dbnames etc. ConnectionString as Application Setting (VS2005) is very practical but one has to be able to change the contents at run time. I have not discovered how. Of course one could just touch ...Show All
SQL Server how to create sql server 2005 instance(after uninstalling sql server express)
I have uninsttaled sql server 2005 express then installed sql server 2005 developer edition.All things are installed and working fine like management studio,BOL,reporting services ,e.t.c. But there is no instance of sql server 2005.I can connect to sql server 2000 instance from management studio. I have check from all ways but there isn't any instance. Could I create a instance of sql server 2005 from some where if yes the how. Y ...Show All
Visual Studio ReportViewer crashes when printing to a non-default printer
If we try to print a server report using WinForms ReportViewer control to a non-default printer the application crashes with " Attempted to read or write protected memory" . If the same printer is set as default printer then everything works fine. VS 2005 RTM, winXP, HP LaserJet 5l printer, but the same behavior is on all printer models we have. Any workaround or fix for this ...Show All
Visual Studio Problem building
I have been successfully using VS 2005 Beta 2 (VB.NET) for about a month now. Yesterday, I started getting the error: Error 5 Unable to copy file "obj\Debug\BO.dll" to "bin\Debug\BO.dll". The process cannot access the file 'bin\Debug\BO.dll' because it is being used by another process. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 2274 9 This error does not occur the first time I build ...Show All
SQL Server Select Distinct
Hi there, I run that query SELECT Products.recid, description, partno, price from Products JOIN stock ON Products.recid = Stock.recid Now I want to run the same query but I need the Products.recid to be Distinct, I've tried this but it won't return a distinct value SELECT DISTINCT Products.recid, description, partno, price from Products JOIN stock ON Products.recid = Stock.recid I don't get why it won't return a Distinct value ...Show All
