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
1
vote
2 answers

How to Shift from MVP pattern to SCSF CAB pattern?

I have designed and developed my application in MVP Pattern. I have not used any software factory to achieve this. Now i want to shift to SCSF pattern and CAB structure. I need to know if it can be done in any easier way as CAB structure implements…
Hakim
  • 75
  • 1
  • 11
1
vote
1 answer

Is it possible to display a modal window in SCSF application at the center of the screen

In SCSF application I would like to display a view as a modal window at the center of the screen. Is it possible to do that? WindowSmartPartInfo doesn't have any option for setting screen postion. Thanks.
Branko
  • 545
  • 6
  • 16
1
vote
1 answer

Guidance Automation Extensions for VS 2017

In our project, we using GAX for making SCSF Templates, until now we used visual studio 2015, today we upgraded our development environment and started to use Vs 2017, I tried to search for a proper version for GAX but without success, there is one…
Leon Barkan
  • 2,676
  • 2
  • 19
  • 43
1
vote
2 answers

CAB/SCSF Command vs Events

What is the difference between the Commands and the Events in CAB? There seem to do the same thing, when is the command intent to be used and the events?
pdiddy
  • 6,217
  • 10
  • 50
  • 111
1
vote
0 answers

SCSF Calling services asynchronously

Are there any best practices for calling SCSF services asynchronously? Particularly I'm interesting in: Executions of requests in background Cancellation support Reporting progress Currently I came up with two scenarios: Listener Service which…
shatl
  • 911
  • 16
  • 21
1
vote
0 answers

How do I create scoped events?

I am about to migrate a cab application created with smart client software factory from in 2009. Everything seemed to be straight until the event aggregator. I need to have code like this: //publish in current unity…
nelvis
  • 11
  • 1
1
vote
2 answers

SCSF vs Acropolis

What's the different between SCSF and Acropolis ?
rainwalker
1
vote
1 answer

SCSF: Save and Load Layout of application

i am using SCSF framework and SCSF contrib to add docking support in my application. i want to save the layout of opened views so that i can restore them on application start. how can i do this
Mohsan
  • 2,483
  • 6
  • 47
  • 62
1
vote
1 answer

SCSF: Append Messages into LogView. using Event publication

I created a new View (LogView) in Infrastructure.Module project. This view will be used as LogViewer like output window in VS. i want to write different status messags in this LogView from different modules. I also created a class LogWriter which is…
Mohsan
  • 2,483
  • 6
  • 47
  • 62
1
vote
1 answer

How to make custom event for all SmartParts?

There is C# Project (.NET CF) that uses OpenNETCF.IOC.(UI) library. Actual situation: In Base Form OnKeyDown event is handled and custom event can be raised (for example if user ESC button pressed). This event can be handled in descendant…
hellboy
  • 1,567
  • 6
  • 21
  • 54
0
votes
1 answer

Assembly file \\sv-db1\server\bin\file:\\sv-db1\server\bin\shell.exe was not found

We have installed C# 3.5 application in the server. and installed the client app in each client using Map drive. All exes are opening fine from Main.exe in the server. (main.exe developed using Centura languge). But shell.exe (C# 3.5, CAB, SCSF) is…
Anand Kumar
  • 395
  • 2
  • 7
  • 18
0
votes
1 answer

Why would vshost work when my application doesn't?

I am attempting to debug an error while loading my x64 application and am receiving an "MyAPP has stopped working" immediately before the first line of code in main(). What I am wondering is why when I use the debugger in Visual Studio 2010…
Rob Hunter
  • 2,787
  • 4
  • 35
  • 52
0
votes
1 answer

Smart client software factory view activation

I'm using smart client software factory in our application I created one workspace dynamically,based on that I can create n numbers of views.the view is modal dialog and I have used some window workspace. But the problem is I have to implement save…
vinay
0
votes
1 answer

SCSF Services question

Quick question (and my last today about SCSF) about what Services are intended to be used for. Services exist within the WorkItem, so I assume they are supposed to provide UI services specifically. Only the code I'm hating on at the moment is using…
Ian
  • 4,885
  • 4
  • 43
  • 65
0
votes
2 answers

SCSF/CAB programmatically add CommandHandler

Is there a way to do this: [CommandHandler("ACommand")] public void DoACommand(object sender, EventArgs e) { //DoSomething } programmatically ? I don't want to use an attribute as "ACommand" in this case will change as it's a general…
Ian
  • 4,885
  • 4
  • 43
  • 65