Click here to Skip to main content
15,907,001 members
Home / Discussions / C#
   

C#

 
Questionmerge cells in rdlc report Pin
cdpsource23-Jul-13 21:46
cdpsource23-Jul-13 21:46 
AnswerRe: merge cells in rdlc report Pin
Code-Hunt23-Jul-13 23:41
Code-Hunt23-Jul-13 23:41 
GeneralRe: merge cells in rdlc report Pin
cdpsource24-Jul-13 0:37
cdpsource24-Jul-13 0:37 
QuestionLINQ - select new into existing dataclass Pin
amienc23-Jul-13 19:26
professionalamienc23-Jul-13 19:26 
AnswerRe: LINQ - select new into existing dataclass Pin
Code-Hunt23-Jul-13 19:49
Code-Hunt23-Jul-13 19:49 
QuestionC# Forms to Services Pin
Andre O Rahming23-Jul-13 19:26
Andre O Rahming23-Jul-13 19:26 
AnswerRe: C# Forms to Services Pin
Richard MacCutchan23-Jul-13 20:48
mveRichard MacCutchan23-Jul-13 20:48 
AnswerRe: C# Forms to Services Pin
Nicholas Marty24-Jul-13 0:51
professionalNicholas Marty24-Jul-13 0:51 
You should not even try to run a form in a Windows Service! A service is designed to run in the background. If you need an UI to control the functionality of the service create a seperate application and implement some form of Interprocess Communication (WCF jumps to mind here Wink | ;) , or just a small TCP stack, etc. I guess you get the idea).

A Windows Service will usually also run under a seperate User especially created for Services. If something like a form (or worse: a MessageBox) pops up this can have some very nasty side effects like blocking the service from continuing it's work etc.

If your application has a good separtion from UI code and business code, converting the Application should probably be a more or less trivial task. (Just move the code for the business logic to the Windows Service). If all you code is in the Forms Codebehind and intertwined with the UI Logic you'll have no choice but rewriting the whole thing.
QuestionPopulating generate wizard Pin
velkumar_in23-Jul-13 19:17
velkumar_in23-Jul-13 19:17 
AnswerRe: Populating generate wizard Pin
Code-Hunt23-Jul-13 20:49
Code-Hunt23-Jul-13 20:49 
QuestionGrid View Column Pin
Mahdi_kishislan23-Jul-13 10:40
Mahdi_kishislan23-Jul-13 10:40 
AnswerRe: Grid View Column Pin
Dave Kreskowiak23-Jul-13 11:22
mveDave Kreskowiak23-Jul-13 11:22 
GeneralRe: Grid View Column Pin
Mahdi_kishislan23-Jul-13 18:49
Mahdi_kishislan23-Jul-13 18:49 
GeneralRe: Grid View Column Pin
Dave Kreskowiak24-Jul-13 3:49
mveDave Kreskowiak24-Jul-13 3:49 
AnswerRe: Grid View Column Pin
phani raavi25-Jul-13 3:25
phani raavi25-Jul-13 3:25 
QuestionFPS convertor Pin
_Q12_23-Jul-13 9:13
_Q12_23-Jul-13 9:13 
AnswerRe: FPS convertor Pin
walterhevedeich23-Jul-13 17:37
professionalwalterhevedeich23-Jul-13 17:37 
GeneralRe: FPS convertor Pin
_Q12_23-Jul-13 18:51
_Q12_23-Jul-13 18:51 
GeneralRe: FPS convertor Pin
walterhevedeich23-Jul-13 20:23
professionalwalterhevedeich23-Jul-13 20:23 
GeneralRe: FPS convertor Pin
harold aptroot24-Jul-13 0:13
harold aptroot24-Jul-13 0:13 
GeneralRe: FPS convertor Pin
_Q12_25-Jul-13 6:27
_Q12_25-Jul-13 6:27 
GeneralRe: FPS convertor Pin
harold aptroot25-Jul-13 7:04
harold aptroot25-Jul-13 7:04 
GeneralRe: FPS convertor Pin
_Q12_25-Jul-13 7:21
_Q12_25-Jul-13 7:21 
QuestionHow to authorize user by form authentication in mvc 4 Pin
nitin_ion23-Jul-13 2:35
nitin_ion23-Jul-13 2:35 
AnswerRe: How to authorize user by form authentication in mvc 4 Pin
Keith Barrow23-Jul-13 6:29
professionalKeith Barrow23-Jul-13 6:29 

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.