if u are using crystal report then u can use the export button to export to excel try using crystal report
magnifique
Posts
-
how can i export the data from report to excel sheet -
switching location of an asp.net application to a diffrent pc [modified]hi copy the folder to the location C:\inetpub\wwwroot if posible create a virtual directory hope it works
-
page refreshASP.net postback always reload the page so what u have to do is to set the custom error off
-
reportviewerhi folks how do i set the margin and paper to landscape in the code window with reportviewer let say am using c#
-
Sql Severi want to access sql server in a defferent location. I pass the connection string through a web service on the server but it gives me this exception system.web service exceptionerror server was unable to process request. Server does not exit or access denied -- modified at 6:25 Thursday 2nd March, 2006
-
Web servicelet say i am developing a software that work over the internet let say i am in ghana the server is in london how can i access the server in london if am using web service i think is clear i need pdfs and some sample code
-
Web servicehi all How can i access soap protocal over the internet using sql database Let say i am using web service I want someone to help me I need pdfs and code sample or site
-
Web servicehi all How can i access soap protocal over the internet Let say i am using web service I want someone to help me I need pdfs and code sample or site -- modified at 11:45 Monday 20th February, 2006
-
hi alli am try to write tcp client an server but any time it get to the streamReader it hungs. can someone help me with these code Client Code public string RunClient(string address,int port) { string response=""; //set up a listener on that address/port TcpClient tcpClient=new TcpClient(address,port); if(tcpClient!=null) { string message="Hello There"; //translate the message into UTFASCII and store it as a byte array byte[] bytes=Encoding.ASCII.GetBytes(message); NetworkStream stream=tcpClient.GetStream(); //send message to the connected tcpServer //the write flushes the stream automatically here stream.Write(bytes,0,bytes.Length); //get the response from the server StreamReader reader=new StreamReader(stream,Encoding.UTF8); try { response=reader.ReadToEnd(); } finally { //close reader reader.Close(); } //close client tcpClient.Close(); } //return response to text return response; } Server Code public static void RunServer(string address,int port) { //set up address IPAddress addr=IPAddress.Parse(address); //set up listener on that address/port TcpListener tcpListener=new TcpListener(addr,port); if(tcpListener !=null) { //start it up tcpListener.Start(); //wait for tcp client to connect TcpClient tcpClient=tcpListener.AcceptTcpClient(); byte[]bytes=new byte[1024]; //get the client stream NetworkStream ClientStream=tcpClient.GetStream(); Stream str=ClientStream; StreamReader reader=new StreamReader(ClientStream,Encoding.UTF8); try { string request=reader.ReadToEnd(); //just send an acknowlegment bytes=Encoding.UTF8.GetBytes("Thanks for the message"); ClientStream.Write(bytes,0,bytes.Length); } finally { //close the resder reader.Close(); } //stop listeneing tcpListener.Stop(); } }
-
hi allhow can i import data from any access,oracle dbase to sql server
-
buttonhow can i size the button control for it to look like oval shape
-
viewi understand your anwser but my question is this the query is autogenerated in a form of string in a text box so how can i pass the string query and save it as a view using sqldmo
-
viewi am working on a project to automatically generate view if the user select certain number of tables. my problem is how can i save the query generated as a view
-
Viewcan somebody show me how to link two table and save it as view using sqldmo
-
adding dll and call its functionsopen a new project select class type in your code make sure the functions are public class bulid ths solution save the project close the project open your project use the Using to call the dll like using projectdll; create a reference type like project.Adddate mydate=new project.adddate you can now use the instatiated object mydate.adding(rttr,teert); if it returns a string declear a string reference type s=mydate.adding(rttr,teert);
-
C# Videohello friends Reading c# books take a lot of my time please can somebody give me a site where i can download free C# videos
-
viewHow can i use sqldmo to link serveral tables and save it as a view
-
viewHow can i use sqldmo to link serveral table i need practical example
-
crystal reportshow can i load a crystal report using dataset with two tabes the tables should not duplicate i need practical example
-
create Viewhow can i create a view using sqldmo by linking servaer tables please i need practical example