Software Development Network Logo
  • Audio and Video
  • Visual FoxPro
  • IE Development
  • Visual C++
  • Visual C#
  • Microsoft ISV
  • SharePoint Products
  • Windows Vista
  • VS Team System
  • Visual Basic
  • SQL Server
  • Smart Devicet
  • .NET Development
  • Visual Studio
  • Game Technologies

Software Development Network >> Visual Studio

Visual Studio

New Question

Selection box
Testing for Null in RDLC Report Field
WS-AT - getting Disabled address for Registration Service
Usage of INotifyCollectionChanged
Window AllowsTransparency="True" brings up error for Design view in VS2005
can't installing
Word Interop Hangs When Deployed To Server - Help!
Disable Navigation Hotkeys in a WPF Navigation App
How to change the color of the text caret?
Problem Deploying Visual Studio 2005 Tools for Office Solutions Using Windows Installer

Top Answerers

lord_8
i.i
Marshes
jaimlin
Harkernator
Philip Jaques
NoEgo
Sivaraman
mayur8u
killfr0g
sitemap
Only Title

Answer Questions

  • Joshizzle Consistant but inexplicable error when using where clause.

    I have the following code: var q = from m in db.Vms select m; which compiles and runs as expected. However as soon as I introduce a where clause, e.g. var q = from m in db.Vms where m.VmName.Contains( "tttt" ) select m; I get the following error: The type arguments for method 'System.Data.TypedTableBaseExtensions.Where<T>(System.Data.TypedTableBase<T>, System.Query.Func<T,bool>)' cannot be inferred from the usage. Try specifying the type arguments explicitly. All of the correct references are established, i.e. System.Query.dll System.Data.DLinq.dll System.Data.Extensions.dll as well as CSharp3CodeDomProvider.dll I used SQLMetal.exe to pr ...Show All

  • Mitch Walker - MSFT MSBuild does not copy dlls to Bin of Web Project

    I am trying to us MSBuild to build my solution so that I can use CC.NET however, I have found a problem that MSBuild is not copying the required assemblies to the bin folder. When I compile in VS.NET 2005 it works correctly. I have not been able to find a solution for this. Thanks, Austin Is it possible that you are using one configuration in the IDE and another using MSBuild The build output path is configuration specific, so if you have the output path setup for debug and that's how you build in the IDE it will work, then if you use Release from MSBuild and you don't have it set it won't copy it there. Just a thought....good luck. We experienced the same problem ...Show All

  • Mantorok XamlReader.Load is not finding named elements for loose XAML

    i've got an app which loads Loose XAML using XamlReader. the problem is that named elements cannot be found by triggered animations when loaded using XamlReader.Load(). but if i embed the exact same XAML into the app ... it works fine. so how is XamlReader not parsing it the same e.g. the loose XAML has a named element in the content like this (it's an excerpt from playing video on a 3d plane). the exception this will throw when it tries to render is "'mediaElement1' name cannot be found in the name scope of 'System.Windows.Controls.MediaElement'." <GeometryModel3D> <GeometryModel3D.Material> <EmissiveMaterial> <EmissiveMaterial.Brush> <VisualBrush> ...Show All

  • McGeeky Multiple projects or multiple database???

    We have many different applications. Should I create separate sourcesafe databases for each application or should I create one database with multiple projects The advantages of the latter are obvious in that all code can be seen at once. Our company uses contractors on a regular basis however and it would be nice to only give them access to the application they are working on. What are people's thoughts on this Thanks. Check this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=261168&SiteID=1 If access rights separation is needed then the only sure way to do so is put your projects in different databases. But then again if one can check-in some code, that you are ...Show All

  • J9 [WPF] Performance problems on Windows Vista Pre-RC1

    I am currently working on WPF. Today, I installed the pre-RC1 release of Windows Vista (build 5536) and I experienced some strange behavior. The system runs pretty well with aero graphics and all cool stuffs (I have a T43p with FireGL V3200), but when I am running WPF applications using tranform animations (rotations, translations...), the system turns very slow (even the mouse pointer moves are not fluid). Is there a way to detect what are system capabilities for WPF (such as hardware Transforms or stuff like that) to compare my XP and Vista working environments (maybe it is a Graphic Card driver that does not provide hardware transformations for 2D objects...) After some investigations, my device ...Show All

  • Alexnaldo Santos To Include non-strongly type DLL

    In my build, there are several DLL's that I need to include. Problem is that these are not strongly typed to I can't GAC the dlls. What other ways can I acheive this Sorry, but that is not what I am asking... I have a solution that references some DLLs that are not strongly typed. In the solution, I can build that fine. But when I build it on TFS, it does not recognize those DLLs. And, since it's not strongly typed, I cannot GAC it. I'm not sure if I'm understanding you correctly. I believe that you are asking how you can get non-strongnamed assemblies into the GAC. The answer is, you can't. Strong naming is a requirement for entry into the GAC. If you are asking how ...Show All

  • coolcars Problem using DTE80a.olb

    Hi, I have migrated my code from .NET2003 to .NET2005. I used DTE.tlb, it gave me build error. However i got sudgestion from VSIP developer to use DTE.olb. But now I can see that this file is not present in VS2005. I used DTE80a.olb as I read in forums that this is just renamed form of DTE.olb. The build is successful but at run time, I get error CreatCustomeProject error at the time of clicking finish of Application settings page and project is not created. Can somebody tell me what is going wrong with DTE80a.olb Thanks Are you still seeing this problem, and if so, which project language are you trying to automate If it is you own custom language, then you will need to debug through your project to see where the exception is being ...Show All

  • LSDev_KF Using Images and/or Accessing a ControlTemplate Item in a Custom Control

    I have a custom control with a simple Image object in the generic.xaml: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:Logo_Asset" > <Style TargetType="{x:Type local:Logo_Asset}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type local:Logo_Asset}"> <Image Name="LogoImage" Source="Resources/the_image.bmp"/> </ControlTemplate> </Setter.Value> </Setter> </Style> </ResourceDictionary> The image exists in the project in the resources folder and its build action is set to "Resource". The custom cont ...Show All

  • Matt Stum Copy file peculiarity

    I am copying an app.config file from the project folder to the target folder and re-naming it in line with the target file - all normal, so far. The problem is that when the file is copied, it now has an extra hex character at the end of it, (shown as a rectangle in Wordpad) preventing the configuration service from correctly parsing the file at run-time... has anyone seen this before TIA, Paul_G Build event line: COPY "$(ProjectDir)*.config" "$(TargetPath).config That's bizarre. If you run that command outside of the build, from cmd.exe, does it happen then No. If I run the command from cmd.exe then it copies without any problems! The plot thickens... ...I seem to have fixed it. I changed the build li ...Show All

  • Confused4130 Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))

    Any ideas why I am getting COMException when I was expecting and handling an exception of type CrystalDecisions.CrystalReports.Engine. InvalidArgumentException Why are those nasty interop exceptions showing up Thanks Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX)) Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.COMException: Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX)) Source Error: Stupid stupid me. When I double checked that the parameter names we ...Show All

  • Zeeina Binding works when debugging, but not otherwise

    I've been having some issues with bindings, and run into this strange issue. I was expecting some binding to work, but it wasn't so I debugged. After all breakpoints had been hit, the application fully executes, and the binding works. If I run the app without debugging, the binding fails. Binding a standard element to the property works all the time. Binding to the User Control DPs only works when debugging. I'll post the code, I hope it's not too long; thanks again lee. I found the *main* problem I had with this UC. The UC's DPs default binding mode is One-Way. From msdn: "In general, user-editable control properties, such as those of text boxes and check boxes, default to two-way bindings, whereas most other properties defa ...Show All

  • Brian Prodigy Matrix question

    I need to make a matrix that is something like this: 9:00AM Column1 Column2 ColumnN 9:00AM 9:15AM ... ... ... 9:15AM 9:30AM ... ... ... 9:30AM 9:45AM ... ... ... 9:45AM How can I accomplish this I have tried making another matrix to the left, but for some reason it doesn't line up quite right, plus I don't really need the column group, but it insists that I have one. Any ideas OK, since it appears I can't do this, where do I enter in a suggestion or a bug for this product ...Show All

  • kgs1951 Windows Vista, VSTO 2005 SE addin on Office 2003 not working

    Configuration: Windows Vista Visual Studio 2005 VSTO 2005 SE Office 2003 Professional Problem: I've just upgraded from XP to Vista and after that even the simplest VSTO Outlook addin doesn't work any more. I can't debug the project and ThisApplication_Startup event not firing. When I look at the addin i Outlook (COM Add-Ins/Add-Ins available) the Load Behavior is "Not loaded. A runtime error occurred during the load of the COM Add-in." Kindly help me with this issue Regards Gazza   More qustions: - Does the VSTO_LOGALERTS and VSTO_SUPRESSDISPLAYALERTS work on Windows Vista Seems not to, I can't find the log file where it's supposed to be nor do I get alerts. Regard ...Show All

  • blender Problem debugging multithreaded application

    I have mixed C# - C++/CLI project. In C# code there is event handler which is called from a worker thread. When I set breakpoint in event handler, debugger breaks on it. When I press F10 or Step Over, debugger hangs for 5-10 seconds, at this time I see tray tooltip "Visual Studio is busy". Then the following output appears: 'CameraTest.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.Configuration\6e7f914e29c6414cba7d15ee00017064\System.Configuration.ni.dll', No symbols loaded. 'CameraTest.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll', No symbols loaded. 'CameraTest.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System ...Show All

  • Jehan Badshah I want to specify attached property for Binding.

    For instance, I want to know the change in the Grid.Row property in the MyGrid class. It is the following codes that I tried. public class MyGrid : Grid { static MyGrid() { FrameworkPropertyMetadata metaData = new FrameworkPropertyMetadata(0); metaData. PropertyChangedCallback += OnAttachedRowChanged; Grid.RowProperty.OverrideMetadata ( typeof(MyGrid), metaData ); } private static void OnAttachedRowChanged( DependencyObject d, DependencyPropertyChangedEventArgs e) { // It is not called. MessageBox.Show( "Call OnAttachedRowChanged" ); } } It is not possible to straighten out that problem by "Grid.RowProperty.OverrideMetadata". Please teach the method of receiving the notification. ...Show All

92939495969798990123456789

©2008 Software Development Network

powered by phorum