15,991,401 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 raviprajapat (Top 28 by date)
raviprajapat
12-Apr-12 6:07am
View
Suppose A and B is friend. A and B is online. when A is open a chat window it showing his friend B. after I refresh a A chat window it sometime show B on line and some time it show offline. Where the B is already online. so why B user showing sometime online and some time offline.
raviprajapat
11-Apr-12 16:23pm
View
No! its not give any error sometime this code give user online list or some time is not.
raviprajapat
26-Dec-11 11:28am
View
i used itextsharp for fill text field in pdf file but i get this error "Document open without owner password" and i don't know owner password of the pdf file.
raviprajapat
15-Sep-11 10:52am
View
Deleted
i Used MaskedEditExtender user control a MaskedEditExtender control have wrong validation that cause of event not fire.
raviprajapat
15-Sep-11 10:26am
View
this event write on User control and that user control drag on page2
raviprajapat
15-Sep-11 10:23am
View
protected void btnGetToalHour_Click(object sender, EventArgs e)-----> i used here breakpoints to know event fire or not but debugger not reach here
raviprajapat
15-Sep-11 10:21am
View
Deleted
protected void btnGetToalHour_Click(object sender, EventArgs e)
{
TimeSheetDay TSD = new TimeSheetDay();
if (TSD.BeginingOfTime.ToString() != string.Empty && TSD.EndOfTime.ToString() != string.Empty)
{
if ((TSD.BeginingOfTime.Hour >= 8 && TSD.BeginingOfTime.Hour <= 17) && (TSD.EndOfTime.Hour >= 8 && TSD.EndOfTime.Hour <= 17))
{
//lblMessage.Visible = false;
decimal StartTime = Convert.ToDecimal(TSD.BeginingOfTime.Hour.ToString() + "." + TSD.BeginingOfTime.Minute.ToString());
decimal EndTime = Convert.ToDecimal(TSD.EndOfTime.Hour.ToString() + "." + TSD.EndOfTime.Minute.ToString());
txthour.Text = Convert.ToString(EndTime - StartTime);
}
else
{ lblMessage.Text = "Please check entered working strat time and end Time"; lblMessage.Visible = true; }
}
else
{ lblMessage.Text = "Please entered working strat time and end Time"; lblMessage.Visible = true; }
}
raviprajapat
12-Jul-11 13:44pm
View
thanks for suggesting me i get the solution just changes in web config file (<sessionstate cookieless="<b">"UseCookies" mode="InProc" timeout="25"/>)
Only change Change Cookeless to "UseCookies"
raviprajapat
12-Jul-11 13:01pm
View
i tried Google but i don't understand so that why here i am place a question for URL rewriting because of i want simple way to complete it.
raviprajapat
12-Jul-11 10:02am
View
When i Copy link after login that link i past one pc to another pc browser is also show user logged in. so what i am doing for that.
raviprajapat
11-Jul-11 16:02pm
View
Because of security purpose i want to do it.
raviprajapat
11-Jul-11 9:54am
View
i follow this process to open authenticate page after login
1) First login user name and password
2) After login Create session and put ID into Session.
3) on load of Authenticate page check IF session have id or not if have id user can access authenticate page and login status show Login Successfull.
if not have id the page redirect on Login page.
Is ok or need more detail.
Thanks.
raviprajapat
8-Jul-11 13:44pm
View
Menu item Code:-
<div id="menu" runat="server">
<table cellpadding="0" cellspacing="0">
<tr>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlHome" runat="server" NavigateUrl="Home.aspx" CssClass="menulinkdefault">Home
</td>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlAbout" runat="server" NavigateUrl="About.aspx" CssClass="menulinkdefault">About
</td>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlEngineering" runat="server" NavigateUrl="Engineering.aspx" CssClass="menulinkdefault">Engineering
</td>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlSoftware" runat="server" NavigateUrl="Software.aspx" CssClass="menulinkdefault">Software
</td>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlPermits" runat="server" NavigateUrl="Permits.aspx" CssClass="menulinkdefault">Permits/Logistics
</td>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlRecentProjects" runat="server" NavigateUrl="RecentProjects.aspx"
CssClass="menulinkdefault">Recent Projects
</td>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlContact" runat="server" NavigateUrl="Contacts.aspx" CssClass="menulinkdefault">Contact
</td>
<td style="padding: 0 5px 0 0px;">
<asp:HyperLink ID="hlManager" runat="server" NavigateUrl="JobStatus.aspx" CssClass="menulinkdefault">Manager
</td>
<td>
<asp:HyperLink ID="hlInvoice" runat="server" NavigateUrl="InvoiceDetail.aspx" CssClass="menulinkdefault">Invoice
</td>
</tr>
</table>
</div>
Css Class:-
<style type="text/css">
.menulinkdefault
{
background-color: #414141;
color: #FFF;
display: block;
float: left;
height: 18px;
text-decoration: none;
padding: 5px 9px 2px 9px;
border: 1px solid;
text-transform: uppercase;
font-size: 88%;
border-color: #787878;
}
</style>
raviprajapat
20-Jun-11 12:32pm
View
Thats not answer of my quetion.. my quetion is send mail information is save in Send item folder of the account. i do't want to add bcc in my mail.
raviprajapat
20-Jun-11 12:19pm
View
this link has error:-"The specified CGI application encountered an error and the server terminated the process."
raviprajapat
20-Jun-11 12:17pm
View
yes
raviprajapat
17-Jun-11 13:12pm
View
Not clear need more detail
raviprajapat
13-Jun-11 9:59am
View
Working ok with Password protected Excel sheet but when retrieve data from excel error occur :-"Object Reference not set to an instance of an object "
For i = 0 To xlsSheet.UsedRange.Columns.Count - 1
dataGridview1.Columns(i).Name = xlsSheet.Cells(1, i + 1).Value.ToString
Next
raviprajapat
13-Jun-11 9:59am
View
Deleted
Working ok with Password protected Excel sheet but when retrieve data from excel error occur :-"Object Reference not set to an instance of an object "
<pre>For i = 0 To xlsSheet.UsedRange.Columns.Count - 1
dataGridview1.Columns(i).Name = xlsSheet.Cells(1, i + 1).Value.ToString
Next
</pre>
raviprajapat
8-Jun-11 17:18pm
View
I tried this but there is new error occur :-"The Microsoft jet database engine cannot open the file. it is already opened exclusively by another user or you need permission to view its data"
raviprajapat
27-May-11 12:27pm
View
Yes
raviprajapat
27-May-11 10:47am
View
For example I make a Invoice Report after show report Client may able to Made a changes in Amount column of report.
raviprajapat
25-May-11 9:04am
View
i using database on other server.
raviprajapat
25-May-11 9:03am
View
thanks
raviprajapat
20-May-11 11:54am
View
cmbTCTackName = New DataGridViewComboBoxCell
dt2 = dataHandler.Filldatatable("select id, TrackSubName from MasterTrackSubItem WHERE (IsDelete=0 or IsDelete IS NULL) AND TrackName='" & grvPermitsRequiredInspection.Item("cmbTrack", roIndex).Value.ToString.Trim & "'")
cmbTCTackName.DataSource = dt2
cmbTCTackName.DisplayMember = dt2.Columns("TrackSubName").ToString
cmbTCTackName.ValueMember = dt2.Columns("Id").ToString
grvPermitsRequiredInspection(5, roIndex) = cmbTCTackName
raviprajapat
20-May-11 11:53am
View
Deleted
<pre>cmbTCTackName = New DataGridViewComboBoxCell
dt2 = dataHandler.Filldatatable("select id, TrackSubName from MasterTrackSubItem WHERE (IsDelete=0 or IsDelete IS NULL) AND TrackName='" & grvPermitsRequiredInspection.Item("cmbTrack", roIndex).Value.ToString.Trim & "'")
cmbTCTackName.DataSource = dt2
cmbTCTackName.DisplayMember = dt2.Columns("TrackSubName").ToString
cmbTCTackName.ValueMember = dt2.Columns("Id").ToString
grvPermitsRequiredInspection(5, roIndex) = cmbTCTackName</pre>
raviprajapat
20-May-11 8:55am
View
_value = CType(sender.selecteditem, Integer) <-----
here i get this error
Conversion from type 'DataRowView' to type 'Integer' is not valid.
raviprajapat
20-May-11 8:54am
View
Deleted
<pre>_value = CType(sender.selecteditem, Integer)
</pre>
here i get this error...
Conversion from type 'DataRowView' to type 'Integer' is not valid.
Show More