Questions tagged [scsf]

The Smart Client Software Factory (SCSF) is a guidance offering that provides architecture guidance to help developers build Composite Smart Clients using the Microsoft platform.

From the SCSF homepage on CodePlex:

The Smart Client Software Factory is a guidance offering that provides comprehensive architecture guidance to help customers build Composite Smart Clients using the Microsoft platform (Win Forms, WPF, etc). An SCSF solution is composed of a number of discrete, independent, yet functional assemblies and components. These pieces are dynamically loaded and integrated together at runtime within a shell to form a fully coherent application.

45 questions
0
votes
1 answer

Composite UI Application for asp.net

Do we have Composite UI Application equivalent for asp.net MVC? Can SCSF be used with ASP.NET ?
Pushpendra
  • 820
  • 7
  • 11
0
votes
2 answers

Can the Presenter of Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) shared and how?

Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) both use MVP pattern. M-Model can be shared. V-View has to be different as both are on different platform(Desktop/Web). I want to know can the P-Presenter can be shared or…
Sachin Chavan
  • 5,578
  • 5
  • 49
  • 75
0
votes
1 answer

MVP Implimentation - Smart Client Software Facotry (SCSF) vs. The MVC# Framework

I came across these two tools to help in implementing the MVP pattern in Microsoft .NET: Architecting Applications for the Enterprise. The book just has a few paragraphs about them, so I'd like to explore them more in-depth. I currently am only…
Matt
  • 14,353
  • 5
  • 53
  • 65
0
votes
1 answer

Converting Smart Client to XBAP for running it in browser

We have a requirement of running WinForm smart client desktop application in browser. Following article explains how to host a WinForm in WPF browser application…
ssinghai
  • 1
  • 1
0
votes
2 answers

SCSF / CAB - Module & View Loading Best Practice?

I have a team who is architecting a complex rich client user interface on CAB/SCSF. One of the design elements we're considering is the dynamic loading of the CAB modules and potentially the CAB views themselves. Leveraging SCSF/CAB "out of the…
pradeeptp
  • 2,131
  • 6
  • 29
  • 39
0
votes
1 answer

Telerik .tssp not getting applied

The theme package .tssp created locally it not getting applied for a radgridview.Please help ThemeResolutionService.LoadPackageFile(@"C:\LeNin\My Document\\xyz.tssp"); ThemeResolutionService.ApplicationThemeName = "xyz";
rockrule
  • 83
  • 4
  • 14
0
votes
1 answer

Can't add Business Module or Foundation Module in Smart Client solution. Visual Studio 2015

I've recently switched from VS 2010 professional to VS 2015 Community and I have encountered a problem with the Smart Client Software Factory 2010. I have downloaded and installed the GAX and Smart Client Software Factory for VS2015. I am able to…
0
votes
1 answer

Logging errors in SCSF

I'm quite new to SCSF. So, I'm developping a SCSF Winforms in C# (using May 2007 version in VSNet 2005 Fwk2.0, I can't use new version). I've implemented a Business module. What is the best practise to log errors? I've configured the Logging…
WF.
  • 1
  • 1
0
votes
1 answer

Targeting .NET 2.0 solution with SCSF-CAB

My team is starting a new LOB WinForms app and I'm evaluating architectural solutions. We are able to develop with VS2008, but we have to target .NET 2.0. I'd like to use SCSF-CAB (April 2008), but the documentation says that .NET 3.5 is required to…
Craig Boland
  • 984
  • 1
  • 10
  • 18
0
votes
1 answer

Invoking Method of Presenter on Activation

I'm using Smart Client Software Factory 2008. In the module controller, I have code that creates a new child controller only if it hasn't been created, by doing something like the following: Dim key = "Item-" + item.ID.ToString() Dim childWorkItem…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
0
votes
1 answer

SCSF custom Dependency Injection

I'd like to enhance/mimic the dependency injection done by the object builder to include some custom properties the standard way is in mySmartPart.cs [CreateNew] MyPresenter ABC { .... } [ServiceDependency] myService XYZ { ... } in…
Kumar
  • 10,997
  • 13
  • 84
  • 134
0
votes
1 answer

Reload SCSF application

I am using SCSF to define a framework of a set of loosely coupled applications and services. The profilecatalog.xml file describes, which plugins should be loaded and also the dependency to the services. This is the standard procedure and is…
Patrick
  • 907
  • 9
  • 22
0
votes
1 answer

How to delete smart part from Items collection after close it?

I worked in SCSF project and I added multiple views in TabWorkSpace using the following code: ControlledWorkItem controller; controller = WorkItem.Items.AddNew>(); …
Anas Jaber
  • 583
  • 1
  • 7
  • 20
0
votes
1 answer

SCSF: display view from another view against button click

i am facing one problem in SCSF. I have two workspaces MdiWorkspace DeckWorkspace i have two views in a module Viewer (display in mdiworkspace) Property Viewer (in deckworkspace) in Viewer i have a button in toolbar whose purpose is to display…
Mohsan
  • 2,483
  • 6
  • 47
  • 62
0
votes
1 answer

How to customize module loading behaviors based on user's role in SCSF

Does anyone know how to customize module loading behaviors based on user's role in SCSF?
1 2
3