Tagged Questions

0
votes
2answers
43 views

Use Application.Resources in Class

Hi. I do not know how to use a defined Application Style Resource in code. I have defined: <Application.Resources> <Style x:Key="OrangeButton" TargetType="{x:Type Button}"> I am using …
3
votes
5answers
165 views

What happens in these Perl use lines?

I don't understand what happens here : use PAR { file => 'foo.par', fallback => 1 }; I think that's an anonymous hash. How is a module using it from the use line? Can you shed some light? …
2
votes
4answers
247 views

try to use Module in Perl and print message if module not available

Hi, I wanted to be able to do this in Perl (the code below is Python lol) try: import Module except: print "You need module Module to run this program." Does anyone have any idea how to?
2
votes
2answers
103 views

What’s a good way to handle development/production libs paths with Perl?

With Perl, what is an easy way to handle different development versus production libs paths? I want to use my local box path for testing, but when I launch I want it to automatically point to the …
0
votes
1answer
38 views

Modelling the creation of an Actor in a use case diagram

Hi If you believe that a use case flow of events creates an actor, how would you model that? I have a use case that creates a windows service, which (in my mind) is another system with its own set …
0
votes
3answers
124 views

Drools related problem…

Hi I want to bring a little change in my site. So i have written a set of rules but I dont know how to fire them in the place that i want them to work i.e. the original code of my site.Can anyone plz …
6
votes
6answers
2k views

C#: Is there a way to check if a file is in use?

I'm writihg a program in C# that needs to repeatedly access 1 image file. Most of the time it works, but if my computer's running fast, it will try to access the file before it's been saved back to …
5
votes
5answers
372 views

What’s the purpose in hashing information?

After being taught how to create a hash table in class, I don't understand when hashing data would be useful. It seems to me that all hashing does is storing information in semi-random positions in …
4
votes
8answers
778 views

Use Case Diagrams - Are arrows absolutely necessary?

Is it absolutely necessary to use "arrows" to show association between an actor and a use case in a use case diagram? I recently had to draw one for my Software Engineering assignment. But after …
9
votes
6answers
1k views

How do I ‘use’ a Perl module in a directory not in @INC?

I have a module in the parent directory of my script and I would like to 'use' it. If I do use '../Foo.pm'; I get syntax errors. I tried to do: push @INC, '..'; use EPMS; and .. apparently …
2
votes
6answers
1k views

How do I inherit subroutines in Perl with ‘use base’?

How do I apply 'use base' in Perl to inherit subs from some base module? I'm used to C++ inheritance mechanics, and all the sites I googled for this caused more confusion then help. I want to do …
5
votes
5answers
140 views

Should I change my utilities.pl to a utilities.pm module?

In our product we have a big utilities file that we require (with do) at the beginning of a lot of our files. Is there a reason not to turn this into a module? For example, instead of doing this: …