bclark's Q&A profile
SQL Server rc:ReplacementRoot
Hello- I'm currently trying to implement the rc:ReplacementRoot functionality with Reporting Services 2005 and I've run into an issue where the functionality does not seem to function. Is it possible to just place the replacement root in the URL ( http://...reportserver ...rc:ReplacementRoot=http://google.com ) When attempting this the root is not currently being replaced so any suggestion would be appreciated. Thanks, Tristan ...Show All
Software Development for Windows Vista Cannot find custom tool 'WorkflowXSDGenerator' on this system.
Hi. After upgrading to Workflow Foundation Beta 2 VS Plugin and WinFX Feb-CTP i have a problem with my schema files that use the WorkflowXSDGenerator Custom Tool. It was OK in the 1.2 Beta version. When saving the file the message 'Cannot find custom tool 'WorkflowXSDGenerator' on this system.' is displayed and the .cs file for the schema is not generated. I also have this problem when only using Beta 2.2. My short investigation shows that the correct registry values (using RegMon) are read: - HKLM\SOFTWARE\Microsoft\VisualStudio\8.0\Generators\{FAE04EC1-301F-11d3-BF4B-00C04F79EFBC}\WorkflowXSDGenerator - HKLM\SOFTWARE\Microsoft\Visual ...Show All
Software Development for Windows Vista How to go 'backwards' in a sequential workflow?
Hello I am planning on using a sequential workflow to drive a wizard-style form interface with [next] and [previous] buttons. Most (all ) examples of sequential workflows I've seen show the flow proceeding from the start to the finish. My requirements are that the user is able to click the [previous] button at any time and be moved to the previous activity in his/her workflow. E.g. Say I have a flow like this: A / \ B C | D / \ E F And that the user moves from A-B-D-F (according to rules/decisions). If the user hits [previous] when activity 'F' is active, I want to be able to move the workflo ...Show All
Windows Forms Checked ComboBox
Hi all I want to have the multiple selection in combobox with minimum amount of code. Can anybody help Me !!!!!!!!!!! Check this link http://www.codeproject.com/cs/combobox/ ...Show All
Windows Forms getting printer names
Hi, How can I get all of printer names connected either directly to PC or through some network. Is it possible to get the names of all printers connected to a PC through some network if its not, then please send me how to get the names of locally(directly) connected printers Thanks, Download my user sample here: http://www.gotdotnet.com/Community/UserSamples/De ...Show All
Software Development for Windows Vista Important, working with workflow runtime & services in a web based application
I have a web based application , but i want to add the workflow runtime & its related services in a related class so that i call methods of it whenever necessary. the main point is that i want to omit all the data related to workflow from the web.config & add it in the Workflow class. I have a problem in adding these two sections of the web.config & they are: <configSections> <section name="WorkflowRuntime" type="System.Workflow.Runtime.Configuration.WorkflowRuntimeSection, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> </configSectio ...Show All
.NET Development Problem deserializing response from an Axis web service
I have a VB.NET application that calls an Axis web service. WSDL.EXE gneerates this class from the WSDL provided by the AxisPeople organization (names have been changed to protect the guilty) '<remarks/> <System.Xml.Serialization.SoapTypeAttribute("Thing", " http://thingservice.axispeople.org ")> _ Public Class Thing '<remarks/> Public amountOne As Decimal '<remarks/> Public amountTwo As Decimal '<remarks/> Public amountThree As Decimal '<remarks/> Public statusCode As String End Class When a call to the thingservice.getT ...Show All
SQL Server Subscription with no schedule
I am firing off some report server 2005 schedules from my VB.NET in order to run some reports that email to my users. The problem is that the very purpose of a subscription in Rerport manager is to schedule it. I don't want it to run again which is what is happening other than my VB.NET code firing it off. The sole goal here is to be able to generate a report from VB.NET by calling the subscription which works beautifully. The problem I am trying to resolve now is to tell it not to schedule itself which fires off a report prematurely later on..due to the nature of a subscription in that it requires a schedule. Can I p ...Show All
.NET Development Redistributing MSXML4
Hi, I have written an application which is redistributed via an MSI. I merge in the MSXML4 merge modules. I have discovered that if I add a manifest assembly reference as follows: /manifestdependency:type='win32' name='Microsoft.MSXML2' version='4.20.9818.0' processorArchitecture='x86' publicKeyToken='6bd6b9abf345378f' language='*' My app doesn't work. I think that this is because these DLLs already exist in the C:\WINDOWS\SYSTEM32 directory and it is not installing them into C:\Windows\WinSxS. Shouldn't the merge module detect this and install into both places Thanks Mark Thanks fo ...Show All
Visual C# Code execution just occurs on debugging time...HELP!
Hi, I don't if this is real, or whether someone (something) is kidding me. What if I tell you that some code of my application only works in debugging time...I'm very stressed about this...it's just a simple "if - else" that doesn't work unless I set a breakpoint there. What can be the mistake Code: if (!ObjMenuXRol.existeMenuXRol(pkRolTemp, pkMenuTemp)) { ObjMenuXRol.UIMenuXRol.Valor = formEntrada.PkUsuario; ObjMenuXRol.FHIMenuXRol.Valor = DateTime.Now; ObjMenuXRol.UAMenuXrol.Valor = formEntrada.PkUsuario; & ...Show All
.NET Development Removing a Relationship in a Microsoft Access Database
I am a C# developer, using a Microsoft Access Database for data storage. How can I remove a relationship between two tables from within my C# program You first need to determine where the relationship is in your code and what it's called. Then you can delete it like this: DataSet1 ds = new DataSet1 (); ds.Relations.RemoveAt(0); ... or ... ds.Relations.Remove( this .myDataRelation); I'm assuming you had the designer create a DataSet for you with all of the related tables, constraints, relationships and so forth Of so, finding the relation is easy: open up the DataSet in the IDE and fi ...Show All
Visual Studio Team System Can't find test module
I get the attached error. I assume this means that it can't find the tester's dll. That is certainly possible because I compile/link into a different directory. Is there some property some place that I can change to tell it where to look for the files Thanks. Bob. Unable to get type BankTester.UnitTest999, BankTester. Error: System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E) at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartia ...Show All
SQL Server Prevent writing to the Transaction Log?
I know this isn't exactly best practice, but is there anyway to perform DELETEs and INSERTs without writing to the transaction log Mike No. The only type of operations that can be minimally logged (in SIMPLE and BULK_LOGGED recovery mode) are Creation and drop of indexes Bulk loading of data Modification of BLOB data SELECT INTO -- Tibor Karaszi, SQL Server MVP http://www.karaszi.com/sqlserver/default.asp http://www.solidqualitylearning.com/ Blog: http://solidqualitylearning.com/blogs/tibor/ wrote in message news:99b53f54-94e2-44c5-998e-3a66b6bb2966@discussions.microsoft.com... ...Show All
Visual Studio 2008 (Pre-release) PeerChannel throttling controls?
How does one properly throttle a PeerNet network when messages are pouring in faster than the receiving nodes can process them I'm trying to prove whether or not PeerChannel would make a good foundation for publish-subscribe style messaging that is reliable and robust enough for an enterprise. My initial testing has been very positive. PeerChannel is looking to be super-reliable so far. Sending 10,000 messages in a 5-node configuration: 0 message loss, 2,500 msgs/min to 4,000 msgs/min per receiving node Sending 100,000 messages in a 5-node configuration: 0 message loss, 2,500 msgs/min to 4,000 msgs/min per receiving node Send ...Show All
Windows Forms Binding Combos to dataset support tables
Hi, I am using VB 2005. I have a form that displays a record chosen from a datagridview. The form contains a number of combo's that i intend to bind to support tables in my dataset. My question is, do i use multiple binding source controls or do i use one binding source control with multiple queries Also, some of the combos display records based on the selection of other combos. Thanks for any help ...Show All
