Jaypee's Q&A profile
Visual Studio Team System VSTS Team Builds - Project Build Order
VSTS Beta 3... I have a single sollution with approximately 10 projects - I need certain projects to build in a particular order. Setting up my project dependencies and building the sollution locally works fine...when I look at the Project Build Order in the Solution...it looks something like this: A B C D E and it succeeds on build. When I build via Team Builds, the build order ends up like this: B A E D C And it fails on build. How can I correct this thanks in advance, dec. Team Build does the building at the solution level only. Hence, the local and Team ...Show All
Visual Studio Express Editions registratiojn benefits are....where?
I've installed and registered vs express. My confirmation email said " Accessing your registration benefits is easy. Simply go to the Registration Benefit Portal for further instructions. Your registration benefits and offers will be available starting on November 7, 2005. Check the Registration Benefit Portal regularly to access new and updated benefits. " I go there but....nothing! any ideas thanks danieldp I think I have the same problem..... When i click on the "Registration Benefit Portal" link I end up " @ Microsoft Connect, where after registering AGAIN I am invited to sign up for applicat ...Show All
.NET Development Question regarding VS.NET Trial Version
Hello, I have a quick question regarding the Visual Studio .NET 60-Day Trial Version. I know the IDE will cease to function when the trial period is over. However, will any code I wrote with the trial version still work on another computer with VS on it even after the trial period is over Thanks for your help. Yeah, it's just like uninstalling the IDE - the programs compiled with it still work. And if you don't mind using the command line compiler, you could even keep working on the programs... the languages are free, it's the IDE (and all those helpful tools) that you pay for. ...Show All
Windows Forms How to set a font for ToolTip
Hi all, How can i change the font of tool tip, is there any way to do that. There are several components available in the WinForms Control Gallery that support this. ...Show All
Visual Studio Express Editions text align in users drawn table with GDI
hi i am using a simple code to draw a table with GDI in c# the table position is set automaticaly and i also want to draw a table name automatically centered,maybe someone know some proportions of pixels and strings lengths. i can only know the center of the table, but how to draw a table name (can be different lengths) in the center, here us my example: Graphics g = gg.Graphics; Pen p = new Pen ( Color .Black); int last = 0; //just row koeficient int last2 = 0; //just row koeficient int last3 = 0; //just row koeficient for ( int i = 0; i < 18; i++) { if ((i) == 13) { last = (_kof * (i)); ...Show All
Visual Studio Team System Microsoft Partner Program License Benefits FAQ
The Partner team has provided me with the following FAQ, which I'd like to share with all of you in the hopes that it answers many of your questions. Thanks, Ajay 12/8/05 - I've updated the FAQ with a new version that I received from the partner team. This information will be making its way to the partner Web site as well. Eligible partners are scheduled to have access to Team Edition for Software Developers on 12/16. In the meantime, the Team Suite 180-day trial is available for your evaluation. We apologize for the delay. Microsoft Partner Program License Benefits FAQ MicrosoftR Visual StudioR 2005 with MSDNR Subscrip ...Show All
Visual Studio Team System Which port does TFS use?
If I want to access TFS from outside my company, which port should I open on the firewall of my company Is it 8080 only Thanks! We are trying to get to the point where the DT can sit behind a Firewall and have ONLY have the AT the front end. This will occur in RTM. Due to a few underlying issues on how our product works with YUKON (which is currently fixed post Beta2). This, however, will not reduce the need to open Yukon via TCP. You can also open a different port for Yukon, and then on the AT set up an alias to point to that new port. That should reduce the regular attacks on 1433. ...Show All
Visual Studio Express Editions Which edition to install
Dear All Without wanting to start a religious war (but probably managing to anyway) I'd like some pointers on which of the Express editions would be best to code my project in. The project is thus: An application to design the layout of advertisements in magazines by reading the advert booking details from a database and then storing them in the appropriate page of the right magazine. Then printing off A3 layout 'thumbnails' of the pages and ad positions. Currently this is all done on A3 sheets that are photocopied and ruled up with a pencil (obviously time consuming when the layout is changed) My thought was to have the ma ...Show All
Windows Forms Need help exporting data in data grid to Word
I'm still stuck on how to export data from a data grid into Word. The data in the data grid is compiled from a query that the user builds. Is there any alternative I can't use data reports because the fields on the report cannot be set at runtime. I just need to be able to let the user run a query on a database, and then& ...Show All
SQL Server How do load all raw data in one directory into the database
Hi, Is there anyway to load all the raw data in one directory into the database l've several files with same format but different filename in one folder which l do not know their filename before hand. Is SSIS For Each Loop can help me to accomplish the file loading If so, where can l find the example Thanks you. Regards, Yong Boon, Lim Yes, For Each loop is the one to use. Looping over files with the Foreach Loop ( http://www.sqlis.com/default.aspx 55 ) ...Show All
SQL Server Can a Snapshot report be created programmatically?
Can I create a Snapshot report with parameters programmatically in RS 2000 or RS 2005 If this can be done what is the command for it Thanks. Yes. The report has to be set to Snapshot Execution and has to have default values. The SOAP method to call is UpdateSnapshot. If you want to create a history snapshot then you can call CreateReportHistorySnapshot. You can not set the parameters when calling these parameters. If you want the parameters different then you must first set the report parameters then call one of the above methods. -Daniel ...Show All
Visual C# Unmanaged Code (written in C++) Interop with C#
Hi, I am trying to write a wrapper in C# for the unmanaged code written in C++. Whats wrong in the following code. C++ (Unmanaged Code) extern int DllExport __stdcall GetName( LPSTR name) { name = "Smith, Allan"; strcat( name, "\0"); return strlen( name); } Wrapper Definition (Written in C#) [DllImport("Unmanaged.Dll", SetLastError=true, ThrowOnUnmappableChar=true, EntryPoint="GetName)] public static extern int GetName( [MarshalAs(UnmanagedType.LPStr)] string name); Wrapper function (written in C#) public static int GetName( string name) { int rc; r ...Show All
Visual Basic Where are the Navigate Backward and Forward buttons in VS2005 VB Text Editor?
Hi guys, Does anybody know the answer on this stupid question I get used to click on these buttons in VS2003. It was quite comfortable to get back when I 'Go to Definition'. Now, in VS2005, I have to remember from what place I jumped to Definition in order to get back. I've ticked off the Tools->Options->Text Editor->All languages->General->Navigation Bar checkbox but it didn't help. Cheers, B7 it would be great if you had a Navigate Back option on the context menu, like VB had "Last Position" ...Show All
Software Development for Windows Vista question about load state workflow from xoml file?
Hi, I am using the following code to load a state machine workflow WorkflowInstance instance = _wfRuntime.CreateWorkflow(new XmlReader("WorkflowTest.xoml") WorkflowTest.xoml is like this <ns0:BaseWorkflow x:Class="Epic.Kiosk.Workflow.WorkflowTest" ...> ... The question I have is the code only works if I remove x:Class="WorkflowTest.WorkflowTest" from the xoml file, otherwise it will error saying "workflow validation error". I guess the reason the validation failes is because "WorkflowTest.WorkflowTest" is not defined any where. My question is what is the bes ...Show All
Visual Studio Team System Problem in installing load agent controller with domain account
Hi, I am trying to install Visual studio 2005 Team Test load agent controller. I have the full admininstrative rights on my machine. While specifiying the logon account for Team Test Controller Service I have given the domain username and password. But while installation it is giving error message "Error 1920.Service 'Visual Studio Team Controller'(vsttcontroller) failed to start. Verify that you have sufficient privileges to start system services " Because of this error I have tried with local user and password(not domain user). Now It has been successfully installed. Can anyone tell me what additional step s needs t ...Show All
