15,991,462 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 Rohit Kumar Mumbai (Top 23 by date)
Rohit Kumar Mumbai
4-Apr-13 7:18am
View
Which API you are using? Do you want to use window service to use API And send/Receive SMS?
Rohit Kumar Mumbai
30-Mar-13 3:17am
View
Please Clearify your Question.
Rohit Kumar Mumbai
29-Mar-13 1:46am
View
Where are you stuck?
Rohit Kumar Mumbai
25-Mar-13 10:02am
View
Can you please explain how you are using console application to Get Web Page URL?
Which URL you are trying to get from console application?
Rohit Kumar Mumbai
25-Mar-13 8:49am
View
Try Like this :- listView1.SelectedItems[0].SubItems[2].Text.
Rohit Kumar Mumbai
25-Mar-13 6:39am
View
What do you exactly want prasad?
Rohit Kumar Mumbai
25-Mar-13 6:21am
View
Cheers Mate :)
Rohit Kumar Mumbai
25-Mar-13 5:25am
View
Cheers :) Seems issue with spli[ReadAllActionLines]..
Rohit Kumar Mumbai
22-Mar-13 13:45pm
View
You Can Just add Above proxy class into your project. and write below code..
IService_Chat ObjServChat = new Service_ChatClient();
objServChat.SendMessage("","");
Like this.
Try this if not able to do then please let me know.
Cheers .
Rohit Kumar Mumbai
22-Mar-13 9:32am
View
You want sample of asp.net or winform?
Rohit Kumar Mumbai
22-Mar-13 9:10am
View
Ya Fortran_77 you are right. hope it solves your query .
Cheers Mate.
Rohit Kumar Mumbai
22-Mar-13 8:52am
View
Requirement is not clear, please elaborate.
Rohit Kumar Mumbai
22-Mar-13 4:54am
View
Where exactly you are getting error:-
this.Hide();
form2.Show();
Should work.
Try to debug and give exact exception.
Rohit Kumar Mumbai
22-Mar-13 2:53am
View
Can you please paste exact code where you are getting the exception?
Rohit Kumar Mumbai
22-Mar-13 2:40am
View
See if you want to use [0] with Dataset then you can check using :-
if(dsRes .Tables.count > 0)
{
foreach (DataRow dr in dsRes.Tables[0].Rows)
{
ListItem li = new ListItem();
if (temp != dr[2].ToString())
{
li = new ListItem(dr[2].ToString(), dr[0].ToString());
drditem1.Items.Add(li);
drditem2.Items.Add(li);
drditem3.Items.Add(li);
drditem4.Items.Add(li);
drditem5.Items.Add(li);
drditemB1.Items.Add(li);
drditemB2.Items.Add(li);
drditemB3.Items.Add(li);
drditemB4.Items.Add(li);
drditemB5.Items.Add(li);
}
li = new ListItem("-----" + dr[1].ToString(), dr[0].ToString());
drditem1.Items.Add(li);
drditem2.Items.Add(li);
drditem3.Items.Add(li);
drditem4.Items.Add(li);
drditem5.Items.Add(li);
drditemB1.Items.Add(li);
drditemB2.Items.Add(li);
drditemB3.Items.Add(li);
drditemB4.Items.Add(li);
drditemB5.Items.Add(li);
temp = dr[2].ToString();
}
}
Rohit Kumar Mumbai
21-Mar-13 7:02am
View
Given links are Not useful, i am not able to implement. please provide some another solution.
Rohit Kumar Mumbai
21-Mar-13 5:35am
View
Thanx Abhinav S. I will try.
Rohit Kumar Mumbai
19-Mar-13 7:46am
View
Try adding:
Thread.CurrentThread.SetApartmentState(ApartmentState.STA);
Immediately before your call to SetText.
Rohit Kumar Mumbai
19-Mar-13 7:36am
View
Seems its related to your PC Configuration Issue.. Doesnt look like memory Leak. Please try running same code on Another pc .
Rohit Kumar Mumbai
19-Mar-13 6:07am
View
Hi Harsha,
Please try the solution provided at the below link:-
http://stackoverflow.com/questions/10014126/using-timer-within-windows-service
Rohit Kumar Mumbai
19-Mar-13 4:26am
View
Please follow the steps mentioned in the below link :-
http://www.asp.net/ajax/documentation/live/tutorials/intrototimercontrol.aspx
Rohit Kumar Mumbai
18-Mar-13 9:51am
View
Can you please debug this code and check data in sql variable before calling InserAccessData, and provide the same here?
Rohit Kumar Mumbai
18-Mar-13 8:53am
View
Could you please clarify your question?
Show More