Click here to Skip to main content
15,892,517 members
Home / Discussions / C#
   

C#

 
GeneralRe: IIS Server with C# application Pin
EliottA29-Jun-09 5:45
EliottA29-Jun-09 5:45 
GeneralRe: IIS Server with C# application Pin
treuveni29-Jun-09 5:51
treuveni29-Jun-09 5:51 
GeneralRe: IIS Server with C# application Pin
EliottA29-Jun-09 6:07
EliottA29-Jun-09 6:07 
GeneralRe: IIS Server with C# application Pin
Not Active29-Jun-09 8:30
mentorNot Active29-Jun-09 8:30 
Questionabout full-text-search Pin
leone29-Jun-09 4:43
leone29-Jun-09 4:43 
AnswerRe: about full-text-search Pin
Luc Pattyn29-Jun-09 4:57
sitebuilderLuc Pattyn29-Jun-09 4:57 
QuestionOut of Memory Exception while reading Text File Pin
Revathij29-Jun-09 3:43
Revathij29-Jun-09 3:43 
AnswerRe: Out of Memory Exception while reading Text File Pin
Manas Bhardwaj29-Jun-09 4:19
professionalManas Bhardwaj29-Jun-09 4:19 
AnswerRe: Out of Memory Exception while reading Text File Pin
Keith Barrow29-Jun-09 4:59
professionalKeith Barrow29-Jun-09 4:59 
AnswerRe: Out of Memory Exception while reading Text File Pin
Luc Pattyn29-Jun-09 5:01
sitebuilderLuc Pattyn29-Jun-09 5:01 
AnswerRe: Out of Memory Exception while reading Text File Pin
Dan Neely29-Jun-09 7:19
Dan Neely29-Jun-09 7:19 
QuestionHow to get textbox text lines count? Pin
swetha_insoft29-Jun-09 1:59
swetha_insoft29-Jun-09 1:59 
AnswerRe: How to get textbox text lines count? Pin
padmanabhan N29-Jun-09 2:08
padmanabhan N29-Jun-09 2:08 
GeneralRe: How to get textbox text lines count? Pin
swetha_insoft29-Jun-09 2:19
swetha_insoft29-Jun-09 2:19 
GeneralRe: How to get textbox text lines count? Pin
OriginalGriff29-Jun-09 2:40
mveOriginalGriff29-Jun-09 2:40 
GeneralRe: How to get textbox text lines count? Pin
Pete O'Hanlon29-Jun-09 2:52
mvePete O'Hanlon29-Jun-09 2:52 
AnswerRe: How to get textbox text lines count? Pin
K030629-Jun-09 2:08
K030629-Jun-09 2:08 
AnswerRe: How to get textbox text lines count? Pin
dan!sh 29-Jun-09 2:50
professional dan!sh 29-Jun-09 2:50 
AnswerRe: How to get textbox text lines count? Pin
Henry Minute29-Jun-09 6:03
Henry Minute29-Jun-09 6:03 
Questionhow to use windows service in another project? Pin
Narendra Reddy Vajrala29-Jun-09 1:27
Narendra Reddy Vajrala29-Jun-09 1:27 
AnswerRe: how to use windows service in another project? Pin
himanshu256129-Jun-09 1:50
himanshu256129-Jun-09 1:50 
GeneralRe: how to use windows service in another project? Pin
Narendra Reddy Vajrala29-Jun-09 2:03
Narendra Reddy Vajrala29-Jun-09 2:03 
GeneralRe: how to use windows service in another project? [modified] Pin
himanshu256129-Jun-09 2:13
himanshu256129-Jun-09 2:13 
GeneralRe: how to use windows service in another project? [modified] Pin
Narendra Reddy Vajrala29-Jun-09 2:27
Narendra Reddy Vajrala29-Jun-09 2:27 
what am trying to do is

i want to insert records into a sqlTable for that i created a method with 4 arguments in windows services class.
inside that method i wrote code to insert those 4 arguments.
i installed this windows service.

from another project i want to call this method
To insert records from a form i called that service like this

WindowsService1.Service1 winService = new WindowsService1.Service1();<br />
            winService.insertValues(txtcustId.Text, txtcustName.Text, txtcustPhone.Text, txtcustAddress.Text);


here insertValues is my method inside windows service, where i wrote insert statement.


is this correct way?

when i tried to build it is giving below error
<br />
Error 2 The type 'System.ServiceProcess.ServiceBase' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. C:\Inetpub\wwwroot\WindowsFormsApplication1\WindowsFormsApplication1\Form1.cs 451 13 WindowsFormsApplication1<br />


modified on Monday, June 29, 2009 8:37 AM

GeneralRe: how to use windows service in another project? Pin
himanshu256129-Jun-09 2:36
himanshu256129-Jun-09 2:36 

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.