- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 4
- Posts with Downvotes
- 4
- Downvoting Members
- 4
35 Posted Topics
Hi, I want to implement Multi Line Grid Header , can anyone please suggest how to implement it. i have already tried "\r\n" but it is not working for me. Thanks in Advance | |
Hi, I am working with Winform Grid .As per my requirement , i need to use two control in single grid cell. please suggest how i can achive it. Thanks in advance. | |
Hi, i have windows application , in that i have reference to the web service. Now when i put username and password , application calls to authentication service ( which is hosted on same machine IIS 7.5 ) i get pop up which is asking for Proxy Authentication. can anyone … | |
Hi, User "A" logged in to your web site and he is using Mozilla firefox browser after his logged in , i have stored some value in Session , now user again logged in from Internet explorer. So what will happen , can i get the session value for this … | |
Hi , I have a label control which is on web form (.aspx) and a button which is inside usercontrol , i want to change the label text on button click. OR on button click inside the user control change the text of label which is out side the user … | |
Hi, Plz explain the difference between instance and object in .NET, if possible explain with example. Thanks in Advance | |
Hi frnds, i need script for to change the images using next and prev button . | |
HI , I want to import emails from my Gmail account to my application, can anybody please help me out with code , links or procedure for to implement this . Thanks in Advance :) :) :) :) | |
Hi, I want to create Mail Box same like Gmail , Yahoo or Rediffmail using ASP.NET,C#. I am not able to understand what to use for to create INBOX , do i need to use repeater control , datalist , datagrid or some other option is available for to show … | |
Hi, i want to write a query for employee's who's name start with "a" and end with "b". Thnks in advance :) | |
What happens if you inherit multiple interfaces and they have conflicting method names? [CODE]using System; namespace WindowsApplication1 { public interface a { void b(); } public interface c { void b(); } public class Class1:a,c { public Class1() { // // TODO: Add constructor logic here // } #region a … | |
Hi frnz , i need a code for 2^n and suppose user enter n = 4 , so the output will be 16 . Now whatever output we will get i need sum of numbers in that output e.g here we have 16 i.e 1 + 6 = 7 . … ![]() | |
Hi Frnz, anyone can help me with code , how to setting up [B][U]"solr search engine "[/U][/B] for document search on ur desktop in .net | |
Hi Frnz , i am getting the error while i tried to add ajax control toolkit to .net framework. i have added ajaxcontrol toolkit to bin folder on webapplication . | |
This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage i have solve this problem by simply right click on default in IIS and mark "Execute (such as ISAPI application or CGI)" as check | |
Hi frnz, i am having text file , in that "ID", "firstname","lastname","email-id","phoneno" is the first row and same column name i have declared in gridview, i am also having update and delete option in gridview . now what i wanted to do is when user clicks on perticular record from … | |
Hi i have c# code for to sort text file using quicksort algo, but the problem is that i can sort only upto 300MB , after that system get hang . i want to sort 1GB to 5GB text file. can anyone plz help me . here is the code … | |
Hi frnz , i want to indert , update , delete and search data in .csv file . data like record first name, last name, phone no , email-id . | |
HI , i need code for to insert , update and for to delete record in excel in asp.net using c#. i am able to add data in excel but having problem while deleting . :( can anyone plz help me. your help will appriciated.:) | |
Hi , i am getting syntax error in INSERT INTO statement. getting this error on cmdobj.ExecuteNonQuery(); [CODE]string connectionstring = @"Provider=Microsoft.ACE.OLEDB.12.0; Data Source=D:\website\AddContact.xlsx; Extended Properties=""Excel 8.0;HDR=Yes"";"; OleDbConnection conobj = new OleDbConnection(connectionstring); string Query = "INSERT INTO [Sheet1$](Fname, LName,PhoneNo,Email-ID) values (" + TextBox4.Text + ",'" + TextBox1.Text + "','" + TextBox2.Text + … | |
Hi , i need code , which is used for sorting in c# i.e. .sort method code., somewhere i read that they use quick sort algorithm , can anyone plz help me by giving the code. Thanks in Advance | |
Hi frnz , i need a C# code for to sorting text file , considering each row as one record and sort it according to that. e.g INPUT File my name is d my name is h i am a how are you what is your name OUTPUT File how … | |
Hi frnz, i want to know which is the fastest algorithm for to sort the text file of 1MB , 10MB , 50MB . Thanks in advance | |
Hi i want to sort normal text file based on spaces , tab , - , * , alphabetical order. here i am considering each row as a record and i want to sort it. condsidering ascii values. plz help me . Thanks in advance. | |
you are given a set of N points e.g ((x1,y1),(x2,y2),(x3,y3)...or (3,6),(2,5),(4,1)..) on a plane . Find the pair of points that are closest to each other. all these given points are on X-axis and on Y-axis according to that you have to calculate the closest points using given co-ordinates. Thanks … | |
Hi friends , i have some code for to find out whether the no is prime or not. but i want it in c# using the same logic. int isPrime(int n) { int c =0, s=0; if (n == 1) { return 0; } if (n == 2) { return … | |
i have sample for to find out prime number , but i want to optimise is more. can anyone plz help me. int i; for (i=2; i < num ;i++ ){ int n = num%i; if (n==0){ System.out.println("not Prime!"); break; } } if(i == num){ System.out.println("Prime number!"); } thnaks in … | |
Hi frnds, i want to display profile from linkedin like , name , address , company and pic in my application. as "xobni" use to display . can anyone plz help me out for to do this. | |
Hi , i have created web application in that i want to get the facebook user profile like image, name , education etc. can any one plz suggest which API i need for that or what are the steps i have to take for to fetch profile in JAVA. | |
Hi , i want to fetch company profile using hoover api , i have my java based application in that i want to integrate company related data , like company name , location , contact no , emailid , company picture . can anyone plz help me for some important … | |
Hi friends, which are the JAVA API's available for to connect your application with LinkedIn. | |
want this code in C# ,[code]void sort(int *a, int size) { int i,j, swapped=0; for (j=size-1; j>0; j--) { swapped=0; for (i=0; i<j; i++) { if (a[i+1] < a[i]) { swap(a[i], a[i+1]); swapped=1 } } if ( swapped == 0 ) break; } }[/code] | |
Hi Frnds ... i want to know , how to optimize bubble sort , if you realize that at the end of the i-th pass, the last i numbers are already in place. Consider the sequence {3, 9, 1, 7}. After the first pass, the 9 will end up in … | |
Re: sory i dn't have knoledge abt ur problem .. but i want to kwn how to post the question on this site | |
In the code given below m not getting , 1) wht he has written in "Console.WriteLine("Enter Value p[{0}]:", i);" wht is P[{0}] n wht is i ,,,,, 2) Console.WriteLine("c[{0}]={1}, c[{2}]={3}", i, c[i], j, c[j]); wht is c[{0}] = {1},c[{2}]={3} " , i , c[i] [code] using System; class AscendingBubbleSort { … |
The End.