In C# i placed an rdlc report viewer on a windows form now when i make an object of the form it wont call the report viewer. please help if any . <pre> RdlcReportViewer rv = new RdlcReportViewer(); rv.<u>reportViewer1</u>.LocalReport.EnableHyperlinks = true; rv.<u>reportViewer1</u>.LocalReport.ReportEmbeddedResource= "test.RdlcRptPayments.rdlc"; </pre> thankx. :)
T_Teef
Posts
-
Rdlc report -
web automationhi i am working on an application that automates a website, my work is to upload a file but it is not clear to me how i can get the browse folder dialog box event(on clicking the browse button).
-
how to click a link in axwebbrowseri know some thing is null because it is not able to find that link on the next page it is still looking on the same page. so now what should i do.
-
how to click a link in axwebbrowserhi i am working on a web application that automates the web site. it automatically logins after login it wents to the next page but at that next page i want to click a link but the navigator still sees for the first page and gives error" object reference not set to an instance of an object". so plz look into the matter.
-
web automation using axwebbrowserhi i am working on an application and very much able to do work like click a button, enter text in text boxes etc. my application works only for the single page(first page). i want to click the link label on the second page after login.
-
using a listbox within a listview how to pass parameter from listviewwell u r on the wrong forum plz select the right forum and go to asp.net forum where u will find the right person for it. but can we put a button over a button, or in other words can we write code of a button in another button. the answer is no. i guess that?
-
sftp programming in ftphi i want to connect to SFTP Server using SSH Channel and list files on remote directory, upload file and download file. I am not an expert in this area, please let me know how to achieve my targe using this code. :)
-
ftp key_press_evevt(help)i do but still not working
-
ftp key_press_evevt(help)hi guyz i am working on an application of ftp. my application successfully connects to the remote server. the trouble i am dealing with is when i press any key to go(jump) to a specific file my application hangs, but after some time it resumes, i have used key_press_evevt to but not able to getting the logic behind that. so see if any one be able to do it. :)
-
how to select mulitiple files for uploadhui guyz i am working on an ftp client which is working quite properly but have an issue it only uploads and downloads files one by one, so plz help. :)
-
tree view select all child nodes when to click parent nodesthats why we have posted the code to get the help to obtain a piece of code to handle the treeviews click event :zzz:
-
tree view select all child nodes when to click parent nodesheres the code
public partial class _Default : System.Web.UI.Page
{
public static SqlConnection sqlConn = new SqlConnection();
public static SqlCommand sqlCmmd = new SqlCommand();
public static SqlDataAdapter sqlDAptr = new SqlDataAdapter();
//public DataSet busDataSet
//{
// get
// {
// return DS;
// }
// set
// {
// DS = value;
// }
//}protected void Page\_Load(object sender, EventArgs e) { try { //GetTables(); PassQuery(); //abc(); } catch (Exception) { throw; } } public void PassQuery() { this.TreeView1.Nodes.Clear(); DataSet myFirstTable = new DataSet(); string Query = "select name from sys.tables"; myFirstTable = Retun\_Table\_BasedOn\_Query(Query); DataSet\[\] mySecondTable = new DataSet\[myFirstTable.Tables\[0\].Rows.Count\]; for (int i = 0; i < myFirstTable.Tables\["Table"\].Rows.Count; i++) { string str1 = myFirstTable.Tables\["Table"\].Rows\[i\]\[0\].ToString(); string Query2 = "SELECT sysobjects.name As Names, syscolumns.name AS FieldName " + "FROM sysobjects INNER JOIN syscolumns ON sysobjects.id = syscolumns.id " + "WHERE (sysobjects.name = '" + str1 + "')"; mySecondTable\[i\] = Retun\_Table\_BasedOn\_Query(Query2); TreeNode tnParent; TreeNode tnChild; for (int a = 0; a < 1; a++) { tnParent = new TreeNode(); tnParent.Text = str1.ToString(); TreeView1.Nodes.Add(tnParent); foreach (DataRow rowChild in mySecondTable\[i\].Tables\["Table"\].Rows) { tnChild = new TreeNode(); tnChild.Text = rowChild\["FieldName"\].ToString(); tnParent.ChildNodes.Add(tnChild); } } } } public void Open\_Connection() { string Conn\_Str = "Data Source=dev-test;Initial Catalog=Malik;Persist Security Info=True;User ID=interns;Password=intern123"; sqlConn = new SqlConnection(Conn\_Str); if (sqlConn.State != ConnectionState.Open) { sqlConn.Open(); } } public DataSet Retun\_Table\_BasedOn\_Query(String Quer
-
tree view select all child nodes when to click parent nodeswe r using asp.net and we have also created check boxes, we want parent node check box checked then its child should also get checked automatically.
-
tree view select all child nodes when to click parent nodesI have tree view control on my asp.net web page. this tree control has check boxes on every node. I want when user selects or make parent node check box checked then its child should also get checked automatically. how can i do this ? kindly its urgent, plz send some code hints.
-
Uploading a file but zero bytes are shownhi i am uploading file using ftp the file is uploaded successfully but the reason is that their is no data in it it shows zero(0) bytes. so plz help :(
-
ftp error "file not found, no access"thanks man its really helpfull. :-D
-
ftp error "file not found, no access"Hi guyz i am working on an ftp application need to know how to upload a file. i am having a trouble at Stream ftpstream = ftp.GetRequestStream(); error is The remote server returned an error: (550) File unavailable (e.g., file not found, no access)..
-
FileNotFoundException errori think its a memory error not sure. ;)
-
how to upload a file using ftp [modified]Hi guyz i am working on an ftp application need to know how to upload a file. i am having a trouble at Stream ftpstream = ftp.GetRequestStream(); error is The remote server returned an error: (550) File unavailable (e.g., file not found, no access).. :-D
modified on Thursday, March 26, 2009 9:56 PM
-
how to browse a remote directory using ftp clientthanks man its very helpful :-D .