quacka's Q&A profile
Visual Studio Team System Problems with Debug and FxCop
Hi All, Sometimes when I starts the debug process, it do not stops in my breakpoints. I do the same thing with all my rules, but sometimes all my breakpoints do not work in all my rules.... When it happens, I am forced to create a new project and import all my rules to this new project. It is not a good idea and I'd like to know why it happens and if there is a solution. It happenned 4 times up to now. I am using fxcop 1 ...Show All
Visual Basic Catching carrage return
I am trying to catch the carrage return with this code I found on net but doesn't seem to work. Nothing happens. Is there another way to do it If e.KeyChar = Microsoft.VisualBasic.ChrW(13) Then Wayne what calls the protected overrides function i have included a break in this function, but it is never called... ...Show All
Visual Studio Team System Work Item Queries
Hi there, just a few questions regarding the Work Item Queries available thorugh Team Explorer in VS 2005. 1. Is it possible to display the Resolved In build number in the reports. It seems to be missing from the available columns list 2. Is there any way to group the reports. I.e. show all work items by area Thanks for your help Graham When you say "Reports", I am assuming that you mean the Results of th ...Show All
Visual Studio 2008 (Pre-release) Display HTML Snippet?
I have a WPF application that I pull descriptions into from RSS Feeds. The Descriptions have some html tags in them. I want to display these descriptions in my WPF app. Is there a control I can use to do that which will render the html for me so that my simple RSS reader example will work I tried looking at Frame, but if that is the one I need to use I need a little more advice, as I'm just not getting it to work out. Any pointers ...Show All
Windows Forms GetSelectedRow from Datagrid
I want to read the selected Row from a datagrid. How is this possible Anything like: object mySelectedObject = gridControl.getSelectedRow() but I didn't find a way to do that !!! thanxx for help! THANK YOU!!! I know you posted this last y ...Show All
Visual Studio 2008 (Pre-release) problems opening a new window
Hi everyone, at the moment I'm trying to open a new window out of a clickevent from my mainwindow. something like this ChildWindow window = new ChildWindow(); childwindow.show(); everthing is ok until I try to build the app. Then the following error occurs: The name 'InitializeComponent' does not exist in the current context Can somebody help me with this Kimme wrote: Hi everyone, at the moment I'm trying ...Show All
Visual Studio VS 2003 problem when VS2005 beta expired
I have VS2003 and Source safe 6.0d installed and then installed VS2005 beta 1 several months ago. Now I get an error from VS2003 that Source Safe beta has expired and need to uninstall. This problem prevents me from checking in code from Visual Studio 2003. I now have uninstalled all the 2005 beta components and now visual studio does not realize that I still have source safe 6.0d installed, thus has disconnected my p ...Show All
Visual C# Output String From ArrayList
I'm attempting to take an array list of integers and convert it to an array of strings. I run this code string [] myarr = ( string []) ArrayList.ToArray( typeof ( string ) ); and I get this error: An unhandled exception of type 'System.InvalidCastException' occurred in mscorlib.dll Additional information: At least one element in the source array could not be cast down to the destination array type. I have verified that the cou ...Show All
Windows Forms set client area of control that inherits from panel
Hi everyone I have a control that inherits from the panel control, but I need to be able to do some custom drawing in the top 30 pixels of the control and add some controls, the rest of the control area is for controls to be&nbs ...Show All
Visual C# Can Tablet PC SDK add wacom support to my app
Heres a question for you. I'm working on a paint application and would like to incrporate a tablet support such as Wacom in them. All the research I do on it point me to the Tablet PC SDK. I just want to make sure that this is what I need. My application is designed for a normal version of XP, not a Tablet one. From what I read the Tablet SDK just adds classes that support for Tablet PC's but I'm not sure if they add support for tablets ...Show All
.NET Development Updating multiple ListView items into Sql DB table
Is there a way of sending datatable or dataview as variable and update multiple records in SQL DB table If it's not possible, I want to learn a better way to update multiple records at once instead of updating each record at a time. Thanks in advance, Oscar Yes you can by calling update method of Table Adapter on desired table and I will return the number of rows affected by this update. cheers ...Show All
Visual Studio Unable to find the report in the manifest resources
whenever i try to use a crystal report i get the error "Unable to find the report in the manifest resources" though - three crystal assemblies have been added automatically - the report is marked as "Embedded resource" - the report (and the code-behind) was recreated (namespace etc. are correct) here's some source: IssueStateList myReportClass = new IssueStateList (); myReportClass.SetDataSource(myDataSet); the first lin ...Show All
SQL Server SSIS Connection Object and Expressions
I have been writing a custom source adapter that uses a file connection within the connection manager. If I hard-code a specific file then the component works. However if I use a file connection that has an expression defined which updates the connection, for example when you have a for-each loop looping over a set files. The file connection doesn’t seem to re-evaluate expression each time you access the file connection via the code. Is there s ...Show All
Visual Studio Tools for Office HHC6003: Error: The file Itircl.dll has not been registered correctly
Hi, I'm trying to create a HELP for my MS Access application using HTML Help Workshop. But when i tries to compile it, it gives following error : 'HHC6003: Error: The file Itircl.dll has not been registered correctly'. I tried to re-register 'Itircl.dll' and 'itcc.dll' and registered it successfully. But still getting the same message. I also tried other copy of these DLLs from other machines but no result. :( Previously i was working on W ...Show All
Visual Studio Express Editions How do you convert the first part of a Char array to string?
Problem: You have received a number of bytes from a serial port, done some processing on these and then saved them in a Char array by means of Dim ArrayName(1023) As Char Dim ProcessedByte As Byte Dim I As Integer ArrayName(I) = Chr(ProcessedByte) Then you want the "active" part of the Char array, that is, up to element I to be converted to a string, so that it e.g. may be appended to other strings, send to a TextBox or ...Show All
