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

Software Development Network >> Visual Studio

Visual Studio

New Question

where can i find vsto apis for word project.
Only letters and numbers in a TextBox
HELP - Mapping Form Data to Crystal Report
Weird Error -> Underlying connection closed
Embedded - Reference Relationships ?
Invalid Member Mapping specified
Stop VS from showing last used files when opening a solution.
Web-style navigation in a stand-alone application. Why?
What is WPF ? And what I need to start Developement
Error in WCF course demo code - where is Httpcfg

Top Answerers

Bill Arnette
Terence Tung
tanmos
Glint
dagfari
vision2020
Vinodonly
prosen
Todd Virlee
Leon Mayne
GSK Technologies, Inc.
Only Title

Answer Questions

  • Liam404 crystal reports basics

    Plz give information about how a crystal report can be added to asp.net webapplication in visual studio 2003 and view it in a webform viewer. Hi subil, You can find the Crystal Reports for Visual Studio documentation at: http://msdn2.microsoft.com/en-us/library/ms345074.aspx . You'll find some great walkthroughs in the Tutorials and Sample Code section at http://msdn2.microsoft.com/en-us/library/ms227881.aspx This documentation set is up to date with VS2005 but should also work for VS2003. Basically, you need to: Create a Report Instantiate a ReportDocument Object Load the report file into the ReportDocument Object Drag and Drop a CrystalReport ...Show All

  • Malvino Include XAML into XAML

    How can I include one XAML into an other XAML. You can use Frame to host the page: <Frame Source="MyPage.xaml"/> Sheva i think you have a resourcedictionary as a external XAML-document ! now, you can use this document (reference this document) with the tag <RecourceDictionary source="MyXAMLDocument.XAML"/> in the "Recource" tag from any container’s. a small sample for using a ResourceDicnionary.xaml in a window tag. .... <Window> <Window.Resources> <ResourceDictionary source="MyXAMLDocument.xaml"/> </Window.Resources> ..... i hope it help ;-) sorry for my small englisch TOM ...Show All

  • ctallos flowdocument paragrapth aligment text problem

    Hello, may be you can help me with this text problem. I've a FlowDocument and I want to insert a text line that has two texts (TEXT1 and TEXT2). Like you see, TEXT1 and TEXT 2 are in the same line ocupping the entire flowdocument area. The problem is that I can't align the text2 to the right. Example: TEXT1 TEXT2 < Style TargetType = " {x:Type Figure} " x:Key = " styleText " > < Setter Property = " Foreground " Value = " #FF000000 " /> < Setter Property = " FontFamily " Value = " Trebuchet MS " /> < Setter Property = " VerticalAnchor " Value = " PageTop " /> < Setter Property = &quo ...Show All

  • Pma_1 update tables data in the query of joined table simultaneously.

    Suppose I have a join query which is binded to some control. Now suppose i am updating the data of the two field of first table,three field of other e.t.c. Could this be done.[I don't want's to query separately for each table] Could this be done. If yes could any body give me a example to how to do that. DLinq does not allow updates of projections which is what you have as the result of your join. However, SQL Server has some support for updateable views which might be of help to you. You could try to define a view that does the join and map a Table<JoinedView> to that. Theoretically if you have an updateable view then SQL Server would translate the update statements generated by DLINQ against the view and throug ...Show All

  • bg_blea SourceSafe Web Service cannot be accessed at teh specified address, error 0xC0CE509

    I am trying to setup a test SourceSafe database and access it through the internet plug in (both on the same machine). When I try to add a project to the database through the Add SourceSafe database wizard I get the following error: ************************ The SourceSafe Web Service cannot be accessed at the specified addrees. Address: http://192.168.0.3/SourceSafe/VssService.asmx The server returned the following error: (0xC00CE509) ************************** If I browse directly to the asmx page I get this error: **************************** The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. ...Show All

  • srjing2 How to get data from GridView

    How can i get data from GridView Even that , data binding is still the best way to go, you can set the Binding on the textbox's Text DP as a OneWayToSource data binding. Sheva GridView is only used to display data, he cannot retrieve data as you expect, actually you should use the ListView.ItemContainerGenerator.ItemFromContainer call. But I still don't understand your question, when you use data binding to display data, the data source is at your control, you can do anything against it in the code behind, why do you have to retrieve the data by manipulating the view. Sheva Scenario; i dynamically add textboxes to the gridview so that user inputs value into it. I am not binding data ...Show All

  • orangejuice VSTO Serious Deployment Problem. NamedRange controls cannot be found.

    I have an Excel document with an Action Pane which is connected to the server through remoting (although I don't think this is relevant) I deploy the document and all the assemblies into the local directory of a target machine (which has all the pre-requisites of the VSTO). Then I granted the fulltrust to the deployment directory by following command: %windir%\Microsoft.NET\Framework\v2.0.50727\caspol -m -ag All_Code -url "c:\MyVSTOProject\*" FullTrust -n "MyVSTOProject" I run the Excel and I can see the action pane in the document actions, and also the controls on it gets populated from SQL Server. However when I try to run a report through the action pane I am getting the fllowing error message: This document might not functi ...Show All

  • jayaraja Office 2007 Add-in permission problem

    Hi, I've written an Outlook 2007 Add-in with VS2005. When I used VS to deploy the add-in, everything was fine. Now I tried to deploy the add-in on a machine where no visual studio is installed. I're read this and I placed the dll file to a folder and got through the granting wizard of .Net 2.0 configuration. But when I tried to add my VSTO add-in via COM add-in browser, I got this message: <myadd-in.dll> is not a valid Outlook add-in. What else should I do hi andriscs, thanks for your response. so i have another clue for you. i haven't started googling this yet, but wanted to post this asap. my installer supports install for current user or all users. the addin works if i install for current user only, but not when install ...Show All

  • TheSniipe NetTcp with RM not being kept alive

    Hello all, I have been trying to get a client/server channel in WCF that is kept alive even when inactive. Basically, I want to have a pool of connections open that will be shared on my application. I have written some sample code that looks like the following: Service: [ServiceContract(SessionMode = SessionMode.Allowed, Namespace = " http://tempuri.org/Services/IServiceContract ")] public interface IServiceContract { [OperationContract] string DoSomething(string arg); } [ServiceBehavior(Namespace=" http://tempuri.org/Services/ServiceImplementation ")] public class ServiceImplementation : IServiceContract { #region IServiceContract Members public string DoSomething(string arg) { return str ...Show All

  • Kjelle Problem getting <summary> to appear for my Namespace

    I have a multifile DLL assembly that contains 2 classes which are both contained under my custom namespace 'Bankers'. I wanted to include a summary at the root of the namespace. Inside one of my headers for one of these 2 classes that are in the Bankers namespace, I put in a basic summary block, but it does not show up in my MSDN-CHM help file after I build it from the outputted XML file. I didnt get any errors when compiling the XML comments in Visual Studio. Does anyone know how to get NDoc to recognize this I realize there is a 'namespace summaries' button in NDoc 2.0a that allows you paste the summary inside which works, but I do not want to have to do it this way. If anyone with good experience with NDoc knows anything I would re ...Show All

  • kymaita ListObject binding

    I am using a listobject in vsto excel. it is bound to a collection. when it displaying more than 1 row and than the collection becomes 1 item after setting the binding the listobject shows 2 rows the second 1 is empty. eventhough the datasource has 1 item the listobject shows 2 rows. can any1 help pls Thank you for trying to help. As a start the listobject is bound to a collection not a datatale. I tried to repro the error, but I could not. For me, when the datatable gets reduced to 1 item, the listobject correctly resizes to just 1 item. Could you please share more details of the scenario Thanks, Nikhil Thanks for the prompt response. I even trie ...Show All

  • Jeff Walsh Scanner object

    The Visual J# we have presently installed where I teach does not have many of the objects found in the java.utils package found in JAVA 5.0 Among other objects that were not found is Scanner , one used extensively in the text that we have adopted. Does the Visual J# upgrade address this problem at all I really don't remember the Scanner object from java.utils, what's it supposed to do (do you have a URL to online JavaDoc about it ) See GNU Classpath project in case they've implemented it. If they did you can grab their implementation or adapt it. Also you can see Sun's Java sourcecode if you have JBuilder or similar tool (maybe it's available at java.sun.com) and see if you can port that code or rewri ...Show All

  • guy87 "Version not found" using SS GET!

    Hello there and thank you in advance for any help. I've read some other threads about similar problems but my issue seems to be unique. We had a VSS 6.0d database and we migrated to VSS 2005 (server and client). The database import went fine and all has been working quite well overall. I create a sidestream of several projects by sharing them over but when we use our automated build script which calls "ss get" on those projects, it appears that files that havn't been changed since before the migration are coming back with "Version not found". Using SS Explorer works fine but the command line utility fails. Any help would be much appreciated! Regards, Phil Good news is that if VSS Explorer finds the old versions, ...Show All

  • Reshmi Singh Could not fine CrystalImageHandler.aspx

    Please find me a sloution for this error. Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. Source Error: Line 56: </customErrors> Line 57: --> Line 58: <httpHandlers><add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.36 ...Show All

  • Kinju Transform Problems

    I'm attempting to perform a transform of an image, however, I am not certain how to do this. I want to rotate a picture, however, I want to rotate it in a 3D fashion. Imagine holding a picture in your hand and rotating your hand 45 degrees or so (to give it some depth). Is there a simple transform (like rotate or skew) which will work Or so I need to do some sort of a 3D thing Any places to get sample code for this The effect you're looking for is commonly called "2.5D". WPF really doesn't support this without going to full 3D (there's no way to get the distant portion of the image to "taper off"), but various folks on the web have faked it. A quick search on the web turned up: ...Show All

2345678910111213141516171819

©2008 Software Development Network

powered by phorum