.net 2.0 - vb.net winforms design / layout issue -
i working on windows forms project allow user have interface database, , nightly run process file update database table.
the user add new records table, whereas nightly process update columns new values (think mortgage interest rates)
both these projects using same business logic component has calculations needed enter values table.
the way figuring out, have 2 exe's (one interface , 1 nightly process) , have central object host calculations. best object purpose?
a class file? windows service? (i want stay away windows service, because have running time)
thanks
you're on right track.
the central object business logic components should class library project (outputting dll).
the winform project allows users interface database should reference (and use) class library project.
the nightly process should run windows console application reference , use class library project. davita suggests nightly process should called windows scheduled task.
Comments
Post a Comment