Tagged Questions

7
votes
5answers
2k views

Experiences of the Smart Client Software Factory

Has anyone had any experience in building a 'real world' application with the Smart Client Software Factory, from Microsofts Patterns and Practices group? I'm looking for advice on how difficult it ...
1
vote
2answers
306 views

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?
1
vote
0answers
78 views

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 ...
1
vote
3answers
235 views

Are there any good tutorials for using SCSF?

I am wanting to look into the Smart Client Software Factory (SCSF) as I have been advised it may provide a good solution to a project I am looking into. Can anybody point me towards any good ...
0
votes
1answer
40 views

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 ...
0
votes
1answer
222 views

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 ...
0
votes
1answer
78 views

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 ...
0
votes
1answer
382 views

Smart client software factory view activation problem

Im 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 ...
0
votes
3answers
167 views

the best way to store tree like information in app.config

What would be the best way to store a tree like the one below in app.config and how would I deserialize this information from it? Tree |-node1- | |-name - value | |-name - value | | ...
0
votes
2answers
456 views

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 ...