furjaw's Q&A profile
Visual Studio Team System Intepret unit test results file (.trx)
There's a lot of info in these files. Where the heck is a simple passed/failed element/attribute. The closest I've come is an "outcome" element but I can't make sense of its inner value. Cool looking app! So what element of the TRX file are you looking at to determine pass/fail status Not that your app isn't way cool. I just want to process some TRX files with PowerShell. ...Show All
Visual Studio Express Editions Selecting a dataset from user input
OK. I have an application that needs to look up various data via a dataview based on user selection of a listview and/or combobox. Obviously I can simply hard code the selections. However there has to be a way (I hope) that I can use the selection to form the dataset. For example: Suppose the user selects MachineA in the combobox not MachineB The hardcoded dataview would be Select Case combobox.selecteditem Case = "MachineA" dataview = me.MachineAdataset.table.defaultview IS there not a way to do something like this Dim strng as String = combobox.text dataview = CObj("me." & strng & "dataset.table.defaultview") Thanks. I dont know if th ...Show All
SQL Server Multiple Publication on the same database
Hello, I want to create one more publication on a database (SQL Server 2005) that is already a publisher and has subscribers. The subscribers of the second publication will not be inserting new records so I will mark the articles (tables) as download-only. Is there anything extra that I should take into consideration Are there any side effects of this process Thanks in advance. SilentOceaner. You can refer to a similar thread to see if it helps: Merge and Transactional from the same server http://forums.microsoft.com/TechNet/ShowPost.aspx PostID=768828&SiteID=17 Note you are also allowed to have 2 merge or 2 tran publications on the same db/table. Thanks, Zhiqian ...Show All
Visual Studio File > Open Project is very slow displaying directories and files
My laptop has 1G Ram, 1.60 MHz processor, XP Pro. My Visual Studio os version 8.0.5... When I try to open a project on my hard drive it literally takes 3 minutes for the file box to populate the contents of the next directory down, then another 1 -2 minutes to populate the next directory down. (Taskmgr Performance tab shows 500 - 600 Meg of Memory used and the CPU utilization is a 5% or less.) When I open VB05 it shows up one time in Task Manager Applications Tab with a Status of Running. When I click the file box current folder a second VB05 appears in Task Manager and both VB05 entries show status of Not Responding. After about three minutes the file box enables me to navigate quickly and one of the VB05 entries disappea ...Show All
Internet Explorer Development File sharing features in Share Point Portal Server 2007
hi all, I am new to MOSS 2007. I want to know the latest feature included in MOSS 2007 on how to do file sharing easily using MOSS 2007. in comparision to previous versions I also want to know whether we have that feature in MOSS 2007 or not Pls help me asap. khanee. ...Show All
Visual Basic clickOnce install Question
Is it really true that clickOnce applications are installed on a unknown location on your hard drive We can only access it from it's short cut I would really like to know! Thank you. ...Show All
SQL Server SQL Native Client Connection String Problem
Hi, I have two server instances of SQL on my server MYSRVR: default (SQL 2000) and named SQLX (SQL 2005). I've been using these strings ok for the default (SQL 2000): "Server=MYSRVR; Database=mydb; Network=dbmssocn; Integrated Security=SSPI " "Server=192.168.1.128; Database=mydb; Network=dbmssocn; Integrated Security=SSPI " and these for the named (SQL 2005) "Server=MYSRVR\SQLX; Database=mydb; Network=dbmssocn; Integrated Security=SSPI " "Server=192.168.1.128\SQLX; Database=mydb; Network=dbmssocn; Integrated Security=SSPI " But then adding the SQL port 1433 works for the default: "Server=MYSRVR,1433; Database=mydb; Network=dbmssocn; Integrated Security ...Show All
Visual Studio Express Editions Error message "non-generic method" using ObjectDataSource and GridView
Here is my process: (all with visual web developer 2005 Express, April version.) 1. create new dataset in the app_code folder, called interaction.xsd. (right-click on the app_code directory and select new...) a. Step through the TableAdapter Configuration Wizard. b. Select the data connection (ManagementConnection String (Web.config) c. Create new stored procedures d. sql statement "SELECT Interaction.* FROM Interaction e. new stored procedure names: InteractionSelect_sp, InteractionInsert_sp, InteractionUpdate_sp, InteractionDelete_sp f. Fill method: FillInteraction, Get method: GetInteraction g. Checked Create methods to send updates directly... h. I now have Interac ...Show All
Audio and Video Development About the method of loading Original Sink.
Hi all! Please give me some pieces of advice on how to serialize Original Sink to MIG Process. Because the method of making general IMFActivate doesn't exist, IMFActivate for original Sink cannot be made. I would like you to teach the way of serializing original Sink to MIG Process. My Best Regards. Thank you for your answer. 1.----> May I return My MediaSink object when IMFActivate::Activate() is called And, though I don't have any more data for IMFActivate, Should I implement IPersistStream::Load() and Save() In the last answer, you advised me that the two methods were options, so ...Show All
SQL Server Query on dataset
I have a dataset filled with data. I want to get a particular (row,column) value from the dataset. How do I query on the dataset if the query is firstname, lastname where employeeid='1234' Krutika: "Dataset.Select ()" looks to me like a member function; if that is the case this post probably ought to be place in another location to get a better response. Dave ...Show All
Visual C# Problem with designer
Hi all, I have a problem with the form designer. Every so often, one of my forms in particular produces this error Object reference not set to an instance of an object. Hide at System.ComponentModel.WeakHashtable.WeakKeyComparer.System.Collections.IEqualityComparer.Equals(Object x, Object y) at System.Collections.Hashtable.KeyEquals(Object item, Object key) at System.Collections.Hashtable.Remove(Object key) at System.ComponentModel.WeakHashtable.Remove(Object key) at System.ComponentModel.WeakHashtable.ScavengeKeys() at System.ComponentModel.TypeDescriptor.AddProvider(TypeDescriptionProvider provider, Object instance) at System.ComponentModel.TypeDescriptor.AddAttributes(Object instance, Attribute[] ...Show All
SQL Server database diagram in server explorer
I've created a connection to an SQL 2000 server in an asp.net 2.0 web application using Visual Studio 2005. When I view the database node in the server explorer, it doesn't show the database diagram node. Is there something I need to load to make this node appear Thanks. You might want to post this question to the Visual Studio group. I can't recall if this facility is version dependent. They would be able to better answer your question. Terrence Nevins SQL Server Program Manager ...Show All
Smart Device Development resize the image
Hello guyz, can any one help me, plz tell me how can i resize my image, are they any functions for that. Hi Here is a sample how to resize a bitmap: private Bitmap ResizeImage ( Bitmap image, int width, int height) { Bitmap resizedImage = new Bitmap (width, height); using ( Graphics gfx = Graphics .FromImage (resizedImage)) { gfx.DrawImage (image, new Rectangle (0, 0, width, height), new Rectangle (0, 0, image.Width, image.Height), GraphicsUnit .Pixel); } return resizedImage; } Michael ...Show All
Windows Forms Removing Componets (exp Checkboxes )
If I wanted to lets say... have a few checkboxes right... and I wanted to remove the ones that are checked... how do I do that Like.. remove the checkbox right along with its value. You seem greatly confused about dealing with collections. You are going to a lot of needless effort. string [] input = str.Split( new char [] { ' ', '\n' }); This line is fine. Keep it. List< string > list = new List< string >(); for ( int x = 0; x < input.Length; x++ ) { list.Add( input[x] ); } These lines could be reduced to just: List< string > list = new List< string >(input); Or you could just drop them entirely. There's nothing that you need to do that can't be done with input[]. ...Show All
Visual Basic Constant "adOpenStatic" undefined.
I'm an old VB6 developer moving into the .net / 2005 environment. On a new dbs project I'm buulding I'm getting a not declared error for "adOpenStatic" but I can open the database I am trying to check the status of. (It is a 1) What reference or Import do I need Thanks!! adOpenStatic is an ADODB Enumerated Constant which lives in the ADODB Library. Moving Up to .NET you should abandon the old ADODB and start using ADO.NET , which no longer uses recordsets...There are alot of advantages to the ADO.NET disconnected data model...check it out here: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconaccessingdatawithadonet.asp ...Show All
