Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Shukla Rahul

@Shukla Rahul
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Three tier architecture, database access layer pattern [modified]
    S Shukla Rahul

    You can create a project class library project which holds such classes. Provide the reference of this project in all layers. Sorry, the arrow shows the flow of the data objects not the reference. Reference would be as follows Data Access Layer - Ref of common Business Layer - Ref of Data Access Layer and Ref of Common UI - Ref of Business Layer & ref of Common Download sample project from here. -Rahul Shukla

    .NET (Core and Framework) database csharp c++ dotnet design

  • Three tier architecture, database access layer pattern [modified]
    S Shukla Rahul

    Create a Common library for Data Transfer objects and share it among all layers. So this would be              (Data Transfer Objects)                    (Data Transfer Objects) Data Layer -----------------------> Business Layer ------------------------> UI Layer

    .NET (Core and Framework) database csharp c++ dotnet design

  • Loading Dlls programatically in C#
    S Shukla Rahul

    Hi Tina, I would suggest you to go with a event subscription based model to achieve this. Please see Observer Pattern for details. Make one project for Subject & Define all the other dll projects as observers. Let me know if you want to see a working code of it. Regards, Rahul Shukla

    C# csharp design beta-testing help question

  • How to host netnamedpipeline service in Web Environment
    S Shukla Rahul

    Hi, IIS 6.0 or earlier does not support non http protocols. IIS 7 has come up with a feature named WAS (Windows Activation Services). Please see the below article for details - Host a WCF Service in WAS

    WCF and WF tutorial workspace

  • How to host netnamedpipeline service in Web Environment
    S Shukla Rahul

    Do you mean on IIS ?

    WCF and WF tutorial workspace

  • trying to communication between two form in different project under one solution
    S Shukla Rahul

    Hi, Use WCF if these 2 projects are running in different app domains. Ensure to, -Use Named Pipe binding (I assume that both are winform applications and running on same machine) -Implement duplex contract for notifications. Let me know if you need help for implementing this.

    C# help csharp

  • Windows Service Controlle in VS2008
    S Shukla Rahul

    Hi Mike, It did work for me on VS 2008. Here is my program - using System; using System.ServiceProcess; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { try { ServiceController service = new ServiceController("<<Your Service Name>>"); service.Stop(); TimeSpan timeout = TimeSpan.FromMilliseconds(10000); service.WaitForStatus(ServiceControllerStatus.Stopped, timeout); if (service.Status == ServiceControllerStatus.Stopped) { service.Start(); } } catch { // ... } } } } Are you getting any specific error ?

    C# csharp visual-studio help question learning
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups