Van Dinh's Q&A profile
Visual Studio Team System setup team foundation server error - and hotifx
hi, i tried to install team foundation server and i get the following error code: EventType : visualstudio8setup P1 : 12841 P2 : 8.0.50727.43_vstfbeta3_x86_cd P3 : msi P4 : inst P5 : f P6 : ca_quietexec P7 : 6 P8 : 1603 P9 : - P10 : - any suggestions what the problem is operating system: windows server 2003 sp1 installation guide: TFSInstall-v60317.chm hotfix KB913393 for Microsoft .NET Framework 2.0 not installed, because ...Show All
.NET Development submit bug report for IE 6?
can someone tell me where to submit a bug report for IE 6 thanks I would search the support database first. http://support.microsoft.com/search/ adv=1 If it's not in in there you the following page has instructions on how to report a bug for IE: http://support.microsoft.com/gp/contactusie ...Show All
Windows Forms How to use PropertyManager
Is there any sample code available Thanks Peter ...Show All
Visual C++ Are there ANY advantages to using function pointers over regular function calls?
Hello All, Can anyone please anyswer this question Are there ANY advantages to using function pointers over regular function calls This is for a friend of mine. I would really appreciate it. Thanks, Rosraj rosraj wrote: Hello All, Can anyone please anyswer this question Are there ANY advantages to using function pointers over regular function calls This is for a friend of mine. I would really appreciate it. ...Show All
SQL Server HELP: Failed to create the task. (Microsoft Visual Studio)
I created my first SSIS project in BI Dev Studio but get the following error when trying to add a data flow task to the Control container: ================================== Failed to create the task. (Microsoft Visual Studio) =================================== Value does not fall within the expected range. (Microsoft.SqlServer.ManagedDTS) ------------------------------ Program Location: at Microsoft.SqlServer.Dts.Runtime.Exec ...Show All
Visual C# using information from a method?
well this is my code: public void newpnl() { //newpnl to hold rtf document Panel pnl = new Panel (); pnl.BackColor = Color .White; pnl.Height = 1184; pnl.Width = 832; pnl.Top = pnltop; pnl.Left = 90; pnl.BorderStyle = BorderStyle .FixedSingle; pnlContainer.Controls.Add(pnl); pnltop += 1084; //new rtf document created RichTextBox rtf = new RichTextBox (); rtf.ScrollBars = RichTextB ...Show All
Windows Forms what is up with terrarium
I havent ever played this game but I have been wanting to play for like 2 weeks now. Does anyone know where I can get an older version seeing how microsoft is obviously too lazy to update their website explaining the problem with the ...Show All
Software Development for Windows Vista Regarding Font Obfuscation - embedding
Hi, I have a query regarding Font obfsucation while embedding fonts in XPS documents. 1. Do all the fonts get obfuscated while the document is getting created as container file. 2. Also is font obsfucation always based on fsType member of the OS/2 table. 3. We used the XPS document writer and performed the following experiments. We create a document that uses majalla.ttf(it has ...Show All
Windows Forms is there any way to force a control to receive focus?
i have a custom control inherited from panel and i need to be able to handle Enter/Leave events for it..any idears First off, yes, nested controls should raise Enter and Leave events all the way up the parent hierarchy. If t ...Show All
Visual Studio 2008 (Pre-release) More Standard Query Operators
The Standard Query Operators are great, but at the same time there are ones I'm missing. They are not hard to implement oneself, but maybe they are worth including in standard set. 1. By public static IEnumerable<IEnumerable<T>> By<T>( this IEnumerable<T> source, int count); By operator groups the elements of a sequence by count. This code would return lists of products 10 products in each: ...Show All
SQL Server Problem with XMLNS version(while deploying report)
Our Report has xmlns= http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition.xsd but the server for deploying our report has different namespace..... http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition.xsd . Is there any way we can deploy reports with new namespace to the server Please guide us what we need to do to fix this problem. ALL Reporting server experts....Kindly...Please loo ...Show All
SQL Server Different row delimiters in same connection manager
I have a situation where two CSV dmited types are read in. One file row type could be CRLF while another could be CR. Seeing how the only difference between these file types is the row delimiter, I would like to use one conn manager. Is it possible Ideas It will certainly have some performance impact. You should probably do some tests to verify how acceptable the cost is for the added manageability of your p ...Show All
Visual Basic Having trouble getting a correct value of textbox3
Hi Im using VIsualbasic2005 Express (its .net of course ) Dim intText1 As Double Dim intText2 As Integer Dim intText3 As Double intText1 = Val(Frm3.TextBox1. Text) 'Here is says Conversion from string "" to type 'Long' is not valid. intText2 = Val(Frm3.TextBox2. Text) intText3 = CDbl(Val(Frm3.TextBox2. Text) * Val(Frm3.TextBox1. Text)) Frm3.TextBox3.Text = intText3 Textbox3 is still 0 When textbox ...Show All
Visual Studio Team System Associating a scenario document with a scenario work item
We've just got started with Team System and I'm trying to follow the Process Guidance on MSF for Agile Software Development. I've just created a scenario document and have published it to the project portal by choosing "Upload document..." on the Requirements folder in Visual Studio. I also associated the scenario document with my scenario work item by opening the work item in Visual Studio, clicking File Attachments and attached the file. ...Show All
Visual Basic Use a variable in a other sub
How can you use a variable in a other Sub like this. Sub a=1 End Sub Sub msgbox "a" End Sub Hi, Just declare it outside the sub: Dim a as string sub 1 a = "Hello" End sub sub 2 msgbox a end sub cheers, Paul June A. Domag ...Show All
