The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
58 views

Building scalable applications VS just Cloud ready applications

Recently, I got into a discussion with an Architect who is known to be a seasoned Architect. The discussion was around an ideal Architecture and design for a multi-tenant Web Based Application that ...
1
vote
2answers
74 views

How to programmatically override the build and launch actions?

I created a custom project template associated with a custom project type. The solution depends heavily on MPF for Projects - Visual Studio 2012 framework. What i would like to do next is override ...
1
vote
1answer
82 views

IRibbonExtensibility->GetCustomUI calling from a class other than Connect.cs

I am using Vs2010 -> Extensibility->Shared Add-in Connect.cs file public class Connect : Object, Extensibility.IDTExtensibility2, IRibbonExtensibility { public string GetCustomUI(string ...
0
votes
0answers
73 views

IRibbonExtensibility GetCustomUI not called

I'm developing a shared add-in for Outlook. One of my customers is experiencing trouble on his machine, he does not see my add-in buttons/ui in the main window ribbon. After exploring his ...
0
votes
2answers
141 views

In WCF Message Inspection, how to find the value of an input parameter within a Message object?

In WCF Message Inspection, how to find the value of an input parameter within a Message object? I'm using a MessageInspector and have the below class: public class MyMessageInspector : ...
6
votes
1answer
343 views

Visual Studio 2012-s custom project template not visible

I completed the custom template project tutorial part I from msdn and got a basic project structure working and visible in the File - New - Project menu. Then i advanced to msdn part II and can't get ...
0
votes
0answers
138 views

Excel 2003 VBA (Extensibility): Path/File access error wnen changing name of VBComponent/Usetform at Runtime

I am trying to create a Custom/Advanced Message box (because I can, or should be able to) I looked at these resources on the wenb: 1) MSDN - How to Programmatically Manipulate a UserForm 2) ...
0
votes
1answer
35 views

Using WCF Configuration Internally - How do I use my WCF services internally and externally?

Forgive the title, I was not quite sure how to describe the problem I am running into. I am exposing an API over both SOAP and REST endpoints. I have used some of the WCF extensibility features to ...
1
vote
0answers
100 views

SSMS Extensibility Project - howto research/debug

