Click here to Skip to main content
15,915,834 members
Home / Discussions / C#
   

C#

 
GeneralRe: VB.NET IRR Function Pin
zaboboa11-Oct-05 9:45
zaboboa11-Oct-05 9:45 
QuestionWindows Service Pin
Talktorajeev11-Oct-05 2:20
Talktorajeev11-Oct-05 2:20 
AnswerRe: Windows Service Pin
XRaheemX11-Oct-05 3:18
XRaheemX11-Oct-05 3:18 
QuestionIs there any API for powerpoint file programming in .net? Pin
ting66811-Oct-05 2:18
ting66811-Oct-05 2:18 
AnswerRe: Is there any API for powerpoint file programming in .net? Pin
David Stone11-Oct-05 7:26
sitebuilderDavid Stone11-Oct-05 7:26 
GeneralRe: Is there any API for powerpoint file programming in .net? Pin
ting66812-Oct-05 1:50
ting66812-Oct-05 1:50 
QuestionStarter KIT Problem Pin
Micu Radu11-Oct-05 1:59
Micu Radu11-Oct-05 1:59 
QuestionOffice Development BIG PROBLEM Pin
Micu Radu11-Oct-05 1:59
Micu Radu11-Oct-05 1:59 
AnswerRe: Office Development BIG PROBLEM Pin
David Stone11-Oct-05 7:23
sitebuilderDavid Stone11-Oct-05 7:23 
Questionhide data grid columns Pin
theStorminMormon11-Oct-05 1:53
theStorminMormon11-Oct-05 1:53 
AnswerRe: hide data grid columns Pin
Wjousts11-Oct-05 2:36
Wjousts11-Oct-05 2:36 
GeneralRe: hide data grid columns Pin
theStorminMormon11-Oct-05 3:07
theStorminMormon11-Oct-05 3:07 
GeneralRe: hide data grid columns Pin
Wjousts11-Oct-05 4:29
Wjousts11-Oct-05 4:29 
QuestionXML Serialization Pin
Arshad_Ebrahim11-Oct-05 1:45
Arshad_Ebrahim11-Oct-05 1:45 
AnswerRe: XML Serialization Pin
XRaheemX11-Oct-05 3:37
XRaheemX11-Oct-05 3:37 
GeneralRe: XML Serialization Pin
Arshad_Ebrahim11-Oct-05 3:53
Arshad_Ebrahim11-Oct-05 3:53 
GeneralRe: XML Serialization Pin
XRaheemX11-Oct-05 3:59
XRaheemX11-Oct-05 3:59 
GeneralRe: XML Serialization Pin
Arshad_Ebrahim11-Oct-05 4:09
Arshad_Ebrahim11-Oct-05 4:09 
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Web;
using System.Web.Services;

namespace ITCService
{
///
/// Summary description for Test1.
///

public class Test1 : System.Web.Services.WebService
{
public Test1()
{
//CODEGEN: This call is required by the ASP.NET Web Services Designer
InitializeComponent();
}

#region Component Designer generated code

//Required by the Web Services Designer
private IContainer components = null;

///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///

private void InitializeComponent()
{
}

///
/// Clean up any resources being used.
///

protected override void Dispose( bool disposing )
{
if(disposing && components != null)
{
components.Dispose();
}
base.Dispose(disposing);
}

#endregion

// WEB SERVICE EXAMPLE
// The HelloWorld() example service returns the string Hello World
// To build, uncomment the following lines then save and build the project
// To test this web service, press F5

[WebMethod]
public SomeDetail HelloWorld(InputDetail inputDetail)
{
return new SomeDetail();
}
}
public class SomeDetail
{
public int SomeValue;

public SomeDetail()
{
}
}
public class InputDetail
{
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
[System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger")]
public int InputValue;

public InputDetail()
{
}
}

}
GeneralRe: XML Serialization Pin
XRaheemX11-Oct-05 4:19
XRaheemX11-Oct-05 4:19 
GeneralRe: XML Serialization Pin
Arshad_Ebrahim11-Oct-05 4:23
Arshad_Ebrahim11-Oct-05 4:23 
GeneralRe: XML Serialization Pin
XRaheemX11-Oct-05 4:45
XRaheemX11-Oct-05 4:45 
GeneralRe: XML Serialization Pin
Arshad_Ebrahim11-Oct-05 20:25
Arshad_Ebrahim11-Oct-05 20:25 
GeneralRe: XML Serialization Pin
XRaheemX12-Oct-05 3:17
XRaheemX12-Oct-05 3:17 
QuestionConnecting Sqlserver 2000 from Visual Studio 2005 C# editor Pin
Zapss11-Oct-05 1:37
Zapss11-Oct-05 1:37 
QuestionA good C# book recomendation Pin
ddmcr11-Oct-05 1:29
ddmcr11-Oct-05 1: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.