Click here to Skip to main content
15,894,017 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Help me in VB.NET Recording using DirectSound Pin
Henry Minute30-Jan-11 2:45
Henry Minute30-Jan-11 2:45 
QuestionStored procedures using Entity Framework Pin
jonatan_55628-Jan-11 7:45
jonatan_55628-Jan-11 7:45 
AnswerRe: Stored procedures using Entity Framework Pin
Henry Minute28-Jan-11 12:31
Henry Minute28-Jan-11 12:31 
AnswerRe: Stored procedures using Entity Framework Pin
Not Active28-Jan-11 15:44
mentorNot Active28-Jan-11 15:44 
QuestionInstaller: CustomActionData Pin
Archdeacon27-Jan-11 17:03
Archdeacon27-Jan-11 17:03 
QuestionBasic tier object design questions Pin
Jon_Boy27-Jan-11 1:53
Jon_Boy27-Jan-11 1:53 
AnswerRe: Basic tier object design questions Pin
dan!sh 27-Jan-11 6:30
professional dan!sh 27-Jan-11 6:30 
AnswerRe: Basic tier object design questions Pin
Ian Shlasko27-Jan-11 7:29
Ian Shlasko27-Jan-11 7:29 
With .NET, you can use an EXE just like a DLL... So there's nothing stopping you from doing it this way.

Of course, there doesn't seem to be much of a point to it, in your situation.

I actually did something like that, but my situation was a bit different... It went something like this:
ScriptingInterface.exe
Application.exe
BusinessLayer.dll
...

For normal use, you would just run the Application.exe... But there were certain tasks, intended to run once a day or in special situations, that were located in the Application.exe (Though they mostly wrapped routines and models from the business layers). Initially, they were being triggered from menu options, but eventually we wanted to automate them by hooking them up to a scheduler...

So basically, the ScriptingInterface.exe would reference Application.exe, and use command line arguments to perform one of those menu-driven tasks, without actually opening up the GUI.

C:\> ScriptingInterface.exe Maintenance DailyRoutines RunSomething

translated to...
namespace My.Namespace.Maintenance
{
  public static class DailyRoutines
  {
     public static void RunSomething()
     {
     }
  }
}


So, there are scenarios where you might want to use an EXE like a library, but for a business layer? Probably no point.
Proud to have finally moved to the A-Ark. Which one are you in?
Author of the Guardians Saga (Sci-Fi/Fantasy novels)

GeneralRe: Basic tier object design questions Pin
Jon_Boy27-Jan-11 7:48
Jon_Boy27-Jan-11 7:48 
AnswerRe: Basic tier object design questions Pin
TheGreatAndPowerfulOz27-Jan-11 11:54
TheGreatAndPowerfulOz27-Jan-11 11:54 
QuestionGDI+ scene graph, retrieve absolute transform from local transform Pin
norrisMiou26-Jan-11 16:49
norrisMiou26-Jan-11 16:49 
AnswerRe: GDI+ scene graph, retrieve absolute transform from local transform Pin
Luc Pattyn26-Jan-11 17:04
sitebuilderLuc Pattyn26-Jan-11 17:04 
GeneralRe: GDI+ scene graph, retrieve absolute transform from local transform Pin
norrisMiou27-Jan-11 9:20
norrisMiou27-Jan-11 9:20 
GeneralRe: GDI+ scene graph, retrieve absolute transform from local transform Pin
Luc Pattyn27-Jan-11 9:30
sitebuilderLuc Pattyn27-Jan-11 9:30 
QuestionTo bind or not to bind? Pin
Sander Rossel26-Jan-11 4:05
professionalSander Rossel26-Jan-11 4:05 
AnswerRe: To bind or not to bind? Pin
Dave Kreskowiak26-Jan-11 4:23
mveDave Kreskowiak26-Jan-11 4:23 
GeneralRe: To bind or not to bind? Pin
Sander Rossel26-Jan-11 6:56
professionalSander Rossel26-Jan-11 6:56 
GeneralRe: To bind or not to bind? Pin
Dan Mos26-Jan-11 9:23
Dan Mos26-Jan-11 9:23 
GeneralRe: To bind or not to bind? Pin
Dave Kreskowiak26-Jan-11 11:07
mveDave Kreskowiak26-Jan-11 11:07 
AnswerRe: To bind or not to bind? Pin
Dan Mos26-Jan-11 5:36
Dan Mos26-Jan-11 5:36 
GeneralRe: To bind or not to bind? Pin
Sander Rossel26-Jan-11 7:05
professionalSander Rossel26-Jan-11 7:05 
AnswerRe: To bind or not to bind? Pin
Luc Pattyn26-Jan-11 7:27
sitebuilderLuc Pattyn26-Jan-11 7:27 
GeneralRe: To bind or not to bind? Pin
DaveyM6926-Jan-11 8:29
professionalDaveyM6926-Jan-11 8:29 
GeneralRe: To bind or not to bind? Pin
Dan Mos26-Jan-11 8:56
Dan Mos26-Jan-11 8:56 
JokeRe: To bind or not to bind? Pin
Sander Rossel26-Jan-11 9:43
professionalSander Rossel26-Jan-11 9:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.