Click here to Skip to main content
Page 1 of 4
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.

Page 1 of 4
1 2 3 4


Advertise | Privacy | Mobile
Web01 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid