- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 9
- Posts with Downvotes
- 2
- Downvoting Members
- 7
5 Posted Topics
Hello everyone, [B]I have a TextBox and a Button on my webpage. On Page Load I'm displaying the contents of a TextFile(with multiple lines)on the TextBox.Then I'm editing the TextBox.Then On ButtonClick ,I debug it and check the TextBox value.The value shown is:The value last edited on textbox appended with … | |
I'm using Datagridview in Windows application in C#. I've bound the datagridview with a table.Now on run time when the user inserts new row and presses up or down button,that row should automatically be inserted into database and if its not a new row then nothing should happen. Some1 suggested … | |
Hello everyone, I have bound a datagridview with a table, And put a checkbox on each row .And an Insert button at the bottom. On clicking the button ,the Checked rows are to be inserted in the table. When I do that it gives an error as 'Can not Insert … | |
A C code is written: int i=-1 , j=-1 ,k=0 ,l=2 ,m; m=i++ && j++ && k++ || l++; //Line 3 printf("%d%d%d%d%d",i,j,k,l,m); O/p= 00131. I figured out that the Last variable in Line 3 is incremented only if it is preceeded by || else if preceeded by && it is … | |
Re: Here is the most simple and easy to to understand code to find longest word in a sentence: [B] #include<iostream.h> #include<conio.h> #include<stdio.h> void main() { clrscr(); int c=0,k=0,sp=1,max,j,len=0,b[20],x=0; char arr[50]; cout<<"Enter a sentence"; gets(arr); for(len=0 ;arr[len]!=NULL ;len++); cout<<"Entered string is :"; for(int i=0 ;i<len ;i++) { cout<<arr[i]; } cout<<"\n"<<"Len ="<<len; … |
The End.