- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 2
I am working as an Software Developer with the .Net 3.5 Framework..
- Interests
- I am fond of music..
- PC Specs
- Windows 7..
13 Posted Topics
hi.. I am working with an desktop application and i want to encrypt dlls after deployment.. Can anyone plz help me??? | |
Re: Hi.. I have a same need as of above but i also need to retain the status of checkedlistbox and the listbox when the form loads next time.. Can anyone please help me?? | |
Hi.. I have checkedlistbox in Form1,i am populating it using the following code [CODE]System.IO.DirectoryInfo di = new System.IO.DirectoryInfo("E:\\Testing"); System.IO.FileSystemInfo[] files = di.GetDirectories(); checkedListBox1.Items.AddRange(files);[/CODE] now i want to bulid an xml file in Form2 using the checkeditems in Form1 for which i have tried with the following code [CODE] Options opt … | |
Hi.. I am working on an project(asp.net C#) where i need to implement search within the website where i would like too retrieve the search results based on their links.. Can anyone help me?? | |
Re: hi.. try using p.CloseMainWindow(); | |
Hi.. I am using an menu control for which i am adding menuitems programmatically as follows:- MenuItem mi = new MenuItem(TextBox1.Text); Menu1.Items.Add(mi); MenuItem mi1 = new MenuItem(TextBox2.Text); mi.ChildItems.AddAt(0, mi1); MenuItem mi2 = new MenuItem(TextBox3.Text); mi1.ChildItems.AddAt(0, mi2); Menu1 SubMenu1 SubMenu2 Menu2 SubMenu1 and so on.. but if i have to add … | |
hi.. i am working on an project where i will need to create pages dynamically.. Can anyone please guide me?? | |
Hi.. I am populating my gridview as follows:- protected void Button1_Click(object sender, EventArgs e) { string con = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString; SqlDataAdapter sda = new SqlDataAdapter("Select * from DropDownFilter", con); sda.Fill(dt); GridView1.DataSource = dt; GridView1.DataBind(); } and then i have checkbox for every row now i want to delete the checked rows … | |
Hi.. I have 3 DropDownList:- DropdownList1 has status,DropDownlist2 has date and DropDownList3 has duedate and based on these values selected i want to populate the Gridview following is my code.. protected void Button1_Click(object sender, EventArgs e) { string con = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString; SqlDataAdapter sda = new SqlDataAdapter("Select * from DropDownFilter where … | |
this.tableLayoutPanel1.ResumeLayout(false); An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll occurred for the above line.. Please help me... | |
Hi.. I am populating a treeview in form1 based on the checkeditems in checkedlistbox which is in form2 but am unable to list the subfolders and files of the checked folder.. Can anyone please help me???? Thanks.. | |
Hi.. I am populating treeview using XML and then trying to access the nodes of treeview into webbrowser to view the files using the following code.. Can anyone please guide me with this?? [CODE] private void treeView1_MouseDoubleClick(object sender, MouseEventArgs e) { webBrowser1.Navigate(treeView1.SelectedNode.Text); } [/CODE] The following is the function to … | |
Hi.. Following is my code:- public static void Sync(string sourcePath, string destinationPath) { bool dirExisted = DirExists(destinationPath); //get the source files string[] srcFiles = Directory.GetFiles(sourcePath); foreach (string sourceFile in srcFiles) { FileInfo sourceInfo = new FileInfo(sourceFile); string destFile = Path.Combine(destinationPath, sourceInfo.Name); if (!dirExisted && File.Exists(destFile)) { FileInfo destInfo = new … |
The End.