Answer Questions
pmanisekaran A contributor cannot access work items??
Hi, I am the project admin in team system and i recently added a user as a contributor in the project but for some reason he cannot access the work item folder (Red x) and even worse, he cannot do any check in because we have the work item policy activated and he cannot select a work item from the list. He gets the following error when he tries to acces the work item tab: The query has encountered an error Object reference not set to an instance of an object I have added many users and this is the first time that it happens Has anyone ever had this problem Could it be a bug I also read a post where someone said that it could be a network config issue but i haven't found any difference between his machine and mine... ...Show All
taclejj REALLY STUPID QUESTION that I need serious help with
This may sound stupid/dumb but i dont care ive looked all over the internet and cant find teh answer to a simple question. When putting text into a text box (it doesnt matter how it gets in there) How do you create a new line (i.e. you want to put "Bob went to the store" but put the "went to the store" part on the line below like this) try this one and set your textbox into multi-line textbox1.text = "1st line of text" & vbCrLf & "2nd line of text" set your textbox to multi-line and store your text as textBox1.text = "Bob" & Environment.NewLine & "went to the store" Don't worry, you are not the only one, someone else asked t ...Show All
Eduardo Poças Error when installing SP1(beta)
Error: Product: Microsoft Visual Studio 2005 Team Foundation Server - ENU -- The application pool identity required by Team Foundation Server (TFSWSS) for the content virtual server is not using the Team Foundation Server service account. To proceed, you must exit setup, set the application pool identity (TFSWSS) to use the Team Foundation Server service account, and then run setup again. I have checked and the TFSWSS app pool is running as "SE\TFSService" ( my service account) Any ideas on how to proceed Can I check what account that the setup think TFSWSS should run as /Andreas Ohlund Have you verified that the AppPool is running You can check this using the IIS Manager (you ...Show All
RyM Updating Program
i need to make a program that get updates from a website... all i know is that i need access to the website... and in the properties-publish tab i found the update wizard... what type of link would i need to make my program update a file or just the webpage Thanks Mike I believe its the url of the published project itself. ...Show All
Sabrecat Using the database diagram tool and keeping in synch with the schema
I was able to import my existing schema into the project with no problems. I made a few changes and repushed it to my database... again no problems. But then i wanted to go through and create a bunch of foreign key constraints and indexes. I couldn't find a graphical way to do that in the schema editor in VS, so I just fired up sql management studio and went to work. The problem now is that I can't seem to get these changes back into my schema project. I've done the diff with the database on the left and the project on the right, but "write changes" is now disabled. Any thoughts For CTP3 and 4 we disable the option to write change to the project. Going forward we will have an impor ...Show All
cisfreak2 how some help fix my code?
'Create a new MailMessage object and specify the"From" and "To" addresses Dim Email As New System.Net.Mail.MailMessage(" From@abc.com ", " To@abc.com ") Email.Subject = "test subject" Email.Body = "this is a test" Dim mailClient As New System.Net.Mail.SmtpClient() 'This object stores the authentication values Dim basicAuthenticationInfo As _ New System.Net.NetworkCredential("username", "password") 'Put your own, or your ISPs, mail server name onthis next line mailClient.Host = "Mail.RemoteMailServer.com" mailClient.UseDefaultCredentials = False mailClient.Credentials = basicAuthenticationInfo ...Show All
Ian Jorgensen What is "citizinship mindset" ?
I have read this page: http://guides.brucejmack.biz/MSF%20Agile%20Beta%202%20PT/Wss/Process%20Guidance/Supporting%20Files/Mindsets.htm But still don't understand what "citizinship mindset" is. It first says citizenship is about stewardship, then talk about web services, and then reassign bugs. I really can't understand what it means. Anyone would further explain it Thank you! Mr. Turner and Mr. Miller: Thank you very much for the detailed explaination. Now I get it :) Hope to see your books (both) soon. Let me try to explain it by providing three scenarios. First, you are writing a web service client that consumes a web service. You need a piece of information that the server has. This information w ...Show All
NickNotYet Write Updates is disabled when the Source is a db and the Target is a project
Hi, I'm using CTP7 and I want to make some updates from a db to the db project under source control. However, the Write Updates button in the Schema Compare is disabled both on the toolbar and under the data menu. Am I doing something wrong or is this a bug Thanks, Gareth Sounds like a possible bug then. I assume that you have the appropriate permissions on the target db to change the schema, etc.. I don't know for sure if schema compare checks this, if so then that could be the problem. I would have to test it. Alle Thanks fo your reply Sachin. I've been really stupid - I think I uninstalled CTP5 then reinstalled it instead of installing CTP7! This ...Show All
seco Where can i get this profiler?
I have VS 2005 - where can i get the profiler for it is it an add on free in a SP Thanks. Sorry, no profiling of Mobile Devices is included with the Visual Studio Team System Profiler. ~Ian Hi, Which edition r u using i think ..you can get the profiler in Visual Studio Team Edition for Software Developers...check out. i hope answered your question. Thanks, Kathir I have professional edition. is this good No, the Visual Studio profiler is only included in Team Suite edition and Visual Studio Team System for Developers. It is not included in professional edition. Thanks, Ian Does the Team System u ...Show All
Dan Lingman Code safety
While I am putting my VC++ exe file at a client's place, I don't want them to be able to look at the code in any case. Is it possible to arrive at the code from an exe compiled in release mode How to ensure maximum security I feel following should help me in securing my code from hackers’ eyes. Would request your critic and suggestions. (i) Encrypt the code file and name that as junk.log and place in some system directory. Another program would decrypt this, rename as exe, run it, rename back to junk.log (while it is already running), update its timestamp and put back at a system directory to camouflage it. (ii) Hide the process from the process-list so that admin can not even figure-out the process ...Show All
ThE ViKinG Regex trouble
I am trying to list directories at a specific location and the location must be changeable, i need to remove all but the bottom-level directory name e.g. C:\Something\Somefile to change to Somefile, I tried to use a regex to replace C:\Something\ with nothing but i get an error telling me thai i have an invalid escape character. Because the location is not a string literal i cannot prefix it with @, what can i do to get the Regex.replace() method to work Try using System.IO.Path.GetFileName(@"C:\Something\Somefile") ...Show All
Richard_Wolf How can I show part of a picture(*.bmp) in a PictureBox?
Hi, I have a BMP file that I scanned and now I want to show only part of this picture(file) in a picturebox. how can I do this Regards, yaniv pinhas thank you... it's work as I wanted No problem, that just takes another of the overloads for DrawImage: Private Sub PictureBox1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles PictureBox1.Paint Dim zoom As Double = 200 Dim pnt As New Point(0, 0) Dim bmp As Image = Bitmap.FromFile("c:\temp\test.jpg") With PictureBox1 Dim w As Integer = CInt(.Width * 100 / zoom) Dim h As Integer = CInt(.Height * 100 / zoom) Dim rc As New Rectangle(0, 0, .W ...Show All
Ricardo Francisco Multi Column In ComboBox
Hi All, how to create a combobox with multi-column and have gridline Pls help! Combobox doesnt support multicolumns. Listbox does, listview or datagridview do. If you want ot use a combobox, then you can possibly use a tab or comma to deliniate the values but you often end up with jagged columns. An example of an 1/2 decent implementation http://www.codeproject.com/vb/net/multicolumncombo.asp And some 3rd party controls such as infragistics have implementations (but your going to have to pay something) ...Show All
Simon Allardice Data Generation Plan unable to delete tables with foreign keys
Hi there. I am using the CTP4 of VS for DB professionals and it is awesome.! One question I have is this. I have a database with some 80+ tables. I am only interested in 2 tables. I created a datageneration plan to populate these 2 tables. The IDE picks up all of the correct foreign relationship/constrains and populate the join tables as well. This works great. However, when I run this data generation a second time, I get errors all over. It complaints that it can't delete rows on tables with foreign keys. It seems that it forgets the join relationships that it just populate... I have pull the schema from a production db and created a brand new one on my test server. So initially there is no data on the tables. Is there an option that I ...Show All
MariamCR unique field
My web application having program name as unique field. Same program name should not be used by multiple numbers. While doing load testing I will record with program name as Program1 and generated the web test. When I am calling this web test in my load test with 10 users all 10 users will try to create the program name as program 1. at this time validation message will come that program name entered is already exit in database. Pls choose another name. Like this unique scenarios how to test load testing Pls let me know how to perform load testing in this case. is it possible to create data driven test that every time when it is creating program it should take new name is it the right way what is the ...Show All
