15,792,870 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Python questions
View PHP questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by vangapally Naveen Kumar (Top 98 by date)
vangapally Naveen Kumar
7-Oct-15 3:26am
View
If you are using select all for every column??
if it the case put an flag based on the flag do the code changes,lets say column for select all and column2 for also selectall then set the flag to 1 else 0
morover you can pass the 'n' number of parameters in where clause.
vangapally Naveen Kumar
7-Oct-15 1:29am
View
Check the permission to the folder where you are saving the file.That folder should be have Read/write permissions.
vangapally Naveen Kumar
6-Oct-15 7:16am
View
Use 'Group by' clause.I think the query is calculating like this 2350+2300+50+2078(it is taking the two records from tableY for invo 3, pono 126 and itemID111).
vangapally Naveen Kumar
6-Oct-15 6:56am
View
Good explanation...+5
vangapally Naveen Kumar
29-Sep-15 1:24am
View
please ask in questions section :)
Any how you can write stored procedure for this situation based on the 'Old City ID'
vangapally Naveen Kumar
16-Apr-15 8:30am
View
see this link you may get an idea regarding ERROR:
http://stackoverflow.com/questions/21509026/error-in-your-sql-syntax-check-the-manual-that-corresponds-to-your-mysql-server
vangapally Naveen Kumar
28-Oct-14 9:28am
View
nice answer....
vangapally Naveen Kumar
24-Oct-14 8:10am
View
good link for beginners..
vangapally Naveen Kumar
14-Oct-14 1:31am
View
please elaborate more?
vangapally Naveen Kumar
8-Oct-14 9:02am
View
TO GET THE COLUMN NAMES USE THIS QUERY
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.columns where table_name='TEST'--HERE TEST IS TABLE NAME
vangapally Naveen Kumar
5-Sep-14 1:57am
View
Mention your file path instead of server.mappath and regular expression work in windows app also..
see this link
http://stackoverflow.com/questions/5651464/c-sharp-word-replace-with-formating
vangapally Naveen Kumar
4-Sep-14 5:37am
View
post here........
vangapally Naveen Kumar
4-Sep-14 5:20am
View
what is your question ? please elaborate more about question
vangapally Naveen Kumar
4-Sep-14 4:28am
View
Space is the problem. if you want to use singleword like @Confirm_mail or @confirmmail
vangapally Naveen Kumar
4-Sep-14 2:48am
View
+5.Good Explanation.
vangapally Naveen Kumar
4-Sep-14 2:30am
View
debug your code first where you are getting error see...
vangapally Naveen Kumar
4-Sep-14 2:10am
View
if you want comment or ask something don't put it in answer put it in comments ..
vangapally Naveen Kumar
4-Sep-14 1:09am
View
elaborate more about question?
vangapally Naveen Kumar
3-Sep-14 9:37am
View
When you are Getting this Error? please elaborate question?
vangapally Naveen Kumar
2-Sep-14 6:35am
View
see this link you may get some idea
http://stackoverflow.com/questions/15901997/c-sharp-reach-click-button-in-webbrowser
vangapally Naveen Kumar
2-Sep-14 5:46am
View
what you are getting after filter into bindingsource bs?
vangapally Naveen Kumar
2-Sep-14 4:48am
View
Run your code as an administrator on the machine.
vangapally Naveen Kumar
2-Sep-14 4:40am
View
error says that directory access is denied to you change folder properties and security give the full control.
vangapally Naveen Kumar
1-Sep-14 9:35am
View
if you are getting same values use group by like
myList.GroupBy(x => x.id)
.Select(g => g.First());
or use distinct
like
myList.DistinctBy(x => x.id);
vangapally Naveen Kumar
1-Sep-14 9:32am
View
you are getting same values?
vangapally Naveen Kumar
1-Sep-14 3:28am
View
stream file should have an extension.
see this link
http://msdn.microsoft.com/en-us/library/wtbhzte9(v=vs.110).aspx
vangapally Naveen Kumar
1-Sep-14 2:00am
View
are want to bind items to repeater control?
or to bind menu control?
vangapally Naveen Kumar
28-Aug-14 8:09am
View
welcome..............
vangapally Naveen Kumar
28-Aug-14 7:35am
View
to start a exe service
System.Diagnostics.Process.Start("XXX.exe");
vangapally Naveen Kumar
28-Aug-14 7:30am
View
try like this
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
connection.Open();
DataTable sheetColumns = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Columns, new object[] { null, null, sheetName, null }));
foreach (DataColumn sheetColumnProperties in sheetColumns.Rows)
{
// From here you have access to the column's name, type...
}
}
vangapally Naveen Kumar
28-Aug-14 7:07am
View
what error you are getting?
vangapally Naveen Kumar
28-Aug-14 3:18am
View
please elaborate more..........
vangapally Naveen Kumar
28-Aug-14 3:16am
View
ok...
vangapally Naveen Kumar
28-Aug-14 3:15am
View
Close the '(' bracket first in your query. see the updated Solution.
vangapally Naveen Kumar
28-Aug-14 3:07am
View
share your code what you write.....
vangapally Naveen Kumar
28-Aug-14 3:07am
View
Deleted
share your code what you write.....
vangapally Naveen Kumar
27-Aug-14 7:44am
View
See this link you will get an Idea.
http://www.codeproject.com/Answers/228370/how-to-manage-file-upload-control-inside-grid-view#answer3
vangapally Naveen Kumar
27-Aug-14 3:59am
View
Good Links..............
vangapally Naveen Kumar
27-Aug-14 3:55am
View
Welcome.............
vangapally Naveen Kumar
23-Aug-14 3:24am
View
Good Link +5
vangapally Naveen Kumar
22-Aug-14 2:38am
View
use anonymous class and assign result set to the that then using for loop u can assign the values .at code behind(cs page).
vangapally Naveen Kumar
21-Aug-14 2:42am
View
see this link you may get some idea.
http://stackoverflow.com/questions/20375459/using-getfiles-but-splitting-the-results-to-show-full-path-and-just-the-filename
vangapally Naveen Kumar
21-Aug-14 2:00am
View
please check what you are getting into 'videofilenames' .I Think you will get full file path into 'videofilenames'
vangapally Naveen Kumar
29-Jul-14 7:16am
View
what error you are getting?
vangapally Naveen Kumar
29-Jul-14 7:00am
View
i think the server is blocking smtp...
what error you are getting ccheck error log.....
vangapally Naveen Kumar
3-Jul-14 6:48am
View
please elaborate question more......
vangapally Naveen Kumar
3-Jul-14 6:38am
View
above code is working fine+5
vangapally Naveen Kumar
3-Jul-14 6:27am
View
use runat server and id
like
<input type="button" id="sa" runat="server"/>
vangapally Naveen Kumar
3-Jul-14 3:17am
View
good links..........
vangapally Naveen Kumar
20-Dec-13 0:36am
View
i checked the textbox1 values are not getting which is enter by user
vangapally Naveen Kumar
5-Nov-13 3:11am
View
check the column name that you have in your datatable(dtNewRateData)
vangapally Naveen Kumar
28-Aug-13 7:35am
View
can you explain more........
vangapally Naveen Kumar
28-Aug-13 5:37am
View
WELCOME ...........
vangapally Naveen Kumar
10-Oct-12 6:33am
View
you are getting exception see what you are getting like
lblmsg.Text = ex.tostring()
vangapally Naveen Kumar
21-Sep-12 1:03am
View
Can You elaborate more what you need?
vangapally Naveen Kumar
11-Sep-12 5:43am
View
Thanks Karthik
vangapally Naveen Kumar
11-Sep-12 5:41am
View
Good Answer
vangapally Naveen Kumar
14-Aug-12 0:48am
View
are You tried with ajax update panel...
vangapally Naveen Kumar
30-Jul-12 8:07am
View
Good link
vangapally Naveen Kumar
26-Jul-12 8:42am
View
thanks
vangapally Naveen Kumar
12-Jul-12 1:25am
View
Useful link.........
vangapally Naveen Kumar
12-Jul-12 0:59am
View
Good Links..........
vangapally Naveen Kumar
11-Jul-12 1:15am
View
Can You elaborate more.....
vangapally Naveen Kumar
11-Jul-12 1:05am
View
Good Artical.........
vangapally Naveen Kumar
10-Jul-12 4:35am
View
Good Links 5!
vangapally Naveen Kumar
9-Jul-12 6:03am
View
Good Links
vangapally Naveen Kumar
6-Jul-12 7:37am
View
My 5
vangapally Naveen Kumar
6-Jul-12 1:18am
View
Good Links ...........
vangapally Naveen Kumar
2-Jul-12 4:50am
View
Good Links 5+
vangapally Naveen Kumar
28-Jun-12 9:17am
View
Good one
vangapally Naveen Kumar
28-Jun-12 3:19am
View
Good answer! My 5!
vangapally Naveen Kumar
27-Jun-12 8:31am
View
my 5!
vangapally Naveen Kumar
27-Jun-12 8:20am
View
Good Answer 5+
vangapally Naveen Kumar
27-Jun-12 7:54am
View
did you mean difference between application state and application session ha?
vangapally Naveen Kumar
22-Jun-12 8:46am
View
See Following links you will get some idea
http://forums.asp.net/p/1089950/1649165.aspx
http://www.codeproject.com/Articles/8405/Placing-images-in-Excel-using-automation
vangapally Naveen Kumar
22-Jun-12 6:04am
View
Good Suggestion
vangapally Naveen Kumar
22-Jun-12 5:01am
View
my 5!
vangapally Naveen Kumar
22-Jun-12 3:22am
View
Nice link! 5!
vangapally Naveen Kumar
22-Jun-12 3:17am
View
Good 5!
vangapally Naveen Kumar
21-Jun-12 8:09am
View
Thanks Vani Kulkarni
vangapally Naveen Kumar
21-Jun-12 7:02am
View
see below link
http://stackoverflow.com/questions/158479/programatically-recognize-text-from-scans-in-a-pdf-file
and also
see this artical
http://www.devsource.com/c/a/Languages/Using-The-Office-2007-OCR-Component-in-C/
vangapally Naveen Kumar
11-Jun-12 6:17am
View
Good
vangapally Naveen Kumar
8-Jun-12 5:34am
View
Welcome Bhaskar
vangapally Naveen Kumar
8-Jun-12 5:33am
View
Thanks CodeBegin.........
vangapally Naveen Kumar
8-Jun-12 4:57am
View
Ok ..........
vangapally Naveen Kumar
8-Jun-12 4:42am
View
Already answer is given then why you repost the same answer ?
vangapally Naveen Kumar
7-Jun-12 0:58am
View
welcome .........
vangapally Naveen Kumar
6-Jun-12 9:14am
View
try like this
<asp:RadioButton ID="RadioButton1" runat="server" Text="SSSS" TextAlign="Left"
Width="38px" />
vangapally Naveen Kumar
5-Jun-12 1:50am
View
For This You have to find Enter Key
if user press enter means you can split the string other wise not
see this link for identifying keys
http://stackoverflow.com/questions/1453896/how-to-identify-the-keyboard-keys-using-c-sharp
vangapally Naveen Kumar
28-May-12 6:53am
View
in his qustion he shown one example na on that he inserting the values to next row thats why i use insert statement
vangapally Naveen Kumar
28-May-12 4:35am
View
Welcome............................
vangapally Naveen Kumar
25-May-12 3:07am
View
You`re Welcome.........
vangapally Naveen Kumar
25-May-12 2:03am
View
are you created tables in db or in page tell me first
vangapally Naveen Kumar
22-May-12 1:04am
View
First Link is the best one but it is in c# to Convert that code to vb
use this link
http://www.developerfusion.com/tools/convert/csharp-to-vb/
and convert code and use
vangapally Naveen Kumar
21-May-12 7:41am
View
welcome.........
vangapally Naveen Kumar
21-May-12 5:02am
View
welcome......
vangapally Naveen Kumar
17-May-12 3:11am
View
Deleted
Welcome......
vangapally Naveen Kumar
3-May-12 9:29am
View
you have assign session value to text box
if(session["name"]!=null)
{
textbox1.text=session["name"].tostring();
}
Show More