In the vein of this answer regarding creation of an SSMS Extension: namespace SSMSAddin { using System; using System.IO; using Extensibility; using EnvDTE; using EnvDTE80; ...
0
votes
0answers
50 views

Adding a custom menu item to the project node of a c application using vsct not working

I am trying to add a custom menu item to the right click of the project node of my c++ project. I have added the following menu xml code to my *.vsct of my VSPackage. <Menu ...
0
votes
1answer
16 views

Why “extensibility hooks” makes continuous design harder?

I've recently read "Continuous Design" article written by Jim Shore. In one place he wrote: In particular, up-front designs often include “extensibility hooks” for future design changes. This ...
0
votes
0answers
26 views

Does ProjectItems.AddFromFileCopy move a file to project directory

I am attempting to write a bit of code that allows me to add an image file to my C# project programatically. I am using the following command. proj.ProjectItems.AddFromFileCopy(path); Where 'path' ...
1
vote
0answers
194 views

Export multiple interfaces using MEF with one instance as result

I have a class which implements two interfaces, A and B: public class Test { public Test() { Usage<IA> x = new Usage<IA>(); Usage<IB> y = new ...
0
votes
0answers
92 views

Isn't there a hack / workaround to add new ribbon into Windows 8 Explorer?

There is a question here asking whether new commands can be added into the Win8 Explorer ribbon: How extend Windows 8 Explorer Ribbon with custom controls?. The answer was no, quoting the b8 blog. ...
2
votes
3answers
144 views

How to implement type-safe extensible type system in Scala?

I'm writing a project in Scala. This project involves a set of features and a set of configurations, both extensible. By "extensible" I mean that I'm going to add new features in the hierarchy later, ...
2
votes
0answers
18 views

Is it possible to add solution-specific tools to Visual Studio 2012

Can you do something to the .SLN/.CSPROJ files in VS2012 so that when you right-click the solution/project in the Solution Explorer, there would be a new item on the context-menu which runs a tool you ...
0
votes
2answers
158 views

gradle files in custom folder, and gradle extensability best practices [closed]

i have 2 gradle questions. i am conducting a POC of converting a large enterprise maven project to gradle. for at least some time we will need to support both maven and gradle. maven already ...
2
votes
0answers
52 views

Communication between VS extension and user controls in design mode

I'm writing a Visual Studio extension along with a WPF user control library that will be included in the VSIX package. I have an interesting requirement that involves providing data to my user ...
1
vote
3answers
138 views

Which plugin architecture to use

I want to create a plugin extensibility mechanism for a very generic application which has many facets and lots of different functionality. A little bit more detail about what I develop: I have a ...
0
votes
0answers
49 views

Determine the SolutionFolder to which a newly added project/folder is under

I am catching the DTE2.Events.ProjectsEvents.ItemAdded event which passes in an EnvDTE.Project as a parameter (which is obviously a reference to the newly created Project item - be it a new project or ...
0
votes
1answer
33 views

Extending Java with code that can be used from an Applet [closed]

I want to extend Java with Classes I made myself so that they can be used from Java Applets. I have tried dropping JAR files in the lib and lib/ext folder but they still ain't globally visible. Is ...
1
vote
2answers
113 views

Disallow calls to certain classes in java extensions

We are building an engine that will allow us to add new jar files whenever, load those jar files and look for some specific functionality, and run the code that exposes that functionality. Current ...
6
votes
2answers
421 views

Singleton-like behavior with Dependency Injection

After doing some research on MEF I came across the CreationPolicy.Shared property which according to MSDN: Specifies that a single shared instance of the associated ComposablePart will be ...
0
votes
1answer
80 views

MEF for dynamic load of process definitions

MEF for dynamic load of process definitions We have an application comprised of several parts: ModelBuilder: domain model that allows the building of ProcessDefinitions (Activities, gateways, ...
0
votes
1answer
181 views

QML share states and transitions

In my application I have a configuration screen defined in a file: "ConfigScreen.qml". It contains states, and transitions defined between them to make it appear and disappear smoothly: Rectangle { ...
0
votes
3answers
885 views

Proper use of [Import] attribute in MEF

I'm learning MEF and I wanted to create a simple example (application) to see how it works in action. Thus I thought of a simple translator. I created a solution with four projects (DLL files): ...
1
vote
2answers
90 views

How to get the transfer time in a custom Fiddler inspector

I am writing a custom Fiddler inspector (inheriting from Inspector2 and implementing IResponseInspector2), and one of the things I want to show in the output of the inspector is the time it took for ...
0
votes
1answer
110 views

Does a composable Application necessarily imply a Plugin based architecture

I am currently working on an application and would like to add new functionality to it. One would be to update the application's code directly. Another would be to offer an extensibility layer where ...
0
votes
3answers
82 views

Debuging MEF without main app visual studio project

I am creatinig Managed Extensibility Framework extensions for some program. That program uses dll files witch i create. I dont have visual studio project of that program, but i have that program. I ...
0
votes
2answers
795 views

One or multiple fact tables?

I am trying to build a data mart. I have lot of dimensions, and couple of measures - facts. Every measure is connected to all dimensions in term of business. There is the standard approach that there ...
2
votes
2answers
144 views

Can I sandbox a namespace that uses static data?

Say I have (pretty large) C++ module in a namespace foo which has a lot (well, at least one) of static data, namespace-global data and Singletons and so forth, spread across a myriad of files and ...
2
votes
1answer
67 views

Control over 3rd party plug-in components

We're building an application that supports plug-ins (which must import/export certain interfaces defined by us) written by third party developers. We're planning to use MEF to detect the presence of ...
1
vote
2answers
391 views

Javascript as a managed dynamic .net language

Visual Studio language extensibility Does anybody know whether there's an open source (or paid) project that extends Visual Studio with managed Javascript as a server side .net language so it gets ...
1
vote
1answer
98 views

Need pointers to write an extensible reporting engine

Frustrated by the current reporting offering's limitations (SSRS, Crystal Reports), and my users being primarily financial/business people familiar with Excel, I am considering to write my own ...
0
votes
1answer
355 views

Is it possible to override UrlHelper.GenerateUrl() across ASP.NET MVC framework?

The method UrlHelper.GenerateUrl() is located in System.Web.Mvc.UrlHelper I need a different implementation that would affect everything from Url.Action() to Html.BeginForm(). This is the current ...
0
votes
1answer
117 views

BuddyPress/WordPress extension for social networking

I am currently constructing a social networking website for a friend of mine. I was going to write this from scratch using PHP, javascript, ect... But it seems as though a lot of the stuff I am doing ...
1
vote
1answer
230 views

CouchDB - share functions across views, across design documents, across databases

Ok, here's the thing. I have a good JS background, had my share of JS in the past, and have lots of cool bare-bones tools I take with me from project to project that act like a library. I'm trying ...
1
vote
3answers
61 views

How do I make an easy-to-update makefile?

My makefile looks something like this: FOO_OBJECT_FILES := $(OBJDIR)/Foo.cpp.o BAR_OBJECT_FILES := $(OBJDIR)/Bar.cpp.o $(OBJDIR)Bar.c.o ALL_OBJECT_FILES := $(FOO_OBJECT_FILES) $(BAR_OBJECT_FILES) ...
1
vote
2answers
155 views

Code igniter extensible system?

I am writing a authentication Library for Code Igniter (for practice, so please do not suggest e.g. Tank Auth or DX Auth). The library has basic login functionality, it also has the ability for ...
2
votes
3answers
668 views

C# Plugin pattern without interfaces

I've encountered the need to implement a plugin pattern that doesn't fit with anything I've seen elsewhere and I'm just wondering whether I'm looking at it the wrong way or whether anyone else has ...
0
votes
5answers
119 views

Building extensible code in Ruby

1] What is a good book/Resource for Java programmers coming to Ruby. There is a list of good books on other threads but is it recommended to read any particular for those familiar with Java ? 2] Is ...
1
vote
1answer
316 views

Extending Menus and Context Menus in a .NET application with MEF

I am trying to come up with a Menu and Context menu architecture similar to what Visual Studio 2010 offers so that I could extend my current Menu with additional subitems provided by extensions. I am ...
0
votes
1answer
60 views

Is there a way to load python scripts from a zipfile in ironpython

I want to have extensions to my application written in IronPython. Part of those extensions will use decorators, and so I wish to include the decorator module in the package. The issue is that the ...
4
votes
1answer
595 views

VS2010 MPF: Populating 'Add->New Item…' list for a custom project

I've created a custom language package, which extends ProjectPackage. I can create the new project correctly. I would like to be able to add new source files to the project by using the Add->New ...
0
votes
0answers
32 views

Installing modules and extensions for a asp.net website inside of itself

I couldn't think of the best way to describe my problem in the title, so forgive me if it's not clear. Basically what I'm trying to do is create a system that will allow custom extensions (like ...
2
votes
1answer
474 views

Tips on creating a plug-in architecture for WPF

I'm making the switch from Winforms to WPF. In Winforms I have a plug-in architecture where a user control is hosted in a Winform. Does anyone have any suggestions on creating a plug-in architecture ...
2
votes
1answer
971 views

User profile database design

i have to design a user account/profile tables for a university project. The basic idea i have is the following: a table for user account (email, username, pwd, and a bunch of other fields) a user ...
7
votes
2answers
84 views

HTML Validator that is extensible

Several validators, such as the one by the W3C, can validate an HTML (or XHTML) page against the W3C spec. Are there any validators that are extensible? That is, I'd like to not only validate ...
3
votes
1answer
253 views

Are there any Build tools designed with Mercurial in mind?

I've just moved a large project out of a legacy version control system, and into Mercurial. I'm now faced with the task (opportunity!) of overhauling my old build system to work with this new source ...
1
vote
2answers
74 views

please help with best approach for extension of WPF built-in class

I want to extend Shapes.Rectangle WPF built-in class with some additional proprietary properties. I can do this in 3 different ways: Declare my own wrapper class and have WPF Rectangle as one of its ...

1 2 3 4