15,669,133 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 Python questions
View Javascript questions
View C++ 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 Sumit Kumar Singh India (Top 35 by date)
Sumit Kumar Singh India
28-May-14 10:11am
View
When i put in body then only this happened. When i put this javascript code in head then its not called automatically but the c# function not working in head.
Sumit Kumar Singh India
27-May-14 16:43pm
View
When i have pressed on the link, alert is coming. But when it is called automatically alert not coming and c# function ELearn.SetUserLanguage called. I am not able to find where is the fault.
Sumit Kumar Singh India
17-Dec-13 4:28am
View
I have done INSERT statement as you mentioned but still same problem.
Sumit Kumar Singh India
17-Dec-13 4:23am
View
34 parameters in SP and and i am passing 34 parameters. Its working if 5 or 6 fields filled and rest are empty. but i filled all fields then this error coming.
Sumit Kumar Singh India
17-Dec-13 4:09am
View
No i did not see any error.
Sumit Kumar Singh India
17-Dec-13 3:36am
View
Yes i got this error "Procedure or function AddEnquiry has too many arguments specified."
Sumit Kumar Singh India
19-Nov-13 22:58pm
View
SELECT d.[Text], t.[time], d.control_id
FROM DescriptionTable AS d INNER JOIN TimeTable AS t ON d.control_id = t.control_id
I have try above query but its showing below result set
hi 67 17
hhh 67 17
hi 12 17
hhh 12 17
Sumit Kumar Singh India
6-Nov-13 17:04pm
View
I am not able to understand which .jar file I have missing. and where I need to add it. As I have already added Google Play Service.
Can you suggest me plz?
Sumit Kumar Singh India
6-Nov-13 16:56pm
View
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
The above lines showing error "com.google.android.gms cannot be resolved"
Sumit Kumar Singh India
12-Jul-13 14:03pm
View
I have 4 div as a tab each div has a iframe. First iframe contains two another iframe. I want make active 2 tab(f2) from inner iframe.
Sumit Kumar Singh India
12-Jul-13 12:55pm
View
Now i am able to get iframe using this code
var frm1 = window.parent.window.document.getElementsByTagName("iframe");
but still not able to activate iframe.
Sumit Kumar Singh India
12-Jul-13 12:25pm
View
Means i have a button in page2.php which is src of f11 iframe( its a inner iframe of f1 iframe), requirement is that onclick of button f2 iframe should be active
Sumit Kumar Singh India
3-May-13 5:22am
View
I want it web application. User can register and then upload emailid list and click on send.
Sumit Kumar Singh India
3-May-13 4:45am
View
MS Sql Server 2005
Sumit Kumar Singh India
13-Apr-12 11:22am
View
Thank you so much!! Its working fine.
Sumit Kumar Singh India
13-Apr-12 1:59am
View
Could you tell me where write this code
Sumit Kumar Singh India
25-Jan-12 10:47am
View
Thank you so much!
Sumit Kumar Singh India
31-Dec-11 23:32pm
View
actually i have written some code for caparison of data but its not working when user delete a record. any sample demo or code?
Sumit Kumar Singh India
26-Dec-11 13:58pm
View
actualy did somthing but that's not working properly, when i changed the image my desktop screen become blue screen nothing else and i already searched on google but i don't got same code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.IO;
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
[DllImport("user32.dll")]
private static extern bool SystemParametersInfo(uint uiAction, uint uiParam, string pvParam, uint fWinIni);
const uint SPI_SETDESKWALLPAPER = 0x14;
const uint SPIF_UPDATEINIFILE = 0x01;
private void Form2_Load(object sender, EventArgs e)
{
}
public void SetDWallpaper(string path)
{
//SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, path, SPIF_UPDATEINIFILE);
SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, path, SPIF_UPDATEINIFILE);
}
//private void btnset_Click(object sender, EventArgs e)
//{
// SetDWallpaper(fname);
//}
string fname = "";
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog obj = new OpenFileDialog();
if (obj.ShowDialog() == DialogResult.OK)
{
pictureBox1.Image = Image.FromFile(obj.FileName);
fname = obj.FileName;
}
}
private void button2_Click(object sender, EventArgs e)
{
SetDWallpaper(fname);
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
}
}
kindly help me it's urgent
Sumit Kumar Singh India
26-Dec-11 13:53pm
View
Window Form
Sumit Kumar Singh India
21-Dec-11 2:41am
View
Dear koolprasad,
This is working fine!! Thanks a lot.
but right now i am facing another problem
i want to get value for body from html text control and i tried following code:
//var name=document.getElementbyId("txtName");
var txtN = document.getElementById ('[txtName]');
alert(txtN.value);
but it's does not working, could you help me please.
Sumit Kumar Singh India
17-Dec-11 22:41pm
View
Dear Mehdi,
Actualy i have a table attendancelogrecord i want to create .bck backup file so that no one can change it and as per need i import it.
so please tell me how to create it
Sumit Kumar Singh India
15-Dec-11 3:01am
View
Ok.
Thank you!
Sumit Kumar Singh India
15-Dec-11 2:31am
View
Dear koolprasad,
I have already upload it on server and error occurs on serer not on loaclhost.
After deletion of site folder have to upload on server again?
Sumit Kumar Singh India
14-Dec-11 5:20am
View
nice one!
thanks you.
Sumit Kumar Singh India
14-Dec-11 3:22am
View
thank you nice link!
Sumit Kumar Singh India
9-Dec-11 4:01am
View
Thank you so much this is very helpful.
Sumit Kumar Singh India
29-Nov-11 5:07am
View
thanks you so much!!!!
Sumit Kumar Singh India
24-Sep-11 5:22am
View
Actually i want to host my site and i want to use database on remote server. no any exception occurs but no data found in database so i think i have to import database but i dont know how?
Sumit Kumar Singh India
24-Sep-11 5:22am
View
Actually i want to host my site and i want to use database on remote server. no any exception occurs but no data found in database so i think i have to import database but i dont know how?
Sumit Kumar Singh India
24-Sep-11 5:21am
View
<add name="ConnectionString" connectionstring="Data Source=[IP/ServerName],[RemotePort];Initial Catalog=[DBName];Persist Security Info=True;User ID=[username];Password=[password]" providername="System.Data.SqlClient">
Sumit Kumar Singh India
24-Sep-11 5:20am
View
Actually i want to host my site and i want to use database on remote server.
after settin following same problem(not exception error but no data found in database so i think i have to import database but i dont know how?)
<add name="ConnectionString" connectionstring="Data Source=[IP/ServerName],[RemotePort];Initial Catalog=[DBName];Persist Security Info=True;User ID=[username];Password=[password]" providername="System.Data.SqlClient">
Sumit Kumar Singh India
9-Sep-11 3:02am
View
Hi Syed Salman Raza Zaidi,
still it not working. if i send simple text it worked fine but not with html content.
Sumit Kumar Singh India
9-Sep-11 3:00am
View
Hi MaulikDusara,
for this code we need to System.Web.Mail namespace and it not working in my project, i don't know why
Sumit Kumar Singh India
9-Sep-11 2:34am
View
Hi!
still same problem. i think i not have access in this folder, but i don't know hot to fix it
Show More