0
votes
0answers
21 views

Proper way to have modules (inherited classes) as a separete libraries?

I would like to have FirstModule and SecondModule as a separete dlls - so I created two new projects for each module. The question is what about the ModuleBase? I don't want to have ModuleBase as a ...
1
vote
1answer
15 views

How does one display the time portion in the devexpress xaf audittrail module's listview

Adding the following code to the business object private XPCollection<AuditDataItemPersistent> changeHistory; public XPCollection<AuditDataItemPersistent> ChangeHistory { ...
0
votes
2answers
28 views

Devexpress xaf modules

Using devexpress 12.2.x Lets say we create a cross platform application. SomeApp The following projects are created: SomeApp.Module SomeApp.Module.Web SomeApp.Module.Win SomeApp.Web SomeApp.Win Now ...
1
vote
3answers
97 views

C# Static Class vs VB.NET Module usage

I'm having difficulty calling a function from a C# Class in a similar way that I call a function from a VB.NET Module. I have a C# class General.cs using System; namespace XYZ.Classes { ...
0
votes
3answers
41 views

how can a list of references and imported modules be obtained from a .net C# exe or dll?

Given any C# exe or dll, I would like to obtain a list of all the assemblies it references as well as all the imported modules. What's the simplest way to go about doing this?
1
vote
1answer
78 views

Web application interface to module design

I'll start off with an overview. I need to complete a process that is likely to take a long time to complete. I would like to create a web interface that gets input parameters and sends these ...
-3
votes
4answers
147 views

Creating methods in C#, problems with syntax, brackets, and passing

I'm trying to create a simple program in Visual Studio to add various car payments together and then calculate an annual cost and use methods. I'm have some trouble with the braces and if I am ...
0
votes
2answers
69 views

Is there a helper in Visual Studio that finds the needed Module for a particular keyword?

Does the Visual Studio 2012 have a facility to locate needed modules based on a keyword? I find myself spending a fair amount of time hunting down the correct module to reference with the "using" ...
0
votes
0answers
133 views

System.Diagnostics.PerformanceCounter Measure CPU utilization per module

is it possible to track the cpu utilisation per module in a process? In below code can CPU and memory consumption for each module in myProcess.Modules be determined? Process[] currentProcesses = ...
-1
votes
2answers
138 views

Load a Module on demand from multiple points

I'm implementing a Unity PRISM module on demand using IModuleManager. Suppose there are multiple points where functionality from the module is required. Am I right to call ...
0
votes
1answer
89 views

Trouble with modular program. Runs only one line ( no error messages .____. )

I am working on a modular program that calculates income tax due. In my head it makes sense but my program only runs one line of code and then just stops ... no error messages no nothing. I have a ...
1
vote
2answers
86 views

how the data in different AppDomains are organised and how can I access them across the domains

Hi I have application that consist of some "kernel" and modules that are dynamically loaded to own AppDomain and unloaded as needed. But I don't understand one thing. I will post a simple code that is ...
1
vote
1answer
218 views

DNN multiple modules on a single package

Is it possible to create a dotnetnuke (v5) package that contains multiple modules? I mean: there is a "moduleDefinitions" element on the manifest that looks like supporting more than one module, but ...
1
vote
1answer
67 views

Get reference of all modules in a page from a module DNN

Is it possible to get the references of all the modules on the current page from a module? Like for example on a button click I could for example list all the Types of the DNN modules loaded on the ...
2
votes
1answer
130 views

WPF Prism Load XML in module

i am experimenting with prism and the possibilities it brings to create applications divided into modules. In one of my modules i want to load data from a XML file but can't get it to work so that ...
2
votes
2answers
56 views

Module operator overridign

I have a struct for Complex Numbers. I want to be able to run something like: Complex a = new Complex( 3, 5 ); Console.WriteLine("|a| = {0}", |a|); Is |a| possible to create? If it is, how to?
1
vote
2answers
82 views

How to turn on/off code modules?

I am trying to run multiple sites using single code base and code base consist of the following module (i.e. classes) User module Q & A module Faq module and each class works on MVC pattern ...
1
vote
1answer
155 views

Determine which dll/exe are valid modules for my application

I am working on some software that supports the use of Reporting modules. Basically we don't want to ship ALL reports by default as it just creates unnecessary bloat so I am looking for an efficient ...
0
votes
2answers
156 views

How to export a class from an infrastructure library in MEF?

I've got a project where contains two modules, one infrastructure (Common library) and the Shell. Note that Common has a FooService, this one has an ExportAttribute [Export] public class ...
0
votes
0answers
47 views

In what module should I put the login business in silverlight?

I'm using Prism and Silverlight for a Business Application, something like this: http://www.silverlightshow.net/items/Building-a-Framework-for-Silverlight-Line-Of-Business-Applications.aspx Home, ...
1
vote
0answers
116 views

Load or exclude system.webServer modules programatically

I have developed a website that makes use of a third party DLL. This DLL has declared an IHttpModule class called AgeGatewayModule. I do not have access to the source code of the DLL. In my ...
7
votes
3answers
141 views

How to prevent plugins from executing harmful code

I'm currently working on a very modular and plugin-based framework for my bachelor's thesis. The main idea is, that there is a folder inside my application structure named plugins where you can drop ...
1
vote
0answers
154 views

asp.net custom module is not being loaded?

I created a custom module based on two articles: http://community.devexpress.com/blogs/paulk/archive/2009/03/30/implementing-an-ihttpmodule.aspx And the module based on: How do I display the ...
1
vote
2answers
331 views

C# Process.GetProcessById(4) throws System.ComponentModel.Win32Exception

I am writing a piece of code whereby I am to iterate through the list of modules loaded by the System process (PID : 4). The following is the code I am using to achieve it. Process process = ...
0
votes
1answer
653 views

Communication between Module and SHELL in PRISM MEF

I have one module with interface IModuleMainService with one event. e.g. [Export(typeof(IModuleMainService))] I have SHELL with interface IMainService. e.g. [Export(typeof(IMainService))] In ...
3
votes
5answers
685 views

Modular C# Winform Application

I'm using C#.NET 2010 I'm working a POS project for 20 outlets and it already installed and utilized in each outlets. One day there's a change in form say Payment Method, I have to redesign the UI ...
1
vote
1answer
408 views

DotNetNuke - Events on dynamically loaded subcontrols not firing

Im creating a site walk through module that will dynamically load different controls on different pages. For some reason events on subcontrols are not firing. Main view <%@ Control ...
3
votes
4answers
116 views

Maintaining modularity in Main()?

I'm writing the simple card game "War" for homework and now that the game works, I'm trying to make it more modular and organized. Below is a section of Main() containing the bulk of the program. I ...
3
votes
2answers
541 views

C# as user interface calling Prolog as reasoning module

I need to write a program using C# as user interface and getting input. Then after that, use Prolog to calculate the answer, and give back to C# to display. A school project :D Please advise on how ...
0
votes
0answers
123 views

What is a “module” command in .Net world

I want to ask what is the use of "module load" and "module unload" commands. Are they something to do with setting up the environment for launching an application. Do they load DLLs? I am asking this ...

1 2 3 4
15 30 50 per page