Arstan's Q&A profile
Visual Studio Express Editions I have it install correctly but I keep get this error (in message) and can't do anything
Could not load type "microsoft.visualstudio.shell.interop.ivsrunningdocumenttable2" from assembly "microsoft.visualstudio.shell.interop.8.0, version=8.0.0.0, Culture=neutral, publickeytoken=b03f5f11d50a3a'a My guess is that you missed something in uninstalling the Beta. From the error message, it sounds like the VSPackage for the Windows Forms designer isn't getting registered properly, possibly due to an artifact from the Beta. The folowing thread in the Express Editions forum may be of help: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=134495&SiteID=1 - Steve Hoag ...Show All
Visual Studio Team System Error: 28002 During Install
I've seen some other people post about this error, but I haven't really seen any solutions. I'm installing a single server deployment of TFS on a Win2K3 server with a domain admin account. The error i get is Error 28002 about halfway into the install. Here's the details from my Event Log. Detailed Message: TF50621: GSS: Failed to retrieve identity from source : [S-1-5-21-3001352713-997110418-654693162-1110] Exception Message: The specified domain does not exist or cannot be contacted. (type ActiveDirectoryObjectNotFoundException) Exception Stack Trace: at System.DirectoryServices.ActiveDirectory.Domain.GetDomain(DirectoryContext context) a ...Show All
Visual Studio 2008 (Pre-release) MSMQ error opening queue
Hello. I'm trying to use msmq to establish communication between and indigo client and an indigo server. I've set the endpoint like this on the server: <endpoint address="net.msmq://localhost/private$/indigotests" binding="netMsmqBinding" contract="ProgrammingIndigo.IWeather" ...Show All
Visual C# custom appdomain, crossing .net versions, "Type is not resolved for member <member I'm loading>"
I'm stumped! I have an app which loads assemblies into a seperate app domain. it is written in 2.0. I have the assemblies I'm loading which were built in 1.1. I have a custom interface library which was written in 1.1 signed and installed in the GAC. I have a custom appdomain loader (marshal by ref object) which was written in 2.0, and uses the interface library which was done in 1.1 to pass a type back to the default appdomain. It is also signed and installed in the gac. here's the loader: namespace AppDomainLoader { public class LoadManager : MarshalByRefObject { public IAddIn LoadAddIn(string asmPa ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Floating Point arithmetic difference between VB and C#
I am in a bit of state at the moment, I am really surprised at what I have found, please see the two code samples below. The first is Visual Basic and yields a result of: 100040624.0 the second C# and yields a result of: 100040629.0, which is correct. This error is causing my Line Circle intersection function to fail!! Oh my God have just spent the last two years writing my app in VB and now have to convert to C#. Dim a, b, c As Double a = 10002 b = 25 c = a * a + b * b result: 100040624.0 double a,b,c; a = 10002; b = 25; c = a * a + b * b; ...Show All
Visual Studio Express Editions SQL EXPRESS Uninstall
I made mistake. Prior installing SQL Server 2005 Standard Edition, I installed Visual Studio 2005 Standard Edition which by default installs SQL Server Expres (if you select Web Components during Visual Studio Installation). I went back and removed Web Components hoping that SQL express will be uninstalled, but that wasn't the case. Questions: 1) How can I remove this SQL Server Express from my computer 2) Why for god's sake would somebody want to have SQL Server installation without removal option First of all, It's beta and MICROSOFT KNOWS that eventually we will be upgrading or switching to different SQL Server Frustrated..... 1. ...Show All
Visual Studio Team System Identifying ref and out modifiers on method parameters.
How can this be determined through the API I know the Parameter.IsOut property is available but what about parameters passed with the ref keyword The only thing I've seen that identifies a parameter being passed with that keyword is the addition of '@' on the Expression.Type name properties. On a side note, why is it that the '@' character is used in the API and the '&' character is used in the IL with the ref keyword Thanks. Nevermind, I don't see how I missed it but Parameter.Type.NodeType == NodeType.Reference. The IsOut property definitely accesses the flags data Jeff mentions, so there must be some ...Show All
SQL Server sql statement: listing all values
Hi, i have two tables. Users: - userid, username Location: - userid, postalAddress, timestamp i want to create a view that lists all users (id and name) along with their latest Location address. i use the following sql statement which: select Users . name , Users .userid, Location.postalAddress from Users inner join Location on Location . userid = Users . userid where Location . timestamp IN ( Select MAX ( Location . timestamp ) FROM Location group by Location . userid ) The problem with this statement is that if for some users there is no location data then such users are not li ...Show All
Visual FoxPro ensuring data integrity using cursoradapters
What is the best way 2 ensure that no partial updates occur when using cursoradapters on VFP8 Currently am issuing different TABLEUPDATES for all the cursors open. I am using an Access databases. Is there something like BEGIN TRANSACTION...END TRANSACTION when using CursorAdapaters Please give me the best approach to ensure data integrity and consistency. Thanks. thanks you all for your insights and ideas. I appreciate. Am going to test the idea of connection handles and see if it works. Am now using SQL Server 2000 instead of Access. I want to move to the next level! ...Show All
Visual C# Form2Form Problem in Visual c# Express
Ok gang, I have been doing research on the net and on these forums for about 3 days now and I'm still stuck with the same problem. There are tons of expanations out these but I dont understand why they dont work for me. I have 1 main form which is a MDI parent I have a second form which I call and make a child. Like this public void newProjectToolStripMenuItem_Click(object sender, EventArgs e) Form newproject = new NewProject(); newproject.MdiParent = this; &nbs ...Show All
Visual C# Unmanaged codes for C#?
Please corrected me if I was wrong, because I discuss this issue with my supervisor. Typically C# writes the managed codes and unsafe codes, but my supervisor insisted that C# could write unmanaged codes, at least in .NET Framework 1.0( ). I know C# could work with unmanaged codes, but I doubt C# could write unmanaged codes. C# need CLR, right You are correct, C# can write unsafe code, but C# is managed.. But C# can call/use unmanaged DLL's.. maybe that is what he meant ...Show All
Visual C# turn this algorithm into code...help please
The following algorithm is for checking a person's birth date / birth number combination (an equivalent to social security number). The birth date / birth number combination consists of a 10 digit number, YYMMDDNNNN, for example 7401204933. To decide if this number is correct, you multiply each digit alternatively with 2 and 1, starting with 2. Next, you add the results together. Finally, you have to be able to evenly divide the sum by 10, for the number to be correct. For example, checking the number 7401204933 would look like this: 7 * 2 = 14 ---> 1 + 4 4 * 1 = 4 ---> 4 0 * 2 = 0 ---> 0 1 * 1 = 1 ---> 1 2 * 2 = 4 ---&g ...Show All
Visual Studio Tools for Office Chart Component
Is "chart component" available (Platform - VC++ 2005 Express Edition) Thanks, VSTO is not part of the VC++ Express Edition. http://msdn.microsoft.com/office/understanding/vsto/default.aspx I'm not sure what you mean by the "Chart Component". Thanks, Ade ...Show All
Visual Studio 2008 (Pre-release) Bind to existing object instance
After searching high and low I don't see a simple example for binding to an existing object instance using XAML. I am using the Nov. CTP How does one do the following in XAML < StackPanel x:Name = " MyPanel " > < TextBox x:Name = " TBName " Text = " {Binding Path=Name} " ></ TextBox > </ StackPanel > namespace BindToObject { Class Window1 { public Person person = new Person("Bob"); --- MyPanel.DataContext = person; --- } } Thank You! That is exactly what I am looking for. The key was giving my window a name a ...Show All
Visual FoxPro _urlcombobox problem
I am trying to use this object since it offers much convenience as opposed to shellexecute. This is the problem I run into. When I issue commands in INIT: THIS.AddItem ("www.msn.com",1,1) THIS.AddItem("www.yahoo.com",2,1) THIS.AddItem("www.pdr.net",3,1) The items appear in combobox doubled. This set of urls is repeated twice! Not every url is doubled individualy but the whole set of three urls. This is not all. When I removed the last item, I saw five items in the box: msn.com and yahoo.net were doubled but the last one, pdr.net which is supposed to have been gone appeared as a single item. The co ...Show All
