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


Author filtered by: hiphopper0123 [x]
Answer 29 Apr 2013   license: CPOL
int rating=0;private void button1_Click(object sender, EventArgs e) { rating++; txtrating.Text = rating.toString(); }
How to avoid pop up block ? by hiphopper0123
Answer 29 Apr 2013   license: CPOL
check accepted answer
Answer 28 Apr 2013   license: CPOL
how to create set upand for the sqlserver proble use sqlserverce compact edition in your code you just have to mention connection string in your code once so there will not be any eror of path for con string or server namehere is small demonstration click here
Answer 26 Apr 2013   license: CPOL
You have to create same application using mono for ios and This is the only way
Answer 25 Apr 2013   license: CPOL
Main () and Other Methods (C# vs Java)[^]
Answer 25 Apr 2013   license: CPOL
try game development if you have interesthttp://msdn.microsoft.com/en-us/library/bb203894.aspx[^]
Answer 25 Apr 2013   license: CPOL
here is non linq waystring str=@"\\C-IMS\IMSData\Images\F1231231\3eb8b6e4-9792-4328-a246-0766e205d0a5.JPG"; string str1 = @"\\C-IMS\IMSData\Images\F5477748\97cf42d9-3ed1-4d0c-a26d-098e063871e3.JPG"; string[] strarr=new string[2]; strarr[0] = str; ...
Answer 24 Apr 2013   license: CPOL
right click on project in solution exploret.select Add diployable dependencieschecked Asp.net MVC and click ok
Remove .aspx From URL by hiphopper0123
Answer 19 Apr 2013   license: CPOL
Remove HTML or ASPX Extensionusing css remove file extension of webpageHow to remove file extension from website address?
Remove .aspx From URL by hiphopper0123
Answer 19 Apr 2013   license: CPOL
Remove HTML or ASPX ExtensionRemove File Extention from URLsHow to remove file extension from website address?
Answer 19 Apr 2013   license: CPOL
DateTime dt = Calendar1.SelectedDate; DateTime dt1 = Convert.ToDateTime(DateTime.Now.ToShortDateString()); TimeSpan t = dt1.Subtract(dt); TextBox1.Text = t.TotalDays.ToString(); TextBox2.Text = (t.Days / 365).ToString();
face recognize using PCA by hiphopper0123
Answer 19 Apr 2013   license: CPOL
Face Recognition Using PCA
C#
Answer 19 Apr 2013   license: CPOL
if (object.ReferenceEquals(ctrl.GetType, typeof(DateTimePicker)) == false & object.ReferenceEquals(ctrl.GetType, typeof(TextBox)) == false) {}
C#
Answer 18 Apr 2013   license: CPOL
string str = "hello@123:*&^789'!@#$*()_+="; int count = 0; foreach (char c in str) { if (!char.IsLetterOrDigit(c.ToString(),0)) { count++; } } ...
Creating a Confirmation Box by hiphopper0123
Answer 18 Apr 2013   license: CPOL
Yes No MessageBox In Asp.net
Answer 18 Apr 2013   license: CPOL
how to make trial applications in .NET
Answer 18 Apr 2013   license: CPOL
Html5 Progreebar you can easily add in your aspx pageAsp.net Ajax Progressbar
C#
Answer 17 Apr 2013   license: CPOL
public void read(int lineNumber) { int counter = 0; string line; System.IO.StreamReader file =new System.IO.StreamReader("D:\\test1.txt"); string newstr = null; while ((line = file.ReadLine()) != null) { ...
Answer 17 Apr 2013   license: CPOL
string filename = fileupload.FileName; int index = filename.LastIndexOf("\\"); int len = filename.Length; filename = filename.Substring(index+1,len-index-1);
Answer 17 Apr 2013   license: CPOL
int a = Convert.ToInt32(txtbox1.Text)+1;gpno = a;
C#
which is best C# or VB.Net by hiphopper0123
Answer 17 Apr 2013   license: CPOL
C# is better than VB.NET.It is my personal opinion.As far as language and features are concerned mostly both are same.
C#
chat application in asp.net by hiphopper0123
Answer 17 Apr 2013   license: CPOL
SignalR Chat with Asp.net
Answer 17 Apr 2013   license: CPOL
this is how you can call javascipt method from cs pageStringBuilder strBuilder = new StringBuilder();strBuilder.Append("");strBuilder.Append(" MethodName();");//javascript function namestrBuilder.Append("");//register...
Speech Recognition with c# by hiphopper0123
Answer 16 Apr 2013   license: CPOL
recongition system will only recognize those words which are already in the grammar file means you can not directly add names to the grammar files
Answer 16 Apr 2013   license: CPOL
How to: Compress and Extract Files[^]
Answer 16 Apr 2013   license: CPOL
.net is platform dependent it will only work on windows based operating systemsif you want to code in linux then mono.net http://www.mono-project.com/Main_Page[^] is usefull
C#
Answer 16 Apr 2013   license: CPOL
private void checkBox_CheckedChanged(object sender, EventArgs e){ var checkboxes = from c in groupBox1.Controls.OfType() where c.Checked orderby int.Parse(c.Name.Substring(8)) select c; ...
C#
Answer 16 Apr 2013   license: CPOL
http://stackoverflow.com/quest...
Answer 16 Apr 2013   license: CPOL
create new user in mysql server on server system and allow the access to the inventory database to that user and then change the username and password in your code. no need to change the code
Answer 16 Apr 2013   license: CPOL
Right-click your setup project in the Solution Explorer and pick "View -> File System".Right-click "File system on target machine" and pick "Add Special Folder -> Custom Folder".Rename the custom folder to "Common Application Data Folder." (This isn't the name that will be used for the...
Answer 16 Apr 2013   license: CPOL
http://stackoverflow.com/questions/9802095/how-to-stop-annoying-window-security-popup[^]
Answer 16 Apr 2013   license: CPOL
http://www.c-sharpcorner.com/uploadfile/sangeeta92/best-technique-of-sending-bulk-email/[^]
C#
Answer 16 Apr 2013   license: CPOL
protected void grdresult_RowCreated(object sender, GridViewRowEventArgs e) { e.Row.Cells[2].Visible = false; }
Answer 16 Apr 2013   license: CPOL
file already in use means your table from database file is open at the time of database transaction close all the tables from access database.if any of table is open from your database then application throws this exception
C#
Answer 15 Apr 2013   license: CPOL
http://msdn.microsoft.com/en-us/library/office/bb258177(v=office.12).aspx[^]
Answer 15 Apr 2013   license: CPOL
add reference of System.Drawing in your application then you can use Drawing namespace for bitmap class for your captcha image
Answer 15 Apr 2013   license: CPOL
may be this can help you [][^]
C#
Export to excel in asp.net by hiphopper0123
Answer 15 Apr 2013   license: CPOL
public static void ExportToSpreadsheet(DataTable table, string name){ HttpContext context = HttpContext.Current; context.Response.Clear(); foreach (DataColumn column in table.Columns) { context.Response.Write(column.ColumnName + ";"); } ...
Answer 15 Apr 2013   license: CPOL
didnt understand your question but if you want to update column value based on textbox thenSqlCommand sqlcom = new SqlCommand("update tablename set columnname='"+TextBox1.Text+"' where id='"+str_id+"'", sqlcon);
Answer 15 Apr 2013   license: CPOL
copy the shortcut of exe to user's startup folder elseif you have created set up of project then in setup project add new folder of startup folder and add shortcut of exe in it
Answer 15 Apr 2013   license: CPOL
use text changed event and set autpostback property to true private void textBox1_TextChanged(object sender, EventArgs e) { textBox2.Text = textBox1.Text; }
Answer 15 Apr 2013   license: CPOL
http://msdn.microsoft.com/en-us/library/aa287529(v=vs.71).aspx[^]
C#
dropdown and textbox by hiphopper0123
Answer 15 Apr 2013   license: CPOL
txtcolor.Text = ddlcolor.Text;Also check AutoPostback property checkbox of your dropdownlist in designview
Answer 4 Apr 2013   license: CPOL
what operating system are you running and on what bit 32 or 64 if your os is running on 64 bit and if you install connector of 32 bit then it will not show you in the data source connection
C#
2012 version by hiphopper0123
Forum Message 4 Apr 2013  
please upload for vs 2010
My vote of 5 by hiphopper0123

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