16,015,900 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 Visual Basic questions
View .NET 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 Arun Vasu (Top 33 by date)
Arun Vasu
7-Jul-17 6:08am
View
Hi,
I hope your console application is doing background work,so you can achieve the goal using window service instead of console application.
Arun Vasu
30-Jun-17 15:36pm
View
Thanks for your quick reply.
You can see both text file.. initially it's taking correct path of solution, this will change only after finishing few steps.. You can see that in this image..
https://i.stack.imgur.com/KbaJb.png
Arun Vasu
6-Jun-13 3:34am
View
Thanks for your help.
My problem is, i have huge number of Excel file. in that i want to search that text in which excel file, in which sheet, and which row that text search is found.
Arun Vasu
3-Jun-13 2:35am
View
please explain your issue little bit elaborate. then some one can help you clearly.
Arun Vasu
31-May-13 1:23am
View
My need is:
I have one web application. After One process a page shows one message box, it may successfully inserted, or updated or its return guid() value or if any exception in process it will show in that application. My requirement is i want to read that message box content using that i need to take some action. for this i need the solutions.
Arun Vasu
31-May-13 0:42am
View
while running this query what will be the output?
SELECT @UserId,@UserId,@OriginatorId,FileKey,'Account '+CAST(FileKey AS VARCHAR),-1,GETDATE(),972, -1, 0, null,NULL,NULL
FROM dbo.ApplicantDetails
GROUP BY FileKey
having FileKey IN ('8','9')
pls show me..
Arun Vasu
27-May-13 7:57am
View
thank u
Arun Vasu
27-May-13 7:57am
View
i have searched in google. i find lot of software is available. i don't want to do in other's application. i wan't to do in my app itself. give me guide line to do. if any idea
Thank you for your reply
Arun Vasu
27-May-13 7:49am
View
+5!
Good..
Arun Vasu
27-May-13 4:31am
View
use stored procedure to achieve this.
Arun Vasu
27-May-13 4:27am
View
try this
ALTER SCHEMA dbo TRANSFER jonathan.MovieData;
Arun Vasu
24-May-13 7:35am
View
use int datatype. check whether your problem is solved?
Arun Vasu
24-May-13 7:11am
View
i refer all site which you gave me.. but sorry.. i not find any exact solution
Arun Vasu
24-May-13 6:33am
View
Yes its working fine.. thank you..
Arun Vasu
24-May-13 6:17am
View
have some bug in your query pls correct it.
Arun Vasu
24-May-13 4:45am
View
give some more idea. why you need to this case. if so i can help you.
Arun Vasu
24-May-13 3:17am
View
close this discussion by mark as answer.
Arun Vasu
24-May-13 3:17am
View
now exactly correct.. well done.. keep it up
Arun Vasu
24-May-13 3:12am
View
now check it.. my updated answer
Arun Vasu
24-May-13 3:07am
View
check my solution.. is it correct? its correct then mark as answer
Arun Vasu
24-May-13 3:07am
View
NO still its not correct. check my solution
Arun Vasu
24-May-13 2:56am
View
but output is not correct or what he want?
Arun Vasu
24-May-13 1:04am
View
mathlesh shaw. Please give me the error. while you running my query.
Arun Vasu
24-May-13 0:58am
View
sorry for delay... while running the query wat error is coming? today we will fix that.. don't worry.. tell me the error.
Arun Vasu
24-May-13 0:21am
View
ok i will try and tell you.
Arun Vasu
23-May-13 23:24pm
View
IF YOU ARE SATISFIED WITH MY ANSWER THEN MARK AS ANSWER
Arun Vasu
23-May-13 23:16pm
View
No problem. Please install once again. its available in visual studio installation disk. its available in two flavour. 86 and 64 bit. install which you required. Your problem will solve.
Arun Vasu
23-May-13 8:33am
View
sorry mistakenly i said that... i am extremely sorry for that..
Arun Vasu
23-May-13 8:31am
View
sorry.. mistakenly i said..
Arun Vasu
23-May-13 8:19am
View
first he posted the answer. then after i put the answer again he update the answer. that updated information is my answer.
Arun Vasu
23-May-13 8:01am
View
what not complete? what you mean? i have check the query in my system. and i provide answer.
Arun Vasu
23-May-13 7:54am
View
don't copy other's solutions
Arun Vasu
23-May-13 3:20am
View
while you running firstProc you will get the result.
if you want that secondproc result use table variable and insert the result set into that. after that you can manipulate that.
CREATE PROCEDURE FIRSTPROC
AS
BEGIN
SET NOCOUNT ON
DECLARE @TABLE TABLE(COL1 INT, COL2 NVARCHAR(10))
INSERT INTO @TABLE
EXEC SECONDPROC
SELECT * FROM @TABLE
SET NOCOUNT OFF
END
Show More