|
I have three web application projects that share a common library of custom server controls. Sharing the code behind files is easy - they are compiled into a dll that i reference in the other projects using a project reference. But how do I handle files...
Started by Jan Aagaard on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For one server control, especially if they are referenced multiple times each (think of a treeview.
|
|
On Fri, 5 Jun 2009 10:00:58 -0500, "AliR [VC++ MVP]" <AliR@online.nospam
Hi Guys,
Just want to get some opinions on this. Say I have a dialog box that is
used in more than one application, as we all know, I can simply put the cpp
and h file ...
Started by AliR [VC++ MVP] on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at omgili):
--
Ajay
On Jun 5, 11:00 am, "AliR [VC:uAsQc6e5JHA.1372@TK2MSFTNGP0....
You could use resource have your own resource IDs as
opposed to MFC Extension DLLs.
"
It sounds like you should move the dialog (.cpp & resource) into a dll.
|
|
I've to move a Windows based multi-threaded application (which uses global variables as well as an RDBMS for storage) to an NLB (i.e., network load balancer) cluster. The common architectural issues that immediately come to mind are
Global variables (...
Started by Jaywalker on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
From Pessimistic Concurrency (checking that a resource is available beforehand) to Optimistic Concurrency :
When a port rule uses multiple-host load balancing, one of three client affinity modes is selected from one IP address and different....
|
Ask your Facebook Friends
|
I am considering building an application that is a blend of a dynamic language (python or ruby) and compiled language and need some help getting convincing myself that this is a good idea.
My thought are that I can use a dynamic language to get a lot ...
Started by Nick Haddad on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
One example is in games that algorithm and resource performance usually have a much much bigger impact on application because of the multiple....
It's quite common, but make sure you know why you're architecting it the way you do.
|
|
I have an assembly that contains several user controls. For this user controls assembly I want to have a resource dictionary. All the user controls within the assembly should be able to access the resource dictionary. Do I have to add
<UserControl....
Started by Dan Vogel on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Then I merge reference to your resource....
In Prism projects (which have multiple modules, each in its own assembly), I store my common resource dictionaries in a ResourceDictionaries folder in a project titled Common .
|
|
GUI based web applications could be build upon a GUI component, stateful framework like Wicket or they could build in a RESTful, stateless way with GUI status only on the client.
From a technical point of view REST looks like the right way since it leverages...
Started by deamon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Therefore desktop versus web applications .
REST was defined by observing characteristic of successful web applications, both GUI and M2M.
If I'm not mistaken this site uses a RESTful UI .
And forward) multiple tabs and windows.
|
|
On Wed, 21 Jan 2009 04:27:57 -0800 (PST), dominolog <dominiktomczak@gmail.com
Hello
I'd like to support multiple languages for my MFC application (GUI
elements, message strings, menu items). I don't want to use the
resource DLLs because my client...
Started by dominolog on
, 23 posts
by 9 people.
Answer Snippets (Read the full thread at omgili):
You could file with English (US) resource strings (format is: <resource ID<localized string
--[ strings.en-us.txt ]--
1 Hello....
That associates (kind of a map) an integer resource ID
with the localized resource string.
|
|
What's the best practice to share the bin folder and dlls and other resource files (like css) between multiple web applications on the same server?
I've already separated out the common code into their own assemblies, but I'm wondering about deployment...
Started by Scott on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Xanadont , sharing common libraries etc is fine ( this is essentially what open source projects like), not 50 applications with variations....
If you really must share.
resource you are changing it for all - whether it was intended or not.
|
|
What are some concrete examples of applications that need to be multi-threaded, or don't need to be, but are much better that way?
Answers would be best if in the form of one application per post that way the most applicable will float to the top.
Started by Alex Baranosky on
, 14 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
One commonThe kind of applications that need to be threaded are the ones where you want to do more than one programs to be multithreaded....
multiple threads, the computer will schedule your application and the other threads can execute.
|
|
In the spirit of
Common programming mistakes for .NET developers to avoid? Common programming mistakes for PHP developers to avoid? Common programming mistakes for JavaScript developers to avoid? what are common mistakes we should avoid for Java?
Example...
Started by Ahmed on
, 28 posts
by 25 people.
Answer Snippets (Read the full thread at stackoverflow):
The most common mistake I've noticed so far is that C++ with an underlying resource such as a file handle or a database connection, leaving this job to the finalize Using the Singleton....
Are equal, only if they point to the same objects .
|