abs's Q&A profile
Visual Studio Team System Code checked-in everyday
HEllo! Is there a way to enforce policies on developers to checkin\shelve files checked-out by them at the end of the day ONce this is accomplished, I want to run a report that shows the developer against their checked-in files. Thanks! sunny123 wrote: One small suggestion though, for PMs and other management teams, it would be "nice to have" a graphical representation of the branch merge sidekick and an actual report (like those in-built into TFS). There is an open source project on CodePlex that is implementing an TFS Version Tree Browser. The project, code-named Vertigo, has just release a (very) early alpha version (v0.2alpha). This tool may fill ...Show All
SQL Server Delay in package starting when running from SQL Agent
Hi, I wonder if anybody can shed any light on this problem. I have a SQL Agent job which has three steps, each step runs an SSIS package. The job is scheduled to start at 11.00 pm, which is does successfully. However, it has been taking between 2 and 3 hours to run, which is way longer than it should. When I've looked at the logging, I've found that the although the job starts at 11.00 pm, the first package (in job step 1) does not start executing until about 11.30. It finishes in about 5 minutes, there is then about an hour delay before the second package (in job step 2) starts. This finishes in about 10 minutes, then there is another hour delay before the third package (in job step 3) starts. I've tried configuring the steps ...Show All
Visual C# Formating File output
I am saving data from a listbox into a .RTF file. How can I format the data to align to the right and format the text color Thanks. Also put a RichTextBox on the Form, Put text in it from the Listbox as you need it, There are very easy funtions available to format text through RichTextBox Control, call functions what you need and in last Call RichTextBox.Save(); to save all the Rich Text into a file. Cheers ;-) ...Show All
SQL Server Sharepoint Reporting Services Addin and Sharepoint Server 2007 Trial
Hello, My question is: can I install Sharepoint Reporting Services Addin CTP on computer with 1. Sharepoint Server 2007 Trial, 2. MS SQL Server 2005 (Developer Edition) SP2 CTP, Reporting Services included installed Documentation tells that I can use "Office SharePoint Server 2007, Beta 2 Technical Refresh or later". Does Sharepoint 2007 Trial fit in ...Show All
SQL Server Attach database - error 602
Hello, After re-installation of MS SQL Server 2000 (Developer edition), I wanted to attch I previously available instances in the Enterprise Manager. But, when I select "Attach database", I get the error: Error 602: Could not find row in sysindexes for database ID 9, object ID 1, index ID 1. Run DBCC CHECKTABLE on sysindexes. When I run this "DBCC CHECKTABLE", I get the message that no errors have been found. What should I do IS that database detached properly previsouly If not try to use RESTORE statement from the backup file and also ensure the service pack level from the previous installation should match with it. ...Show All
Visual C# Read/Modify/Add Lines
Hello all, I am creating a windows application program that reads a text file in which my console program creates “It takes a person name, gender, weight, and height.” What I want to do in the windows application is read that file, and ask the user to input a test score for that person and then add it to that person category in the text and save it. For example Console Version of Text File Name: Steve Gender: M Height: 67 Weight: 176 Windows Version after User Input Name: Steve Gender: M Height: 67 Weight: 176 Grade: 88 One of the many problems I’m facing is I have more that one applicant, so I need it to go under the weight of each person in that file. In ...Show All
Internet Explorer Development Browser dependent problem
Open http://www.idspackaging.com in internetexplorer and mozilla u will find a difference, mozilla is not supporting style sheet... ...Show All
Visual C# XML Reading
Hi, can anyone help me i am trying to read a xml file with multiple sections, my xml layout is like this <downloads> <1> <name></name> <description></description> <link></link> </1> <2> <name></name> <description></description> <link></link> </2> </downloads> thats pretty much what its layout is like just wondering if anyone can help me to read this Would it be possible for you to change the format of your XML layout Something like this would be better for the Framework: <downloads> <download> <name></name> <description& ...Show All
Visual Studio Team System Custom rules in FxCop 1.35
I am facing problems while executing custom rules in FxCop. I wrote a very elementary custom rule and was able to compile it. Also added Rules.xml as a embedded resource. But when I add the same rule in FxCop GUI, the rule does not show as a node in the rules tab. I even tried copy-pasting one of the existing custom rules on the net but the result is the same. The rule compiles fine but FxCop GUI does not display the rule. Is there a specifc name that I should give to rules xml Here is the rules class #region Using directives using System; using System.Globalization; using Microsoft.Cci; using Microsoft.FxCop.Sdk; using Microsoft.FxCop.Sdk.Introspection; #endregion namespace FxCop.Rules { /// <summary> ...Show All
Visual Studio Express Editions Get back to my program with keyboard
Hi, My program will be hidden and at times I want to come back to it with a keyboard combination, such as alt-u. Can anyone tell me how to do that Thanks in advance, Wayne Thanks guys, I have a friend that pointed me to this site which is what I need. I works like the old TSR programs, get the key - if it is what you need then process - forward the key back to windows. If anyone is interested the link is: http://www.developer.com/net/net/article.php/2193301 Thanks again, Wayne ...Show All
Visual Studio Still show as Trial version after upgrade into Non-Trial version of VS2005
Hi, I have a problem with VS2005. At first, I had standard version of VS2005 in my computer and it worked fine. A few months later, my boss asked me to install Team Suite (trial version) and it worked fine too (except it's a trial version). A month later, we bought Team Edition for Software developer version. After uninstalled the trial version and installed "Team Edition for Software Developer", the trial version still shows up on About Form with # of dates remain. I have tried many different ways to cleanup that “trial version” but "trial version" stills there. Please help. Regards, JDang I found the solution on the internet. You can try this technique by rem ...Show All
Visual Basic backgroundworker
Hi All, First, I am not sure if I have posted in the proper forum. If not I apoligize. My issue is , regarding the background worker, if I call the reportprogress method I get the following error below from the form that contains the backgroundworker control. Anyone have any ideas System.Reflection.TargetInvocationException was unhandled Message="Exception has been thrown by the target of an invocation." Source="mscorlib" StackTrace: at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner) at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, ...Show All
Visual Studio Setting the selection in an add-in
I would like to find the cursor position, then determine what codeElement contains the current cursor position, then select all the text in that code element, which is a function. So far I have been able to use "Selection.ActivePoint()" to get a TextPoint, then I can get the CodeElement for that TextPoint ( used Carlos great example for this. ) That's as far as I get - I've fumbled around with EndPoints and StartPoints, but can't seem to SET the selection for the current code element ( a function) from my add-in, so that I can get back the text in the selection. Any example of suggestions are greatly appreciated. RJ Assuming that you already have the point(s) that delimite the text that ...Show All
Visual Studio Tools for Office Problems with VSTO2005 on Vista
hi, I just installed VSTO2005 (English version out of the box) + SE (download) on Windows Vista Business (german version). Now I have the following problems: 1) The language of the menu-items in the VSTO-IDE is mixed (english/german). For example I get a "File/Open" menu-item (in English) and a "File/Schliesen" menu-item ("Schliesen" is the german word for "Close"). 2) The local help (although successfully installed) cannot be accessed in the VS-IDE (is always empty). I have seen on Microsoft websites, that there exists a VS2005 SP1 and a VS2005 SP1 Update for Vista (Beta). BUT as VSTO2005 is NOT listed as a valid VS-version for VS2005 SP1, I cannot install it. And therefore I cannot install th ...Show All
Visual C# copy data from 1 dimensional byte array to 2 dimensional byte array
if i have 2 byte arrays such as byte[] s_temp_array = new byte[100]; byte[,] s_final_array = new byte[10,10]; is it possible to block copy s_temp_array into s_final_array and access s_final_array as a 2 dimensional array such as Buffer.BlockCopy( s_temp_array , 0, s_final_array , 0, 100 ); or would i need to go through every offset and just do it manually like Buffer.BlockCopy( s_temp_array , 0, s_final_array , 0, 10 ); Buffer.BlockCopy( s_temp_array , 10, s_final_array , 1, 10 ); Buffer.BlockCopy( s_temp_array , 20, s_final_array , 2, 10 ); Buffer.BlockCopy( s_temp_array , 30, s_final_array , 3, 10 ); etc.. Yes, you can do: Buffer .BlockCopy(s_temp_array, 0, s_final_array, 0, 100); ...Show All
