Tagged Questions

CAL is the Composite Application Library the previous name for the Prism guidance for WPF and Silverlight.

learn more… | top users | synonyms

6
votes
1answer
549 views

GPU MD5/SHA1 Hasher

I would like to make md5/sha1 hasher tool to calculate hash for large number of big files like movies. Basically this should be part of bigger project that will use that data to organize files. I can ...
5
votes
2answers
791 views

Best Practice WPF Prism Resources

I have a a WPF prism desktop app with a few modules. In the past I've put all my localized resources in common resource files in the infrastructure assembly and referenced it in all modules. But ...
2
votes
1answer
549 views

Composite WPF EventAggregator subscriptions being lost

In my Composite WPF application I have an event that is published when the user double-clicks on a control. Modules subscribe to the event and perform an action when necessary. This event seems to ...
1
vote
1answer
78 views

Problem with Cal, EventAggregator, and Application.Deactivated

I'm having an interesing problem with CAL and the event aggregator. I am attempting to publish an event when the app is deactivated or activated (application.activated and application.deactivated). ...
1
vote
1answer
742 views

Android Froyo: my life with call_log

I'm stuck with the call_log functionality in Froyo. As many of you know, Froyo logs in call log not only calls but also each outgoing and incomming SMS message. You can chose in options to show all ...
1
vote
4answers
310 views

Books on Rx and PRISM/CAL + MVVM [closed]

Are there any good books that explains Rx, MVVM, PRISM/CAL from ground up? I googled, but could not find anything that covers all these three.
1
vote
1answer
379 views

How to automatically reload TYPO3 calendar from external ics

Hi I'm using the calendar base extension (cal) for displaying my calendar in a TYPO3 website. I configured an external calendar and it imports all events correctly. How can I automatically reload the ...
1
vote
1answer
2k views

Menu service in Prism application CAL

I am trying to create a Prism (CAL) framework (this is my first forray into CAL) and am having difficulty devising a service for registering menu items for a region). Here is what I have come up with ...
1
vote
1answer
291 views

How to use Prisim within an ElementHost

I'm new to Prism and I am attempting to host a Prisim control within an ElementHost. I seem to be missing something very basic. I have a single WinForm that contains an ElementHost. The following ...
1
vote
1answer
602 views

Get ClearCase Snapshot Views via ClearCase Automation Library (CAL)?

Is anyone using the ClearCase Automation Library (CAL) successfully to retrieve snapshot views? I can get all the dynamic views just fine, but not a single one of my snapshot views appears in the ...
1
vote
2answers
724 views

Getting View Owner/Creator with Rational ClearCase Automation Library (CAL)

Has anyone here already worked with the Rational / IBM CAL and knows if at all, and how to check for a view's creator/owner (username)? Elements, Vobs etc all have an Owner/Creator, but for some ...
0
votes
0answers
21 views

Multiple config files for Prism one each for one module / WPF

I am having to write a WPF application which uses Prism / CAL. I would like to know if there is any way to have different modules to have their own config files. Pls point me to some help which is ...
0
votes
0answers
50 views

Windows server CAL required? [closed]

My company is going to buy a new server to run our software on that we create. It's a java web application. We want it to be placed on a Windows Server 2008. Just a clean install of the server OS with ...
0
votes
1answer
37 views

anybody know how to calculate in Axure prototype?

I am using Axure prototype to design wireframe and need to use calculating function. Anybody here know how to realize it? Thanks, Taylor
0
votes
1answer
49 views

WPF Prism (CAL) - Find all Subscriptions to the EventAggregator on any event

Is there any way of looking at all the subscriptions contained within the EventAggregator for all Events? Theres only a .GetEvent method off the EventAggregator ... but I'd just like to see all ...
0
votes
1answer
70 views

how to re-use a composite UserControl inside another region in cal(prism) framework?

I'm using CAL framework in my application and I came to a point where I needed to re-use my composite UserControl somewhere else, i.e. would create a new instance of that usercontrol for the next ...
0
votes
1answer
265 views

PRISM/CAL ModuleCatalog question - binding Modules to a Menu

in my test application, the ModuleCatalog is populated from the specified directory with all my modules in it. What I'd like to do is to add the name of all these moudles to a Menu as menuitems, e.g. ...
0
votes
2answers
665 views

Using PRISM, how do I display the view from another module, and access its properties to update its state?

I have two modules, one is a Header module, one is a Items module. I have a HeaderDetails view, which contains a region which is called 'ItemsSummaryRegion'. This region is registered to populate the ...
0
votes
2answers
724 views

Localization in Prism WPF App

I'm looking for the best way to localize a Prism 2 WPF app that might have several modules ported to Silverlight 3. Has anyone successfully localized a Prism 2 WPF app with several modules?
0
votes
2answers
764 views

java bufferedReader, writes something different than it reads

i parsed a text (CAL code) with BufferedReader and BufferedWriter in Java, unfortunately, lines which i red and wrote with outStream.write(line); have changed, please look at Screenshots: ...
0
votes
2answers
554 views

Nested menu regions in Composite WPF application

Is it possible to have nested regions in a Composite WPF application? I want modules to be able to inject new menus, and also be able to inject menu items into an existing menu. Using the following ...
0
votes
2answers
592 views

Organizing multiple Composite WPF applications to share a single Shell

How can I organize multiple Composite WPF applications so that they share a single Shell project but populate their module catalogs from different App.config files? I am writing a suite of ...
0
votes
1answer
456 views

In CAL, how can I get a reference to a module instance?

I have this application using CAL. All the modules derive from a special class, ModuleBase, which has an abstract method, say ApplySecurity implemented in each one of them. OK I load the modules in ...
0
votes
5answers
1k views

Will PRISM help?

I am considering building a application using PRISM (Composite WPF Guidance/Library). The application modules will be vertically partitioned (i.e. Customers, Suppliers, Sales Orders, etc). This is ...