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


Author filtered by: Jαved [x]
Answer 28 Apr 2013   license: CPOL
Hi,Go through this-Creating a Form That Doesn't Take Focus[^]
Answer 28 Apr 2013   license: CPOL
Hi,The problem is with your Button4_Click event. Check the Code in the event. If any problem persist please contact.Thanks.
Answer 27 Apr 2013   license: CPOL
Hi,Go through these-.NET Code Conversion - Convert your code[^]Code Convert Visual Studio Add-in for C# and VB.NET[^]
Answer 12 Apr 2013   license: CPOL
hi try this,using System.Diagnostics;Process me = Process.GetCurrentProcess();foreach (Process p in Process.GetProcesses()){ if (P.Id != me.Id) // CHANGE me.Id to explorer PID P.CloseMainWindow(); // Sends WM_CLOSE; less gentle methods available too}
Forum Message 11 Apr 2013  
No. I cant thats why i asked. ◘ "Everyone wants results, but no one is willing to do what it takes to get them" - Dirty Harry ◘ ►
Forum Message 8 Apr 2013  
But there are messages and comments which has been voted. here- http://www.codeproject.com/script/Surveys
My vote of 5 by Jαved
Forum Message 8 Apr 2013  
Excellent article and very well written.
Forum Message 8 Apr 2013  
I can't vote comments in articles and questions why? ◘ "Everyone wants results, but no one is willing to do what it takes to get them" - Dirty Harry
My vote of 5 by Jαved
Forum Message 8 Apr 2013  
Excellent article!
Re: My vote of 3 by Jαved
Forum Message 8 Apr 2013  
So you are rating 3 only because you don't like the background? ◘ "Everyone wants results, but no one is willing to do what it takes to get them" - Dir
Answer 19 Mar 2013   license: CPOL
Hi,You cannot make one column as readonly if datagridview on a whole is set as readonly.So, firstly you need to set that to dataGridView1.ReadOnly =false;than set all the columns in your code as readonly.foreach (DataGridViewColumn dgvc in dgSearchedResults.Columns) ...
Answer 8 Mar 2013   license: CPOL
Hi,Go through this-vb.net_crystal_report_step_by_step.htm[^]How to Load and Display Crystal Reports in VB.NET[^]
VB
Answer 7 Mar 2013   license: CPOL
try this,var hours = (datevalue1 - datevalue2).TotalHours;
Answer 7 Mar 2013   license: CPOL
hi, go through this,asp-net-table-borders[^]
C#
Answer 7 Mar 2013   license: CPOL
Hi,go through this-Gridview row Deleteing[^]the-gridview-fired-event-rowediting-which-wasnt-handled[^]
Answer 7 Mar 2013   license: CPOL
Hi, For this you should Comapre the value of textBox2 with textBox1 in the textBox2_textChanged() eventex.textBox2_textChanged(Object sender, Eventargs e){ int a=int.parse(textBox1.text); if (textBox1.Text > a) { MessageBox.Show("You cannot enter value greater...
Answer 26 Feb 2013   license: CPOL
Hi,Go through this-rdlc-report-generation-using-dataset/[^]http://msdn.microsoft.com/en-us/library/ms252067%28v=vs.80%29.aspx[^]
Answer 26 Feb 2013   license: CPOL
Not related. go here- http://www.codeproject.com/KB/FAQs/[^]
Answer 26 Feb 2013   license: CPOL
Hi,Go through this-Convert-Rupee-Value-Words-in-crystal-report.aspx[^]Same question on CodeProject-How to convert number to words in Crystal Reports [^]
Answer 18 Feb 2013   license: CPOL
Hi,Try hiding the main window of the App1.VB.suppose app1's main form is form1Form1.Hide()C#suppose app1's main form is form1Form1.Hide();
My vote of 5 by Jαved
Forum Message 17 Feb 2013  
Very well explained!
Answer 15 Feb 2013   license: CPOL
Hi,Fill dataset with your data and pass it to below function-private void LoadList(DataSet _DataSet){ // Get the table from the data set DataTable dtable = _DataSet.Tables["table_name"]; // Clear the ListView control listView1.Items.Clear(); // Display items in...
C#
Answer 15 Feb 2013   license: CPOL
Hi,Try this-private DataTable GetCurrentMembers(){AppSQL app1 = new AppSQL(System.Configuration.ConnectionStrings["MyconnectionString"].ConnectionString);string SqlText = @"select count(*) from memberwhere activemembers = 0 and pID = " + _pidDataSet ds = new...
Answer 15 Feb 2013   license: CPOL
Hi,Use TextChanged event of Textbox-ex.private void textBox1_TextChanged(object sender, EventArgs e){ bs.Filter = string.Format("field1 LIKE '%{0}%'", textBox1.Text);}
C#
Answer 15 Feb 2013   license: CPOL
Hi,Go through this-Save Image/Picture from C# Object into Oracle BLOB[^]Insert /retrieve an image into/ from a blob field in Oracle database using C#.Net[^]
Answer 14 Feb 2013   license: CPOL
Hi,Go through this-Uploading and downloading files to/from a SQL Server database[^]
Awesome... by Jαved
Forum Message 14 Feb 2013  
Great job Meshack always :thumbsup:. You rock man! :cool: ◘ "Everyone wants results, but no one is willing to do what it takes to get them" - Dirty Har
Answer 13 Feb 2013   license: CPOL
this problem may come if your Server Name / Database Name is different from what u have selected at design timeTo solve this problem-Imports CrystalDecisions.SharedImports CrystalDecisions.CrystalReports.EnginePublic Shared Sub Sub_CRCrystalLogon(ByRef rpt As...
Answer 13 Feb 2013   license: CPOL
Hi,Go through this-XML File Parsing in VB.NET[^]
Answer 13 Feb 2013   license: CPOL
Hi,Go through these-DCT Implementation in C# (DCT of Image)[^]
Answer 12 Feb 2013   license: CPOL
Hi,Go through this-Streaming videos from SQL[^]
Answer 12 Feb 2013   license: CPOL
Higo through this-find-out-the-real-file-type[^]
Answer 12 Feb 2013   license: CPOL
Hi,Try this-VB-Dim dt As New DataTable()dt = TryCast(dataGridView1.DataSource, DataTable)C#DataTable dt = new DataTable();dt = dataGridView1.DataSource as DataTable;
Answer 12 Feb 2013   license: CPOL
Hi,Try this-Dim dt As New DataTable()dt = TryCast(dataGridView1.DataSource, DataTable)
Answer 12 Feb 2013   license: CPOL
There are three ways of applying the property to a web page.You can set it programmaticallyPage.MaintainScrollPositionOnPostBack = TrueIn the page declarationOr in the web.configs section.
Answer 12 Feb 2013   license: CPOL
Go through this-XML File Parsing in VB.NET[^]
Answer 12 Feb 2013   license: CPOL
try doing this-CrystalDecisions.Shared.SpecialVarType.PrintDateOr by using RAS:CrystalDecisions.ReportAppServer.DataDefModel.CrSpecialFieldTypeEnum.crSpecialFieldTypePrintDate
Answer 12 Feb 2013   license: CPOL
http://www.developerfusion.com/code/3940/random-numbers-that-work/[^]random-numbers[^]generating-random-numbers[^]
Answer 7 Feb 2013   license: CPOL
Hi,Go through these links-Backing up an SQL Database in C#[^]MSDN take backup of database in c#[^]code-in-c-to-create-a-backup-of-a-database-in-sql-server-and-restore-it[^]
Answer 7 Feb 2013   license: CPOL
Hi,Create one Procedure which updates your controls. write update code in this procedure. In update, Insert, Delete Button's click event call this Procedure.Ask if any help needed.
Answer 25 Sep 2012   license: CPOL
Hi,Go through this article on CodeProject-Insert, Update, Delete in ASP.NET Gridview, DataSource as SQL Server, MS Access (mdb/accdb), XML and Framework as 2.0 / 3.0 / 3.5 / 4.0 (VS 2005/2008/2010)[^]
Answer 25 Sep 2012   license: CPOL
Hi,Here is the code-Dim con As New OleDbConnection(connection_String) Dim Query As String = "select * from table_name where date_column='" & getdate() Dim Da As OleDbDataAdapter Ds As New DataSet Dtb As New System.Data.DataTable con.Open() Da...
Answer 25 Sep 2012   license: CPOL
Hi,Go through these articles on CodeProject-Pan/scroll an image in VB.NET[^]Pan and Zoom Very Large Images[^]
My vote of 5 by Jαved
Forum Message 7 Sep 2012  
5 from me.
My vote of 5 by Jαved
Forum Message 17 Aug 2012  
Very well explained. 5
Forum Message 17 Aug 2012  
Glad it helped. :) ◘ "Everyone wants results, but no one is willing to do what it takes to get them" - Dirty Harry ◘ ►
My vote of 2 by Jαved
Forum Message 10 Aug 2012  
Whats new in this article? There are already so many articles on Codeproject regarding this topic.
Answer 31 Jul 2012   license: CPOL
Hi,For more details go through this link-Introduction to MDI Forms with C#[^]developing mdi appplications incsharp.aspx[^]
C#
Answer 29 Jun 2012   license: CPOL
Hi,Go through this- Webcam Control[^]
C#

Page 1 of 7
1 2 3 4 5 6 7


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