Click here to Skip to main content
15,886,795 members
Home / Discussions / C#
   

C#

 
QuestionDrawing in picture box--C#/opengl help Pin
Raza568018-Apr-07 19:32
Raza568018-Apr-07 19:32 
AnswerRe: Drawing in picture box--C#/opengl help Pin
Christian Graus18-Apr-07 20:00
protectorChristian Graus18-Apr-07 20:00 
QuestionRead Word documents using stringreader? Pin
K.Ravich18-Apr-07 19:24
K.Ravich18-Apr-07 19:24 
AnswerRe: Read Word documents using stringreader? Pin
Sathesh Sakthivel18-Apr-07 19:45
Sathesh Sakthivel18-Apr-07 19:45 
QuestionForm closing or disposing Pin
EEmaan18-Apr-07 18:58
EEmaan18-Apr-07 18:58 
AnswerRe: Form closing or disposing Pin
Jaiprakash M Bankolli18-Apr-07 19:54
Jaiprakash M Bankolli18-Apr-07 19:54 
GeneralRe: Form closing or disposing Pin
EEmaan19-Apr-07 0:06
EEmaan19-Apr-07 0:06 
QuestionError in Webservice while using datatable Pin
sujithkumarsl18-Apr-07 18:56
sujithkumarsl18-Apr-07 18:56 
hi i have a webservice in vs2005, and i am trying to access that from my vs2003 application.
To service methods are defined onr is "helloworld",default method.Its working properly
But in my next method i am trying to return a datatable.
But it showing some error on running
the exception is aditional information: Method Service.GetAction can not be reflected.
GetAction is my method.

this is the reference class
/// <remarks>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetAction", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public DataTable GetAction() {
object[] results = this.Invoke("GetAction", new object[0]);
return ((DataTable)(results[0]));
}

/// <remarks>
public System.IAsyncResult BeginGetAction(System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("GetAction", new object[0], callback, asyncState);
}

/// <remarks>
public DataTable EndGetAction(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((DataTable)(results[0]));
}

I changed the datatype to datatable.

My small attempt...

AnswerRe: Error in Webservice while using datatable Pin
Jaiprakash M Bankolli18-Apr-07 19:55
Jaiprakash M Bankolli18-Apr-07 19:55 
GeneralRe: Error in Webservice while using datatable Pin
sujithkumarsl18-Apr-07 20:47
sujithkumarsl18-Apr-07 20:47 
GeneralRe: Error in Webservice while using datatable Pin
Jaiprakash M Bankolli18-Apr-07 21:13
Jaiprakash M Bankolli18-Apr-07 21:13 
Question.Net Framework Installation Pin
aruna_koride18-Apr-07 17:48
aruna_koride18-Apr-07 17:48 
AnswerRe: .Net Framework Installation Pin
Christian Graus18-Apr-07 18:01
protectorChristian Graus18-Apr-07 18:01 
AnswerRe: .Net Framework Installation Pin
Patrick Etc.18-Apr-07 18:18
Patrick Etc.18-Apr-07 18:18 
GeneralRe: .Net Framework Installation Pin
aruna_koride19-Apr-07 0:03
aruna_koride19-Apr-07 0:03 
QuestionFree Office 2007 style controls Pin
WombatDelight18-Apr-07 16:47
WombatDelight18-Apr-07 16:47 
AnswerRe: Free Office 2007 style controls Pin
Christian Graus18-Apr-07 18:00
protectorChristian Graus18-Apr-07 18:00 
GeneralRe: Free Office 2007 style controls Pin
WombatDelight18-Apr-07 18:07
WombatDelight18-Apr-07 18:07 
GeneralRe: Free Office 2007 style controls Pin
Christian Graus19-Apr-07 0:37
protectorChristian Graus19-Apr-07 0:37 
QuestionC# Newbie Please Help! Pin
ashley4838518-Apr-07 14:30
ashley4838518-Apr-07 14:30 
AnswerRe: C# Newbie Please Help! Pin
pbraun18-Apr-07 14:44
pbraun18-Apr-07 14:44 
GeneralRe: C# Newbie Please Help! Pin
ashley4838518-Apr-07 14:51
ashley4838518-Apr-07 14:51 
GeneralRe: C# Newbie Please Help! Pin
pbraun18-Apr-07 15:02
pbraun18-Apr-07 15:02 
GeneralRe: C# Newbie Please Help! Pin
ashley4838518-Apr-07 15:09
ashley4838518-Apr-07 15:09 
GeneralRe: C# Newbie Please Help! Pin
pbraun18-Apr-07 15:24
pbraun18-Apr-07 15:24 

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.