Click here to Skip to main content
Page 1 of 2
Page Size: 10 · 25 · 50


Author filtered by: KM Perumal [x]
Answer 8 May 2013   license: CPOL
http://wpf.codeplex.com/[^]
Answer 8 May 2013   license: CPOL
Dim result As DialogResult = MessageBox.Show("Are you sure ???","confirmation",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question)
Answer 8 May 2013   license: CPOL
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) {//bala bala }
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...
C#
Not in operator in SQL by KM Perumal
Answer 8 May 2013   license: CPOL
NOT EXISTS
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(); ...
C#
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...
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);
Answer 7 May 2013   license: CPOL
If u want store like that create a filed format as varchar
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(); }
Answer 7 May 2013   license: CPOL
CS code string strConnString = ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString;
Answer 7 May 2013   license: CPOL
HorizontalAlignment="Stretch" Margin="10" Name="listView1" VerticalAlignment="Stretch" Width="Auto" Height="Auto"
WPF
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
Answer 7 May 2013   license: CPOL
My part of answer isQuote:Programming In Ansi C, 5E - E. Balagurusamy
C
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"> ...
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
C#
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};
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);
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) { ...
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[]...
Answer 7 May 2013   license: CPOL
very Easy to retrieve contacts Use ImapX.dllhttp://imapx.codeplex.com/SourceControl/changeset/view/25740[^]
Answer 7 May 2013   license: CPOL
My Part of answerYou ll get the value of CheckPassword from web.config or app.config.
Answer 6 May 2013   license: CPOL
Its working for meprotected void btnGet_Click(object sender, EventArgs e) { CheckBox n = (CheckBox)this.appentDiv.FindControl("chk1") ; }
Answer 6 May 2013   license: CPOL
Very easy method Add ur associations type into File type editor while deploying set up
Answer 6 May 2013   license: CPOL
view thishttp://www.dotnetperls.com/global-asax[^]
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); }; ...
Answer 6 May 2013   license: CPOL
foreach (GridViewRow grdRow in GridView1.Rows){ if (((CheckBox)grdRow.FindControl("DynamicCheckBox" +grdRow.Cells[0].Text)).Checked) { // do something }}
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...
C#
Answer 3 May 2013   license: CPOL
Try thishttp://www.aspsnippets.com/Articles/Download-multiple-files-as-Zip-Archive-File-using-GridView-in-ASPNet.aspx[^]
C#
Answer 2 May 2013   license: CPOL
Change ur Style like fixedfgnhfnfvnfhfhfnfnfghngn
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(); ...
C#
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");}
C#
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...
C#
Answer 2 May 2013   license: CPOL
http://sourceforge.net/p/onvifdm/code/HEAD/tree/[^]
C#
Answer 2 May 2013   license: CPOL
Please check ur Connection string Server name and username password same or different.
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[^]
C++
Answer 2 May 2013   license: CPOL
Use Inner JoinInner join Examable[^]
Answer 2 May 2013   license: CPOL
Try thisstring date = "04-13-13 05:25PM";DateTime dt = Convert.ToDateTime(date);
C#
Answer 2 May 2013   license: CPOL
"delete from Company where CompanyName='" + cmbCompanyName.Text.ToString() + "' OR CompanyCode='" + cmbCompanyCode.Text.ToString() = "' OR Alias='" + cmbComapnyAlias.Text.ToString() + "' "
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;
Answer 2 May 2013   license: CPOL
for (int i = 0; i
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...
Answer 2 May 2013   license: CPOL
android:windowSoftInputMode="s...
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;
Answer 2 May 2013   license: CPOL
U must be select Different Values names .then only its triggered
Answer 2 May 2013   license: CPOL
http://www.gemboxsoftware.com/document/articles/c-sharp-vb-net-create-write-word[^]

Page 1 of 2
1 2


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