9,868,710 members (32,609 online)
Visit CodeProject.TV
Discuss CodeProject.TV
Sign in
Email
Password
Forgot your password?
Sign in using
home
articles
Chapters and Sections
>
Search
Latest Articles
Latest Tips/Tricks
Top Articles
Beginner Articles
Technical Blogs
Posting/Update Guidelines
Article Help Forum
Article Competition
Submit an article or tip
Post your Blog
quick answers
Ask a Question
View Unanswered Questions
View All Questions...
C# questions
ASP.NET questions
VB.NET questions
C#4.0 questions
C++ questions
discussions
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work & Training Issues
Design and Architecture
ASP.NET
JavaScript
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
Adobe Technologies
C#
Free Tools
Objective-C
Ruby On Rails
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
.NET Framework
Mobile
VS 11 & .NET 4.5
Sharepoint
Silverlight / WPF
Visual Basic
Web Development
Site Bugs / Suggestions
features
Component & Service Catalog
Competitions
News
The Insider Newsletter
Newsletter archive
Surveys
Product Showcase
Research Library
CodeProject Stuff
community
The Insider News
The Lounge
The Weird & The Wonderful
The Soapbox
Press Releases
Who's Who
Most Valuable Professionals
Company Listings
Non-English Language
>
General Indian Topics
General Chinese Topics
help
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
Site Map
Advertise with us
Employment Opportunities
About Us
The default search term operator is
AND
.
You can use brackets,
AND
,
OR
, and
NOT
to improve your search. For example:
C# AND NOT(VB or SQL)
A query of a single
*
will return everything, filtered by any filters.
Filter examples:
Search by Author
author:"author name"
Filter by tag
tag:C#
or
tag:(C++ or Java)
Wildcard search
use "?" or "*" eg.
gr?d
or
gr*
88 Results
Search
Everything
Articles
Technical Blogs
Tips & Tricks
Questions
Answers
Forum Messages
News Items
Catalog Items
Videos
Training Courses
Just My Stuff
My Bookmarks
Sort by
Relevance
Rating Asc
Rating Desc
Title Asc
Title Desc
Author Asc
Author Desc
Date Created Asc
Date Created Desc
Date Modified Asc
Date Modified Desc
Price Asc
Price Desc
Duration Asc
Duration Desc
Match
All Fields
Title
Description
Author(s)
Tags
Any Date
Last 12 hours
Last 24 hours
Last week
Last 2 weeks
Last month
Last 3 months
Last 6 months
Last year
January
February
March
April
May
June
July
August
September
October
November
December
Rating Range
All - Including Unrated
1.0 - 5.0
2.0 - 5.0
3.0 - 5.0
4.0 - 5.0
4.5 - 5.0
4.8 - 5.0
5.0
Advanced Filters:
Article Topics
All Topics
Desktop Development
Web Development
Mobile Development
Cloud Computing
Enterprise Systems
Database
Multimedia
Languages
Platforms, Frameworks & Libraries
General Programming
Graphics / Design
Development Lifecycle
General Reading
Third Party Products
Mentor Resources
Article License
All Licenses
CPOL
CDDL
Ms-PL
MPL
CPL
Eclipse
MIT
BSD
Apache
CC (ASA 2.5)
Zlib
Public Domain
CC (Attr 3U)
CC (ASA 3U)
LGPL3
GPL3
Forums
All Forums
Feature Forums
General Programming
Web Development
Product Lifecycle
Database & SysAdmin
General Discussions
Non-English Language
Catalog Category
All Categories
Books & Training
Charting & Graphing
Components, Controls, Libraries
Data Manipulation & Mining
Database Tools
Debugging
Documentation & Help
Financial, Math & Scientific
Frameworks & APIs
General Development Tools
GIS & Maps
Graphics & 3D Modeling
Hardware and Robotics
Hosting
IDEs
Imaging
Mobility
Multimedia
Networking
Performance and Profiling
Programming Languages
Project Life-cycle Management (ALM)
Reporting
Search
Security
Setup & Deploy
System Adminstration
Utilities
Virtualization
Web Design/Development
Catalog License
All Licenses
Commercial
Fully Function Evaluation version
Limited Functionality Trial
Limited Time Trial
Shareware
Free For Personal Use
Freeware
Page 1 of 2
Page Size:
10
·
25
·
50
Author filtered by: KM Perumal
[x]
Need information regarding wpftoolkit
by
KM Perumal
Answer
8 May 2013
license:
CPOL
http://wpf.codeplex.com/[^]
General Programming
»
Uncategorised Quick Answers
»
General
Windows
WPF
VB
VB.NET
Need help in confirmation message box
by
KM Perumal
Answer
8 May 2013
license:
CPOL
Dim result As DialogResult = MessageBox.Show("Are you sure ???","confirmation",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question)
General Programming
»
Uncategorised Quick Answers
»
General
Windows
WPF
VB
VB.NET
How to make sort expression work
by
KM Perumal
Answer
8 May 2013
license:
CPOL
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
GridView's RowDataBound equivalent event in Windows DataGridView
by
KM Perumal
Answer
8 May 2013
license:
CPOL
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) {//bala bala }
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
wheni run shows error as follows object reference not set to an instance of object
by
KM Perumal
Answer
8 May 2013
license:
CPOL
protected void Btn_Generate(object sender, EventArgs e) { if (ListBox1.SelectedItem == null) { Label4.Text = "select the faculty"; return; } sql = "select fa.facname,f.bfid,f.bthid,b.class,b.bthno...
General Programming
»
Uncategorised Quick Answers
»
General
C#
Not in operator in SQL
by
KM Perumal
Answer
8 May 2013
license:
CPOL
NOT EXISTS
General Programming
»
Uncategorised Quick Answers
»
General
SQL-Server
How to know dynamically created chekboxes is selected or not?
by
KM Perumal
Answer
8 May 2013
license:
CPOL
for (int i = 0; i
General Programming
»
Uncategorised Quick Answers
»
General
checkbox
how to create .xls 2003 file at specified path from datatable / dataset,
by
KM Perumal
Answer
8 May 2013
license:
CPOL
private void button8_Click(object sender, RoutedEventArgs e) { SaveFileDialog sd = new SaveFileDialog(); sd.Filter = "Excel File (.xls)|*.xls"; sd.Title = "Save File"; sd.AddExtension = true; sd.ShowDialog(); ...
General Programming
»
Uncategorised Quick Answers
»
General
C#
EMAIL ID valaidation code in jsp
by
KM Perumal
Answer
8 May 2013
license:
CPOL
Simple validation function emailcheck(str) { var at="@" var dot="." var lat=str.indexOf(at) var lstr=str.length var ldot=str.indexOf(dot) if (str.indexOf(at)==-1){ alert("Invalid E-mail ID") return...
General Programming
»
Uncategorised Quick Answers
»
General
Javascript
insert edit delete by using gridview
by
KM Perumal
Answer
8 May 2013
license:
CPOL
cmd = new MySqlCommand("delete from add2 where ID=@id", con); // Adding the parameter for deleting the record. cmd.Parameters.AddWithValue("@id", GridView1.Rows[e.RowIndex].Cells[Change Indexof ID Colunm ].Text);
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
C#
C#4.0
Date Save in Access database in different format
by
KM Perumal
Answer
7 May 2013
license:
CPOL
If u want store like that create a filed format as varchar
General Programming
»
Uncategorised Quick Answers
»
General
C#
MSAccess
how to get value in a text box to a label in another form
by
KM Perumal
Answer
7 May 2013
license:
CPOL
private void Button_Click(object sender, EventArgs e) { Form2 qu = new Form2 (textbox1.text); qu.ShowDialog();}public Form2(string l) { InitializeComponent(); label1.text=l.toString(); }
General Programming
»
Uncategorised Quick Answers
»
General
C#
.NET
How I can Capture webcam for take a photo in a picture Box to my VB .net Program?
by
KM Perumal
Answer
7 May 2013
license:
CPOL
Try thisWebcam using DirectShow.NET[^]
General Programming
»
Uncategorised Quick Answers
»
General
VB
VB.NET
how to write connection string in web.config for mysql in asp.net
by
KM Perumal
Answer
7 May 2013
license:
CPOL
CS code string strConnString = ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString;
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Windows resizing problem in wpf
by
KM Perumal
Answer
7 May 2013
license:
CPOL
HorizontalAlignment="Stretch" Margin="10" Name="listView1" VerticalAlignment="Stretch" Width="Auto" Height="Auto"
General Programming
»
Uncategorised Quick Answers
»
General
WPF
How to publish website online
by
KM Perumal
Answer
7 May 2013
license:
CPOL
Very simple in visual studio publish website Right click ur solution explorer project name and select publishThen publish method choose FTPAnd paste ur ftp Address and user name and password then click publish
General Programming
»
Uncategorised Quick Answers
»
General
Visual-Studio
WebHosting
How can i start C programming ?
by
KM Perumal
Answer
7 May 2013
license:
CPOL
My part of answer isQuote:Programming In Ansi C, 5E - E. Balagurusamy
General Programming
»
Uncategorised Quick Answers
»
General
C
Hide scrollbar Contextmenu in wpf.
by
KM Perumal
Answer
7 May 2013
license:
CPOL
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"> ...
General Programming
»
Uncategorised Quick Answers
»
General
C#
WPF
do anyone have answer for ittt!!!!!
by
KM Perumal
Answer
7 May 2013
license:
CPOL
Ya .First one you can load google search query into web browser in c#.and get all links wbBrowse.Navigate("https://www.google.co.in/search?q=XNA4.0")Then U retrieve the all links from the pages and load dynamically all linksIf u can implement prathvi
General Programming
»
Uncategorised Quick Answers
»
General
C#
Datetime invalid insert in localhost
by
KM Perumal
Answer
7 May 2013
license:
CPOL
string insert1 = "insert into tbHangNhap(DayTo,TimeNow,TenDangNhap)values(@day1,@timenow,@user)"; object[] pa1 = {"day1",DateTime.Parse(txtTimeTO.Text).ToString("MM/dd/yyyy"),"@timenow",DateTime.Now.ToString("MM/dd/yyyy");,"@user",txtuser.tex};
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
SQL-Server
Datatable passing to stored procedure
by
KM Perumal
Answer
7 May 2013
license:
CPOL
First create SqlTable Like Ur datatableThen excute following linesDataTable YouTableValues= new DataTable(); SqlBulkCopy bulkInsert = new SqlBulkCopy(strConnString); bulkInsert.DestinationTableName = "DestinationTableName" bulkInsert.WriteToServer(table);
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
C#
SQL-Server
SQL2008
C#4.0
how to check for duplicate entry in database
by
KM Perumal
Answer
7 May 2013
license:
CPOL
SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM [company] Where companyname='" + Textbox.Text.Trim() + "'", connection); DataSet ds = new DataSet(); da.Fill(ds); if (ds.Tables[0].Rows.Count == 0) { ...
General Programming
»
Uncategorised Quick Answers
»
General
Windows
VB
VB.NET
From my machine is it possible to retrieve the Systeminfo ,HostName,IP Address of other all machines working in organization. in C# Windows Application.
by
KM Perumal
Answer
7 May 2013
license:
CPOL
ManagementObjectSearcher query = newManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapterConfiguration");ManagementObjectCollection queryCollection = query.Get();foreach (ManagementObject mo in queryCollection){string[] addresses = (string[])mo["IPAddress"];string[]...
General Programming
»
Uncategorised Quick Answers
»
General
C#
C#4.0
Retrive Gmail Contacts is Not Working
by
KM Perumal
Answer
7 May 2013
license:
CPOL
very Easy to retrieve contacts Use ImapX.dllhttp://imapx.codeplex.com/SourceControl/changeset/view/25740[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
What is the use of this code line ? System.Configuration.ConfigurationManager.AppSettings["CheckPassword"];
by
KM Perumal
Answer
7 May 2013
license:
CPOL
My Part of answerYou ll get the value of CheckPassword from web.config or app.config.
General Programming
»
Uncategorised Quick Answers
»
General
.NET1.0
.NET2.0
C#1.0
.NET3.0
C#3.0
.NET3.5
C#
ASP
ASP.NET
.NET
, +
Get runtime genrated checkbox value after clicking on a button
by
KM Perumal
Answer
6 May 2013
license:
CPOL
Its working for meprotected void btnGet_Click(object sender, EventArgs e) { CheckBox n = (CheckBox)this.appentDiv.FindControl("chk1") ; }
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
open a file by double click
by
KM Perumal
Answer
6 May 2013
license:
CPOL
Very easy method Add ur associations type into File type editor while deploying set up
General Programming
»
Uncategorised Quick Answers
»
General
C#
C#4.0
How to use the Global.asax
by
KM Perumal
Answer
6 May 2013
license:
CPOL
view thishttp://www.dotnetperls.com/global-asax[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Web-Development
How to get Client Ip Address and Client Machine Name using javascript
by
KM Perumal
Answer
6 May 2013
license:
CPOL
window.onload = function () { var script = document.createElement("script"); script.type = "text/javascript"; script.src = "http://jsonip.appspot.com/?callback=DisplayIP"; document.getElementsByTagName("head")[0].appendChild(script); }; ...
General Programming
»
Uncategorised Quick Answers
»
General
Javascript
C#
C#4.0
ASP.Net-4.0
runtime checkbox in gridview
by
KM Perumal
Answer
6 May 2013
license:
CPOL
foreach (GridViewRow grdRow in GridView1.Rows){ if (((CheckBox)grdRow.FindControl("DynamicCheckBox" +grdRow.Cells[0].Text)).Checked) { // do something }}
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Create Reminder program for c# windows App
by
KM Perumal
Answer
6 May 2013
license:
CPOL
public MainWindow() {timer1.Interval = 1000;timer1.Enabled = true;timer1.Tick += new System.EventHandler (OnTimerEvent); }private void OnTimerEvent(object sender, EventArgs e){ if(DateTime.Now==Remintingtime) { Playsound(); }}private...
General Programming
»
Uncategorised Quick Answers
»
General
C#
zip multiple pdf files corresponding to selected checkbox
by
KM Perumal
Answer
3 May 2013
license:
CPOL
Try thishttp://www.aspsnippets.com/Articles/Download-multiple-files-as-Zip-Archive-File-using-GridView-in-ASPNet.aspx[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
freeze html table headers and left most column
by
KM Perumal
Answer
2 May 2013
license:
CPOL
Change ur Style like fixedfgnhfnfvnfhfhfnfnfghngn
General Programming
»
Uncategorised Quick Answers
»
General
CSS
HTML
jQuery
Flash analog clock in c#
by
KM Perumal
Answer
2 May 2013
license:
CPOL
For WPFFirst add AxInterop.ShockwaveFlashObjects.dllthen paste codeprivate void Window_Loaded(object sender, RoutedEventArgs e) { AxShockwaveFlashObjects.AxShockwaveFlash axShockwaveFlash1 = new AxShockwaveFlashObjects.AxShockwaveFlash(); ...
General Programming
»
Uncategorised Quick Answers
»
General
C#
how to pass the value through session and redirect to another page
by
KM Perumal
Answer
2 May 2013
license:
CPOL
protected void GO_Click(object sender, EventArgs e) { Session["Batch"] = textbox1.text;Session["Course"] = Dropdownlist1.text;Session["Question"] = Dropdownlist2.text;Session["Date"] = textbox2.text;Response.Redirect("/whatever");}
General Programming
»
Uncategorised Quick Answers
»
General
C#
How to add check box cell in datagridview in C# programmatically
by
KM Perumal
Answer
2 May 2013
license:
CPOL
First Create Column After Inseert ROwsDataGridViewCheckBoxColumn checkColumn = new DataGridViewCheckBoxColumn();checkColumn.Name = "X";checkColumn.HeaderText = "X";checkColumn.Width = 50;checkColumn.ReadOnly = false;checkColumn.FillWeight = 10; //if the datagridview is resized (on...
General Programming
»
Uncategorised Quick Answers
»
General
C#
Download Source code for Onvif Device Manager
by
KM Perumal
Answer
2 May 2013
license:
CPOL
http://sourceforge.net/p/onvifdm/code/HEAD/tree/[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
how to solve the instance-specific error
by
KM Perumal
Answer
2 May 2013
license:
CPOL
Please check ur Connection string Server name and username password same or different.
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Implement IMAP Search command on server
by
KM Perumal
Answer
2 May 2013
license:
CPOL
Try Imax .Dll .it ll simplifiedhttps://code.google.com/p/fethion-chatlog-backup/source/browse/trunk/ExportFethionHistory/ImapX.dll?r=2[^]
General Programming
»
Uncategorised Quick Answers
»
General
C++
gridview columns from more than one sql table
by
KM Perumal
Answer
2 May 2013
license:
CPOL
Use Inner JoinInner join Examable[^]
General Programming
»
Uncategorised Quick Answers
»
General
Gridview
Convert String to DateTime Object
by
KM Perumal
Answer
2 May 2013
license:
CPOL
Try thisstring date = "04-13-13 05:25PM";DateTime dt = Convert.ToDateTime(date);
General Programming
»
Uncategorised Quick Answers
»
General
C#
delete query in sql server depending on combo box selection
by
KM Perumal
Answer
2 May 2013
license:
CPOL
"delete from Company where CompanyName='" + cmbCompanyName.Text.ToString() + "' OR CompanyCode='" + cmbCompanyCode.Text.ToString() = "' OR Alias='" + cmbComapnyAlias.Text.ToString() + "' "
General Programming
»
Uncategorised Quick Answers
»
General
WPF
VB
VB.NET
SQL2008R2
SQL Split function with like operator
by
KM Perumal
Answer
2 May 2013
license:
CPOL
declare @param as varchar(max)declare @Pattern as varchar(max)set @param='1001-COAKPL-DL_VSP-FC_RU2-HYDRC-1001'set @Pattern = '%' +SUBSTRING( @param,1,4) + '%'SELECT ROW_NUMBER() OVER (ORDER BY RouteId) AS [S.No.],RouteId,RouteSummary FROM Ops_Route_Master WHERE RouteSummary LIKE @Pattern;
General Programming
»
Uncategorised Quick Answers
»
General
function
like
Server Error in '/vision' Application.
by
KM Perumal
Answer
2 May 2013
license:
CPOL
for (int i = 0; i
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Error On sending Email in Asp.net on My uploaded File
by
KM Perumal
Answer
2 May 2013
license:
CPOL
Use File Upload ControlMailMessage msg1 = new MailMessage();string from = "Email address";string ps = "Email Password";string sub = TextBox1.Text + "Welcome to the world of Travel!";msg1.From = new MailAddress(from, "Way2hotel");//sendermsg1.To.Add(new...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Disable SoftKeyboard in WebView in Android App
by
KM Perumal
Answer
2 May 2013
license:
CPOL
android:windowSoftInputMode="s...
General Programming
»
Uncategorised Quick Answers
»
General
Mobile
Android
How to broadcast a camera in c# website...is it necessary to have a media server for broadcasting?
by
KM Perumal
Answer
2 May 2013
license:
CPOL
U must need FMS Server like ,RTMP Server
General Programming
»
Uncategorised Quick Answers
»
General
C#
Javascript
Flash
How To Clear Text Box
by
KM Perumal
Answer
2 May 2013
license:
CPOL
This one of the wayyou need to set following two property of textbox in the following ordertextBox1.AutoCompleteMode = AutoCompleteMode.None;textBox1.AutoCompleteSource = AutoCompleteSource.None;
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
how to select rows that have same names in a column through dropdownlist
by
KM Perumal
Answer
2 May 2013
license:
CPOL
U must be select Different Values names .then only its triggered
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
how to save text to word document.
by
KM Perumal
Answer
2 May 2013
license:
CPOL
http://www.gemboxsoftware.com/document/articles/c-sharp-vb-net-create-write-word[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Page 1 of 2
1
2
First
·
Prev
·
Next
·
Last
Advertise
|
Privacy
|
Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright ©
CodeProject
, 1999-2013
All Rights Reserved.
Terms of Use
Layout:
fixed
|
fluid