4
votes
2answers
83 views
Python import mechanics
I have two related Python 'import' questions. They are easily testable, but I want answers that are language-defined and not implementation-specific, and I'm also interested in style/convention, so …
0
votes
2answers
22 views
Expressing an SConscript’s Own Dependencies
I have an SCons project set up as follows:
Project/
SConstruct # "SConscript('stuff/SConscript', variant_dir = 'build')
stuff/
SConscript # "import configuration"
…
1
vote
4answers
87 views
JAR for three classes?
I reuse a handful of classes for multiple projects, like Postal Address, State, Zip Code and Phone Number. Associated to them maybe parse/format classes (like Phone Number Formatting).
Is it okay …
0
votes
2answers
21 views
slideshow module for drupal
hi! i'm in need of a drupal module which gives a slideshow from the images uploaded by the user..i saw the slideshow module but can't understand where to apply the settings..
thanks for ur help..
…
1
vote
2answers
47 views
How to access a builtin module in Python when there is a local module with the same name?
How can a built-in module be accessed when a file prog.py is placed in the same directory as a local module with the same name?
I'm asking this question because I would like to create a package …
2
votes
3answers
41 views
(In Ruby) allowing mixed-in class methods access to class constants
Hi. I have a class with a constant defined for it. I then have a class method defined that accesses that class constant. This works fine. An example:
#! /usr/bin/env ruby
class …
0
votes
1answer
96 views
Modules and Delphi
Hi dudes,
I'm using dynamic link to load (BPL) modules into my app, the loading works fine with simple forms built into those moudles, but when adding more and more (third-) components and code to …
0
votes
4answers
60 views
How do I register a service in OSGi (Apache Felix)?
Hello, everyone!
I have successfully managed to start Apache Felix from code and register an own Bundle.
Following relation between OSGI-projects is needed:
[OsgiInterface] -- provides interfaces.
…
1
vote
2answers
49 views
How to start and use Apache Felix from code?
Hello, everyone!
I can't find information about starting and using Apache Felix from code.
I want do things which I am able (or unable ;) ) to do with Apache Felix's Shell.
For example, how do I …
5
votes
6answers
76 views
How do I install a module and its dependencies in ActivePerl on Windows?
I want to send emails using gmail's smtp servers and perl. I am trying to install Email::Send::Gmail, but it is not clear to me what are the steps to install it. It seems that it depends on other …
1
vote
5answers
66 views
How to Determine The Module a Particular Exception Class is Defined In
Note: i edited my Q (in the title) so that it better reflects what i actually want to know. In the original title and in the text of my Q, i referred to the source of the thrown exception; what i …
3
votes
3answers
108 views
How do I install Perl modules on machines without an Internet connection?
I need to install my Perl-based software on networked machines which aren't connected to the internet. Therefore, I would like to download specific versions and/or latest versions of the Perl modules …
0
votes
1answer
18 views
Adding text to RichTextBox from a module
In an attempt to clean up my code, I have tried to put all my functions and subroutines in a module. One of these subroutines populated a grid of RichTextBoxes with data from a MS Access database. It …
0
votes
1answer
18 views
MS Access : Read form control value in a module’s function
I have an Access database with a form in which a user clicks a button which in turn runs a macro which also runs a function in a module. Yes, convoluted and no, I am not allowed to change much since …
4
votes
6answers
128 views
What are valid Perl module return values?
The common practice in Perl is of course to end modules with 1; so that a call to require can then be checked for success. Is there any reason that the return value couldn't be another true value? …
