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

Software Development Network >> Visual Studio

Visual Studio

New Question

VS as PHP editor
Security and Encryption
Still about DIS Powertoy
Scrolling via mouse wheel pressed down and mouse dragged
How to Read MSProject File using .Net and OLEDB?
How to get VSTO running with Visual Studio 2005?
Issue with WCF method in client app
Animation on a richtextbox
Cannot Install VSTO 2005
How to retrieve the client machine name from within a WCF service?

Top Answerers

Slawza
cesarin
Rei Shapira
Henry_Yang
Gravy
Behrooz PB
fathi S. Elashery
Trish
Nash Bridges
PedroSimao
MMK Cart
Only Title

Answer Questions

  • Derek Burnham Thinking about purchasing but need to know...

    Hi there, I am thinking of purchasing Visual Studio 2005 however I am unsure of one thing. In the express version, it is unable to connect to a remote MySQL database and states "Failed to call the ODBC drvier connection utility". What version of Visual studio is needed as a minimum for me to be able to connect to this data source Will standard be sufficent Thanks in advance, much appreciated. Thanks Carlos. Can anyone confirm if the standard edition is sufficent I don't really want to spend money on something that will not do the job but on the other hand, I don't want something that is overkill and money wasted. Regards Hi again, This other page compar ...Show All

  • Michael_Giagnocavo Can't Extract VS 2005

    Gentlemen, I have read a few of the forum entries including: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=778624&SiteID=1 I cannot install VS 2005 Pro trial no matter what I try! I have tried the following: 1. Mounting the Image in Daemon Tools. I was able to mount, but I received the an error message on file: E:\vs\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages\WindowsInstaller3_1\WindowsInstaller-KB893803-v2-x86.exe 2. Extracting the DVD .img file using IsoBuster Pro 1.9.1. I can't extract the file. I tried checking which files were physically unreadable. It listed the same file: E:\vs\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages\WindowsInstaller3_1\WindowsInst ...Show All

  • Aleniko29139 Installing Custom Sharepoint Templates in Visual Studio 8

    How can I install SharePoint stp files as Visual Studio templates I placed a zipped stp file in the worflow folder but it did not appear in the template window. Do I need to refresh the cache If so, how is that done If you want to install templates under "Program Files\Visual Studio 8\Common7\IDE\..." then you would have to run deven.exe /installvstemplates http://msdn2.microsoft.com/en-us/library/ms241279(VS.80).aspx /Ole P ...Show All

  • RasmusChristensen DLINQ & Remoting; LINQ over Active Directory

    1. Does DLINQ supports remoting What will happen if I'll pass DLINQ entity out of application domain via remoting 2. I'm interested in using of LINQ to perform queries over active directory database. Any suggestion 1. Does DLINQ supports remoting What will happen if I'll pass DLINQ entity out of application domain via remoting Because LINQ to SQL entities support deferred loading each is indirectly linked to its ADO connection object. So general .Net remoting would necessarily fail. Remoting via XML serialization is supported, however. 2. I'm interested in using of LINQ to perform queries over active directory database. Any suggestion The Active Directory team at Microsoft was looking into buildi ...Show All

  • Bruce Baker VS2005 SP1 Broke Tasklist commenting (TODO, HACK, etc.)

    is there a way to fix this //TODO: and //HACK: no longer show up in my tasklist This seems to be only effecting ASP.NET applications http://msdn.microsoft.com/vstudio/support/vs2005sp1/default.aspx It isn't beta Could you be more specific on what you are seeing as broken Do you have more information about your specific configuration and are you seeing it on multiple machines Is it //TODO comments that are in scripts/code that should appears in the tasklist and they aren't Really :) Hallo, I didn't notice this. The SP1 is still a beta. You may want to submit some feedback about this, here: https://connect.microsoft.com/feedback/default.aspx SiteID=210&wa=wsignin1.0 If this is a bug, there might be ...Show All

  • Dave21 Displaying DataTable in run-time

    Hi, I've got the following issue: My application is intended to show any table from the database. It means that the structure of the table is only known in run-time. I looked through the samples, but all the examples contain DataTemplate definition in XAML file that is not my case. I browsed the documentation but did not manage to fing the way how to create DataTemplate programmatically. Are there any ideas how can I display a table when its structure is only known during runtime. TIA This link shows how to create a ControlTemplate in code, the same type of coding is used to create DataTemplates: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=805299&SiteID=1 With regards to your ...Show All

  • rosakruten VSTO Excel add-in only working in development machine

    Hi, I am creating a Excel 2007 VSTO COM Add-In using VSTO 2005 SE . It runs perfectly fine when I build it and run the in development computer having VS 2005 . However, when I try to install the setup.exe or .msi file for the same addin in the client machine or Virtual PC having the following installed: 1. VSTO Runtime - Shipped with VSTO 2005SE 2. Office 2007 3. .NET 2.0 Framework it does not seems to load . I have done : 1. caspol settings to make it Fully Trusted . 2. set vsto_suppressdisplayalert=0 and run excel.exe from cmd ......Same Results .... I get the following error " Not Loaded. A runtime error occurred during the loading of the COM Add-in." It has been over a week now that I am str ...Show All

  • stevejebson Local Report - Adding Datasources Programmatically

    Using the LocalReport object you can add a datasource: LocalReport.DataSources.Add("myDataTable") I'd like to add DataSources to my report this way at runtime.  This is so my business objects can run out the the database, grab data, scrub it, and then pass the dataset to the Local Report. I can see how to add the datasource, what I don't understand is how to reference the datasource in my report.  Take a textbox, the value property is usually set this way: =Fields!myDataField I don't know how to bind data this way out of dynamically added datasources (datatables).  I tried: =Datasources(0)!Fields!myDataField That doesn't work - I thought maybe datasources was an indexed collection but apparently not ...Show All

  • JayaC DomainRelationShip Domain Properties

    Hello, i've been designing a Domain Model and designer based on the minimal language project template. All is going well, i've implemented a construction that keeps source in sync with a parent diagram. It's really cool (i am really proud of it ) and matches the way the default Form and Control designer work. At the moment i am experiencing a bit of a setback because i need to assign a value to a link/connection. For example: I've got two domain classes C1 and C2 that are represented by shape S1 and S2. Assigning properties and interaction between the shapes, classes and templates is no problem. However, there is also a reference domain relationship that defines that the classes can reference to 0..n more classes. This r ...Show All

  • jhknys How WS-Policy and WS-PolicyAttachment is supported in WCF?

    Can someone tell me how WS-Policy and WS-PolicyAttachment are supported in WCF Are there any classes that can load an WS-Policy file and produce the required Policy Object Model Also is there any support for Normalize and Merge operations (as specified by the WS-Policy spec How can we check that the Service Provider Policy are compatible with the Service Consumer Policies Are there any classes that can load an WS-PolicyAttachment file and produce the required Policy Object Model to ease processing of the referenced policies I did extensive Web search and browsed WCF classes but I could not find any pointers to the above! I appreciate your help in providing any useful pointers/links to answer the above questions. Thanks Karim ...Show All

  • Kardi August 2006 Sandcastle is now available for download

    August 2006 Sandcastle CTP is currently available at http://www.microsoft.com/downloads/details.aspx FamilyID=e82ea71d-da89-42ee-a715-696e3a4873b2&DisplayLang=en . This blog http://blogs.msdn.com/sandcastle/archive/2006/08/27/727310.aspx , details what's new, xsltransform syntax changes and bug fixes in this version of CTP. I have also modifed the CHM generatation steps at http://blogs.msdn.com/sandcastle/archive/2006/07/29/682398.aspx . I plan to post additional blogs with details about steps for CHM generation, new MSDN link option in Sandcastle. Visit http://www.sandcastledocs.com  wiki site for additional details.   Anand.. Is there any way to provide authentication information in this re ...Show All

  • rockowpb Weird problem with creating project !

    Hello everyone, I have this weird problem trying to create a project. It all worked and suddenly after a few days it turned up like this. I am trying to create a new project however no matter what template I use (in this case, console application) the application settings don't show up at all. It gives me a window with no current project settings being unable to press finish or cancel since both buttons don't actually work. When I click on application settings on the left, nothing happens. You can see my screenshot here http://img93.imageshack.us/my.php image=vsgk0.jpg thanks a bunch :-) ...Show All

  • Limehill How can add a system boundary shape to Use Case Sample in DSL v1.0

    I need to add a system boundary shape to Use Case Sample in DSL v1.0. Can I do it whith a Image Shape . Any idea about it . Thank you very much! I think that I do it. I take a look at the components example, but the problem is a bit diferent, because at the components example ,component nest inside other components, I said that the same kind, that it’s more easy to do. Anything i followed the next steps: 1.- Create the Domain class "SystemBoundary", inherit UseCaseElement (abstract domain class). 2.- Make the SystemBoundaryShape at the Diagram Elements a map it with SystemBoundary Domain class. 3.- Make the References Relation Ships between the SysteBoundary and the Elments that you can embbed on it. Fo ...Show All

  • Cammyr Create and Attach Custom Behavior to Client and Service in Web.Config

    I am trying to create a custom message inspector and attach them to the client and service. I was able to create the Behaviors successfully, but am not sure how to attach it to using the config file. I have a ClientMessage inspector and a server message inspector class. I created a BehaviorExtensionElement for the service side as given below: public class ServerMessageInspectorBehaviorSection : BehaviorExtensionElement { public override Type BehaviorType{ get { return this .GetType(); } } protected override Object CreateBehavior(){ return new ServerMessageInspector (); } } Is this right and Do I have to create another one for the Client. If yes Will it be almost the same. Then I ...Show All

  • we7313 Need advise on how to sign request's soap body using WCF

    Hello. Please skip to the questions at the bottom of this post if you don't think you'll need all this introductory info. I need to write a client using WCF that will consume a non-.NET web service that uses SOAP 1.1 and WS-Security 1.0 over SSL. The only requirement is that the request's soap body is signed. The reply, on the other hand, is not signed. It doesn't have any soap headers, in fact. So, I went and created the proxy class using svcutil. The binding used in the generated config was basicHttpBinding and the security mode was Transport (because it was an https url). The effect was that it would send the soap request over https without a digital signature. I tried making all sorts of changes to hopefully make it sign the ...Show All

91011121314151617181920212223242526

©2008 Software Development Network

powered by phorum