15,747,059 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 Javascript questions
View C++ questions
View Python questions
View Java 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 hardy panchal (Top 17 by date)
hardy panchal
24-May-18 5:54am
View
so getting Ipaddress using
$.getJSON("http://jsonip.com/?callback=?", function (data) {
Ip = data.ip;
});
it will give correct ?
hardy panchal
22-May-18 8:43am
View
I don't want any value of element in Iframe .just want only that my browser support Iframe or not .Thats it.
hardy panchal
22-May-18 7:33am
View
I just only to know that my browser is compatible to Iframe
hardy panchal
22-May-18 7:28am
View
Itried that .but that i dont want . i need my browser support Iframe or not
Hello world!
above div is require to keep in iframe ?
$("#iframeID").contents().find("#someID").html();
this give me undefined in some browser and give error like
Cannot read property 'contents' of null
in some browser
hardy panchal
2-May-17 7:14am
View
Can you please elaborate ?
hardy panchal
2-Mar-13 5:59am
View
other Control not showing Error Only ListView Show Error.
hardy panchal
2-Mar-13 5:47am
View
still Error not solved
hardy panchal
2-Mar-13 4:17am
View
but how can i Check in Dll File
hardy panchal
16-Feb-13 2:12am
View
but i Want it on Key Up Event
hardy panchal
31-Jan-13 3:15am
View
ALTER FUNCTION [dbo].[Usp_Getdate]
(
@startDate DATETIME,
@endDate DATETIME
)
RETURNS @date TABLE
(
date datetime NOT NULL
)
AS
begin
WITH dates(Date) AS
(
SELECT @startdate as Date
UNION ALL
SELECT DATEADD(d,1,[Date])
FROM dates
WHERE DATE < @enddate
)
insert into @date
SELECT Date
FROM dates
OPTION (MAXRECURSION 0)
return
end
hardy panchal
31-Jan-13 1:34am
View
ALTER PROCEDURE [dbo].[GetDaillyAttendanceReport]
@FDate DateTime =null,
@TDate DateTime =null
AS
BEGIN
select
D.*
(case when (Presence='P') then 'P' when (Presence='A') then 'A' else '' end)as Att
from Usp_Getdate('01-01-2013','01-31-2013') a
left Join DailyAttandanceEntryMaster as D on a.date=D.date
where (@EmpID is null Or @EmpID=0 or D.EmpID=@EmpID)
And (D.Date Between @FDate and @TDate) Order by D.Date
Usp_GetDate is Function For get All Date and compare it with DailyAttendanceMaster...bt it get only match date data not all Date
hardy panchal
31-Jan-13 1:09am
View
actually sir i Did the same thing bust still it get record that it inserted on that dat not all date
hardy panchal
28-Jan-13 8:25am
View
ya.bt i want to in 3 tier architecture.....
hardy panchal
27-Jan-13 11:18am
View
it is in MVC....want C#
hardy panchal
27-Jan-13 11:18am
View
bt sir I want using datatable jquey ..
hardy panchal
11-Dec-12 7:13am
View
I am working on Web Application
hardy panchal
10-Dec-12 6:16am
View
Actually This i Want through C# Coding .
Like This
1. I Can Browse Access Database File
2.Enter Button And it Whole Data transfer to Sqlserver Database..
Using Coding
Show More