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

Software Development Network >> Visual Studio

Visual Studio

New Question

Tool Tip
apply Aero style upon custom class button
how to detect if word is being used as word mail?
Adding items to compartment
What is KB918525
VS .NET 2003 debug broken with windows XP SP2/VS2005
Unbound Fields
Default value?
DLinq w/New object Constructors
Installing VB 6.0 on Vista?

Top Answerers

Rose Say
Yairt
g_hall
Vaassu
MAwais
Mystery
JavaBoy
RubMop
Phaneendra_77
Stas Kravets
sitemap
Only Title

Answer Questions

  • Philippe Galipeau vb file problem with visual sourcesafe

    I'm using visual sourcesafe internet. I have a problem checking in VB files. ASPX files seem to be ok. I receive this message when checking in a VB file: there was failure uploading the URL http://domain/sourcesafe/vssupload_db1/ ... Do you want to retry the operation. I can create the vb file and the file is initially added to sourcesafe. But once I start making changes, it will not check back in and produces the error above. Any help is appreciated. I believe that this issue may be related to file size, not permissions or the existance of certain statements in code. In my project, everything checks in fine except for my 2MB .xsd file. It's considerably larger than the rest of the files. If I shri ...Show All

  • Marta.Pfahl XML documentation tags support in Sandcastle

    Currently Sandcastle supports C# recommended tags as defined by http://msdn2.microsoft.com/en-us/library/5ast78ax.aspx . As per the forums posts at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=629715&SiteID=1 we plan to supports the custom nDoc style tags in our ERTW release. As per http://ndoc.sourceforge.net/usersguide.html the tags we need to support are the following: <event> <exclude> <overloads> <preliminary> <threadsafety> <note> Please let me know if this list is complete Also we will provide documentation on adding user defined tags. Anand.. Yes, amen to that, the inheritdoc tag is hugely useful, I used it a lot in my product! Please put ...Show All

  • MuscleHead Convert .OST to .PST

    Im trying to create an app that converts an .ost file to .pst. An .ost file is a Microsoft Exchange email file and in order to read an .ost file offline you need it to be converted to .pst. I know theres tools available for office 2000 for free but this does not work with Office 2003 only ones available need to be paid for......if you need more info on this please see http://www.nucleustechnologies.com/exchange-ost-recovery.html So this leaves me to ask i know how to convert files but what encryption do i need to lets say decrypt the ost file then pack it back in a pst form so its readable in Office 2003 as a .pst file Thanks The .ost and .pst file formats being proprietary to Microsoft, there is ...Show All

  • Troy L Capturing a "check in" event for Team Foundation Source Control in VS addin

    Hey Everyone, I was wondering if anyone could tell me how to capture a "check in" event for Team Foundation Source Control in a Visual Studio C++ addin. I took a look at the VS 2005 Automation Samples and was unclear as to where the Source Control events were being captured. In VS2003 using SourceSafe I wrote a addin that was able to capture all of the Before and After Source Safe events I would like to be able to do the same thing for Team Foundation Source Control. Our purpose for doing this is to collect more information from the user and also perform some checks against a proprietary system. Our preference would be to use a C++ addin so we don't have to write a wrapper around our unmanaged C++ classes. Thanks, ...Show All

  • jk_uk2 VS2005 and Source Safe Binding

    I am converting many cpp projects from VC6 to VC8 and am having problems with Source Safe binding in VS2005. I have a working structure like this: d:\common\ com\ project1\ project2\ project3\ include\ project4\ include\ In VC6, I could have project1 open, and add a header file that is found in common\include and still have source control over that file while working in VC6. Now that I have moved to VC8, I try to add a header file from common\include\ to project1, and it gives me an error message stating: Some of the files you are adding to your project are located outside of the project's binding root. These files cannot be source controlled unless they are moved. If the ...Show All

  • Splotz Exception thrown getting just created ListObject control

    I am getting an exception when trying to add data to a range within a list object. The strange thing is that I ran my installer on 7 different PCs, all with the same version and features of Office installed, and ran the same test scenario. The exception is only being thrown on one of the 7 machines. On the other 6 PCs, everything works wonderfully. The code is like this: myListObject = myWorksheet.Controls.AddListObject(myRange, myListName); myListObject.DataBodyRange.set_Value( Microsoft.Office.Interop .XlRangeValueDataType.xlRangeValueDefault, dataArray); The Exception is being thrown in the line of code when I try to set the data within the object (the second line of code above). Here is my exception: This document mig ...Show All

  • A kid Don't understand why entity objects are refreshing without calling Refresh

    I have some DLINQ code where I query some records and get a few records in the results. I then make a change using ADO.NET to some of those very same records in such a way that were the query to be made after the ADO.NET change, the original returned records would no longer be returned. However, I would not expect my entity objects to be aware that the records have been changed so I would expect to get the original results when iterating through the DLINQ query again. I wrote some (slightly) more simple code to demonstrate this with the Northwind database so you can reproduce it. I generated my entity classes with SQLMetal with the pluralize option. Here is the code: // Get our DataContext. Northwind db = new Nort ...Show All

  • Judyt Sandcastle coming from ndoc. Looking for <exclude /> equivelent.

    Is there such a think in sandcastle If not, is this something that can be done with the transformation somewhere in the pipeline (I'm not an xml guru, so be gentle if I need to go that route). FYI: <exclude/> was used in ndoc to exclude public classes from generating output. Not yet. However we will support <exclude />, <overloads /> and other tags for our RTW release. Anand.. ...Show All

  • Dietz Is crystal reports for visual studio.net 2005 free for deployment?

    I have a series question. 1. Is the crystal reports bundle for visual studio.net 2005 free for production deployment 2. How's the performance of this free crystal reports Is the report generation engine is weaker than the full product Will there be significant difference in terms of performance between this free crystal reports version and the full version Thanks. 1. yes it is free to deploy on your production. 2. Performance will not be any difference than the full version (Developer edition), it just isn't as fully functional as the full product. ...Show All

  • canadian_coder Navigation Window: Can it be Like a web page?

    Navigation Window: Can it be Like a web page can we use a navigation window or any other window (WPF) to be like a web page which is very long and can be scrolled using the mouse wheel (after it gain focus) One can visualize uncompiled XAML as a web page, although with several limitations. You can have the Page element as root and WPF creates an implicit NavigationWindow, providing support for journalling, back/forward navigation etc. As with conventional HTML, you can hook your XAML with other XAML or HTML content using hyperlinks. Your second point is somewhat interesting. One area of WPF where a lot of work has gone is in improving readility. You see evidence of this in the NYT Times Reader apps ...Show All

  • MrMojoRisin2000 Dynamic diagram creation

    Hi! I have to create a kind of diagram that is circle with 1 filled sector. I take only 1 argument - percentage - and correspondantly fill that sector. Is there any simple or proved method of such task solution The first thing that comes to mind is to create circle, and then some kind of filled path containing arc and two lines that connect arc endpoints with center of circle. And then combine all these elements into 1. Maybe there is a better way Thanx Hi, I am looking for drawing Pie Graph in WPF. But I am not able to find suitable function drawing pie like g.FillPie in gdi. Any other function method by which we can draw Pie in WPF thanks SHAJI P.D. ...Show All

  • mabxsi "no parameterless constructor" error in wcf

    Hi all:   When I used wcf ,I wanted that the class which implemented the contract  had a  parameter constructor.But as I did this, I got a error.   Can anyone tell me how to realize what i want.   Got it . Thanks , Dave and T.Ramesh WCF requires a parameterless constructor to dynamically instantiate a service contract implementation. However, you do have some options: 1) You can pass in a self instantiated service contract (singleton) instance to the service host. 2) You can add a default constructor to your implementation and call a seperate init method to initialize the instance. Dave Here is an example ...Show All

  • Ponna ListView SortDescriptions for "uncomparable" properties?

    I've followed the ListViewSort sample WPF program as a pattern to sort my own GridView on a GridViewColumnHeader.Click event. I've modified the code slightly such that the string parameter to the SortDescription constructor is the Binding path to the property (i.e. not the header title as in the original code). string header = ((Binding)headerClicked.Column.DisplayMemberBinding).Path.Path; Sort(header, direction); This is working for properties that are strings, ints, and bools. However, one of the properties I would like to sort on is a Systems.Window.Point. Attempting to sort the grid view on this Location property causes an exception to be thrown (InvalidOperationException, "Failed to compare two elements in the array.&quo ...Show All

  • BerndMei Listview content Wrap

    Is there a way to have the control list items like in a list box but when the bottom of the screen is reached have a new column formed so that all of the content is on the screen I.E. If the screen can hold 40 rows of data and I have 100 rows to display I would end up with three columns of data. Thanks in advance That looks like it will do what I need. My next question would be how do I get a custom item that can display 7 data items and is databound to a CLR object. Would I customize the listbox item to contain my custom control The list would look like the following and would wrap just like the example you gave above. Part Price Price Change Quantity Days Part1 ...Show All

  • Sarath. Message - Serialization issue?

    I have a problem. I have Message object and I want to serialize it to string in order to load it later in wse3 SoapEnvelope object. The problem is that when I work with SoapEnvelope object like this SoapEnvelope envelope = .....; string serializedMessage = envelope.OuterXml I get correct formated string. But when I work with Message object Message envelope = ...; string serializedMessage = message.ToString(); I get string with \r\n and other special signs and whitespaces. So when I try later to load that string in SoapEnvelope object and check signature using wse3, signature check fails. I also tried to get message content using XmlDictionaryWriter class and message.Write method, but I never get the whole message cont ...Show All

767778798081828384858687888990919293

©2008 Software Development Network

powered by phorum