Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
~6K People Reached
About Me

I am working as an Software Developer with the .Net 3.5 Framework..

Interests
I am fond of music..
PC Specs
Windows 7..
Member Avatar for bhagyap

hi.. I am working with an desktop application and i want to encrypt dlls after deployment.. Can anyone plz help me???

Member Avatar for Rajeev Nambiar
0
994
Member Avatar for jainendra.shah

hi frds, I want to check items of checked list box of one form from second form . while i put the same items in listbox at second form. I just want to check mark on checkedlist box control on form one if i select listbox item on second form. …

Member Avatar for Emmanuel Jay
0
1K
Member Avatar for bhagyap

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 …

Member Avatar for samadblaj
0
515
Member Avatar for bhagyap

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??

Member Avatar for mani-hellboy
0
164
Member Avatar for srm2010

I am opening windows calculator in my MDI windows application and it gets open through a child form which is a part of mdi form.I am not able to close the windows calc even when my form gets closed. code: [CODE]System.Diagnostics.Process p = null; public bool calcinstance() { if (p …

Member Avatar for skatamatic
0
457
Member Avatar for bhagyap

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 …

0
54
Member Avatar for bhagyap

hi.. i am working on an project where i will need to create pages dynamically.. Can anyone please guide me??

Member Avatar for bhagyap
-2
246
Member Avatar for bhagyap

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 …

Member Avatar for bhagyap
-1
272
Member Avatar for bhagyap

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 …

Member Avatar for bhagyap
0
830
Member Avatar for bhagyap

this.tableLayoutPanel1.ResumeLayout(false); An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll occurred for the above line.. Please help me...

Member Avatar for bhagyap
0
217
Member Avatar for bhagyap

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..

Member Avatar for bhagyap
0
187
Member Avatar for bhagyap

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 …

Member Avatar for bhagyap
0
202
Member Avatar for bhagyap

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 …

Member Avatar for bhagyap
0
216