Skip to content
  • Byte array to word document

    C# csharp sysadmin mcp data-structures tutorial
    3
    0 Votes
    3 Posts
    0 Views
    M
    You can use OpenXML SDK to parse your byte array (use WordprocessingDocument.Open with a MemoryStream). Then look here for hints on how get all text content of the Word Document.
  • Data Template Issue

    WPF csharp mcp help question
    3
    0 Votes
    3 Posts
    0 Views
    T
    yes it is Tauseef A Khan MCP Dotnet framework 2.0.
  • Render formula in a program

    C / C++ / MFC c++ mcp
    5
    0 Votes
    5 Posts
    0 Views
    G
    No, I don't mean draw graphic. I want to display math equation in my program the same way we can see with Math Editor in Word. Bye, Claude
  • days of week

    C# csharp mcp question
    9
    0 Votes
    9 Posts
    0 Views
    L
    I have just calculated based on particular date. It is not just calculating first day of year. So I code accordingly. Hope you understand! :) Jinal Desai - LIVE
  • TcpListener problem

    Visual Basic help csharp mcp question
    7
    0 Votes
    7 Posts
    0 Views
    A
    Thanks for your answers guys now i got the reason for this kind of behavior. AliAmjad(MCP) First make it Run THEN make it Run Fast!
  • isolated storage

    WPF csharp visual-studio mcp help question
    4
    0 Votes
    4 Posts
    0 Views
    F
    Make sure you call the update method or the changes aren't committed
  • Copy protection software

    Sales / Marketing mcp question
    3
    0 Votes
    3 Posts
    9 Views
    P
    It depends on which technology u r using. And also depends is it web application or window application. Tell me which technology u r using.
  • convert graph into xml

    LINQ csharp linq mcp data-structures xml
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • printing in silverlight

    WPF csharp css mcp question
    2
    0 Votes
    2 Posts
    0 Views
    M
    See here[^] Mark Salsbery Microsoft MVP - Visual C++ :java:
  • Design issue

    WPF csharp help wcf design mcp
    2
    0 Votes
    2 Posts
    0 Views
    M
    Silverlight is strictly client-side technology. WCF and other web services are server side. You don't have to host your web services in the same web application that hosts the Silverlight application. In fact, Silverlight apps don't need to be hosted in web applications at all. For n-tier, how you connect your client and server tiers is up to you. You have some options built-in: Accessing Web Services in Silverlight[^] For EF you get even more help built-in: WCF RIA Services[^] Even though WCF RIA Services is still beta, the Visual Studio 2008/Silverlight 3 version has a go-live license. I use it in production applications and it works great - saves a ton of plumbing code usually needed for typical n-tier/CRUD type stuff. Mark Salsbery Microsoft MVP - Visual C++ :java:
  • 0 Votes
    2 Posts
    0 Views
    L
    Gagnon Claude wrote: I want to respond differently when I choose Print from the menu and the Print button from the toolbar. Connect them to different triggers.
  • Sequental access issue

    LINQ csharp linq design mcp sales
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • object data source

    ASP.NET csharp sysadmin mcp announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • seperate DTO's

    LINQ csharp database linq mcp
    2
    0 Votes
    2 Posts
    2 Views
    S
    The way I used to do it w/ LINQ2SQL is to generate an interface on the table, for each table class in the datacontext. I would then manually go through each interface and convert it to a class. I'm not sure if someone has figured out how to automate this. After a year of so, I bought a commercial ORM from Mindscape called Lightspeed, it supports linq and generates the DTOs for me =)
  • update panel problem

    ASP.NET csharp asp-net mcp help question
    8
    0 Votes
    8 Posts
    0 Views
    T
    i just replaced web.config file with new one and all is ok , but still i want to know about problem. Tauseef A Khan MCP Dotnet framework 2.0.
  • list issue

    LINQ database csharp mcp help question
    2
    0 Votes
    2 Posts
    3 Views
    P
    You only should get the foreign key of tableb! according to your example... unless you've selected some data of tableb like result.tableb.fieldOfTableB <--- this automatically makes a join in your query! ;)
  • DAL issue

    LINQ csharp database linq design mcp
    7
    0 Votes
    7 Posts
    0 Views
    T
    Don't allow the ObjectContext to be created outside of the layer you wish it be used in. ? Tauseef A Khan MCP Dotnet framework 2.0.
  • request error

    WPF csharp wcf mcp xml help
    8
    0 Votes
    8 Posts
    0 Views
    M
    The WcfSvcHost is for testing/debugging. You'll probably want to consider how it will work when the service is actually deployed. I find hosting on IIS the easiest and most flexible. Mark Salsbery Microsoft MVP - Visual C++ :java:
  • Designer issue

    WPF csharp wpf design mcp help
    6
    0 Votes
    6 Posts
    0 Views
    M
    Use Blend or wait for Visual Studio 2010. I don't find it cumbersome myself since I'm comfortable with XAML and code, and at least there's intellisense. I could see where it would be cumbersome if you're used to visual designers. Mark Salsbery Microsoft MVP - Visual C++ :java:
  • reference issue

    WPF help csharp visual-studio mcp question
    4
    0 Votes
    4 Posts
    0 Views
    M
    I'm pretty sure my recommendation will fix both your issues. When Silverlight 3 was released, I uninstalled Silverlight, the silverlight VS tools, and the toolkit. Then I downloaded and installed (in order) everything on the Get Started Building Silverlight 3 Applications[^] page. Except for some namespace shuffling (they keep changing stuff for WPF compatibility and when controls get migrated from the toolkit to the framework) everything works correctly. The toolkit is essentially beta, so I highly recommend keeping up the latest version. They are fixing stuff every few months. July is not the newest. Mark Salsbery Microsoft MVP - Visual C++ :java: