Souhail's Q&A profile
Visual Studio VS2005 Install Problem
Hi! While trying to install the latest release of VS2005 I keep getting the following error: "Suite Integration Toolkit Executable has encountered a problem and needs to close. We are sorry for the inconvenience." Does anyone have any idea why I get this This usually means the media is corrupt. How did you get the CD/DVD If you got it off MSDN as an ISO, make sure you bur ...Show All
Visual Studio Team System Merge problem
I've played with branching and merging in Beta 3 Refresh a little bit and got some strange results. Use Source Control Explorer to to the following: 1. Start with file $/Playground/BranchTest/A/class1.cs 2. Branch $/Playground/BranchTest/A to $/Playground/BranchTest/A-branch and check-in 3. Delete $/Playground/BranchTest/A-branch and check-in (Changeset C2539) 4. Recreate the branch (e.g. because deletion was ...Show All
SQL Server SQL 2005 Instalation
Hi, I downloaded the express edition and the management studio express, I installed it in my computer, and the wizards said that the installation finished ok, but when I click the icon in my programs, it simply doesnt do anything, it doesn't open the application, does some one now why, do I have to unistall something before Thanks and Regards, AC Yes, go to this link http://www.microsoft.com/downloads/details.aspx family ...Show All
Visual Studio Team System DoNotMarkEnumsWithFlags
Hi, FxCop recommends that I don't decorate my enum with the flags attribute, even though the enumeration contains bit fields. This rule appears to have a regex that looks for hex values. This regex should be updated for enum declarations like the following: [Flags] public enum ValidationTypes : int { Any = int .MaxValue , Data = 1 << 0 , Model = 1 << 1 } ...Show All
Visual Studio 2008 (Pre-release) Timeout for wrong username or password
Hi, In the example : WindowsCommunicationFoundation\TechnologySamples\Basic\Binding\WS\MessageSecurity\Username\CS For correct username and password all work fine, but if I inform a wrong username or password I receive a timeout exception. Why not "Security Exception" "The Http method invocation to http://localhost/servicemodelsamples/service.svc has exceeded the configured operation timeout." Thanks, Alexnald ...Show All
Visual Basic Blair Allen Stark
Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input. Lab Problem III A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period ...Show All
Visual Basic How to Get Optional Parameter Names automatically typed through Intellisense
I'm having a method which accepts more then 10 Optional parameter. In calling code, i want to give facility to the person using my class to get optional parameter names directly through intellisense. is there any way to accomplish this Thanks for providing this Link. I have posted it, below given is Problem description and proposed Solution http://lab.msdn.microsoft.com/ProductFeedback/viewfeed ...Show All
Visual Studio Tools for Office Manged outlook add-in issue
So I am having an issue with some code, that checks the mailitem.sendername and then moves it to a folder and then flags it. Just something simple, am using a switch statement to do the job... the code is as following: void ThisApplication_NewMail() { Outlook.MAPIFolder _inbox = this .GetNamespace("MAPI").GetDefaultFolder(Microsoft.Office.Inter ...Show All
Visual Studio Express Editions VB 2005 Express registration
When i click on the link to "Registration Benefit Portal" (http://go.microsoft.com/fwlink/ LinkId=52054) i enventually get redirected to https://connect.microsoft.com/downloads/downloads.aspx SiteID=40 which says Error: The page you have requested is unavailable or you do not have access. Suggest MS update something :-) and can anyone tell me how i get to this web page It might take a day or two before the ben ...Show All
Visual Basic TabStop Indexing
I would like to be able to duplicate the following TabStop Code that was converted from VB6 to VB8 (2005) while coding in VB8. VB6 Field Indexing Converted to VB8 by Wizard. If (Val(TxtFld( lop ).Text) = 0 ) Or _ (Val(TxtFld ( lop ).Text) > maxFld) Then…….. If (Val(TxtFld( 0 ).Text) = 0 ) And _ (Val(TxtFld( 1 ).Text) = 0 ) And _ (Val(TxtFld( 2 ).Text) = 0 ) And _ (Va ...Show All
.NET Development Converting to Unicode
I have the following code in vb6: StrConv(sServer, vbUnicode) Can anybody tell me how to do this in c# Hello Gbez, While I haven't tried running your code, I would recommend running your application with CLRSpy - specifically the Marshalling Customer Debug Probe. It may be that there is a marshalling issue with the PInvoke calls. Adam Nathan talks about CLR Spy on his CLR Interop Blog on MSDN: http://b ...Show All
Windows Forms Class is not in the assembly
I keep getting a message that says my class is not in the assembly. Of course it is in the assembly. Does anyone know what might cause this problem Check the project properties. There should be a property called "Default&nbs ...Show All
Visual C# How to load a textbox?
Again, I'm still new to C#. I have this code in VB: Protected Sub txtSummary_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtSummary.Load Dim strSummary As String strSummary = txtFstName.Text & " " & txtLstName.Text End Sub How do I do exactly like this in C# I tried: protected void txtSummary_Load(object sender, EventArgs e) { string strSummary; strSummary ...Show All
Visual Studio Team System Beta TFS MSSCCI plugin now available for VB6, VC6 (not yet VS 2002/2003)
There's now a beta of the TFS MSSCCI plugin for VB6, VC6, etc., but it's not for VS 2002/2003 -- that's still too come. You can download it at http://www.microsoft.com/downloads/details.aspx familyid=32202966-EF04-442F-8C5C-88BDF15F551C&displaylang=en . Brian Harry posted some details about it, including the fact that it is not part of the go-live license . http://blogs.msdn.com/bharry/archive/2005/12/29/507993.aspx ...Show All
Visual Studio 2008 (Pre-release) loadbaml/xaml: where do things stand?
hi all, I need to load dynamic content into my canvas. Application.LoadComponent seems not to be an option, because the content is created separately from the loading app. If loading baml is faster than loading xaml, I'd much rather use the binary format. What are my options, what is the recommended way and is there a clear tested C# code snippet for doing this (thanx etc.) Hi dfl.. If you’re going to dynamically load xaml, check this ...Show All
