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


Author filtered by: adriancs [x]
Article 11 May 2013   license: Ms-PL
Easily add ribbon to WinForm Application for .NET Framework 2.0, 3.5, 4.0 & 4.5
Answer 2 May 2013   license: CPOL
example from what KM Perumal suggested:SELECT a.topicid, a.periodid, b.topicTitle, c.periodName FROM myTable aINNER JOIN topic b ON a.topicid = b.topicidINNER JOIN period c ON a.periodid = c.periodid;
Answer 2 May 2013   license: CPOL
function validateData() { try { var data1 = document.getElementById("txt1").value; if (data1 == "submit") { document.getElementById("Form1").submit(); } ...
Answer 2 May 2013   license: CPOL
System.Globalization.DateTimeF...
C#
Answer 2 May 2013   license: CPOL
void DoSomething(){ foreach (GridViewRow gvrow in Grid.Rows) { List lst = new List(); CheckBox chkdelete = (CheckBox)gvrow.FindControl("chkdelete"); if (chkdelete.Checked) { int usrid =...
Answer 2 May 2013   license: CPOL
private string GetSql(){ bool a = true; bool b = true; System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.AppendFormat("SELECT * FROM mytable WHERE 1 = 1"); if (a) sb.AppendFormat(" AND `aa` = 1"); if (b) sb.AppendFormat("...
Answer 2 May 2013   license: CPOL
Manually add checkbox into GridView:protected void Page_Load(object sender, EventArgs e){ if (!IsPostBack) { System.Data.DataTable dt = GetTable(); ViewState["dt"] = dt; GridView1.DataSource = dt; GridView1.DataBind(); } ...
use MSI by adriancs
Forum Message 30 Apr 2013  
Recently I'm studying how to deploy activeX component written in C# to be registered as GAC in client's computer. Later, I find out that using MSI is one of the simplest way to do that. thanks for sh
Interesting by adriancs
Forum Message 30 Apr 2013  
Hey this is interesting. Thanks for sharing. I never though that this could be so easy.
Forum Message 30 Apr 2013  
Hi, I have studied your project. The required DLLs are able to merged together into one for easy distribution. However, there is a special case in your project. There are 2 files required to run
My vote of 5 by adriancs
Forum Message 30 Apr 2013  
thanks for sharing
Forum Message 27 Apr 2013  
Hi, I have visited the website un4seen.com that you have provided. I will need to read the documentations and sample codes to use the functions in the DLL. I only concerning on the DLL embedding p
Forum Message 13 Apr 2013  
Hi, I'm not sure what is the exact problem that encounter by you. If you are convenient to share the DLL with you, I can help you to study your case.
Re: minimized ribbon by adriancs
Forum Message 8 Feb 2013  
Hi, try this: ribbon1.Minimized = true;
Re: My vote of 1 by adriancs
Forum Message 7 Feb 2013  
Yes, strongly agree! +vote to your message.
Re: Conventions by adriancs
Forum Message 6 Feb 2013  
This often happens from the management level of people, which convention is sometime fulfill their dictatorship. This type of management tends to pay more attention to the appearance of codes in stead
Forum Message 5 Feb 2013  
Comments are important. Situation/Reason 1: Work in a group. When the project is going to worked, predicted to be worked among group of programmers. It helps to communicate with eac
Forum Message 5 Feb 2013  
I have uploaded a simple project of ribbon run in xp. you can try download it. the file name is: Ribbon_XP_C#.zip find the file here >>
Forum Message 5 Feb 2013  
Hi, I have downloaded the project that you uploaded at codeplex issue tracker section of this project.... but... I'm not familiar with C++. So, not much I can guide you on this. I do have test the ri
Forum Message 5 Feb 2013  
try to use the pre-compiled dll.
Forum Message 5 Feb 2013  
There are many possibilities. and I'm not sure what exactly the problem that you are facing. It's hard to guess at the moment. try upload an sample project that presents the problem at here:
Forum Message 27 Jan 2013  
Hi, thanks for the info. :) I will retest it with you suggestion. hang on dude, I'll back to this later. thanks again.
My vote of 5 by adriancs
Forum Message 26 Jan 2013  
Excellent! thank you for the updates.
Forum Message 25 Jan 2013  
try to upload a sample project that presents the problem to here: http://officeribbon.codeplex.com/workitem/list/basic[
Forum Message 25 Jan 2013  
can you upload a sample project that presents the problem at http://officeribbon.codeplex.com/workitem/list/basic[
Answer 25 Jan 2013   license: CPOL
You need to handlepicture box's event of mousedown, mousemove, mouseupwhich capture the action of mouse click and dragging.C# PictureBox MouseDown MouseUp[^]about drawing a rectangle. C# Draw Rectangle[^]About crop and resize image:Simple Image Editor with Crop and Resize while...
Re: My vote of 5 by adriancs
Forum Message 25 Jan 2013  
Hi, thanks.
Forum Message 25 Jan 2013  
yeah, I just discovered that. I don't know why the word of "Assembly" is gone. However, I have corrected it. :) thanks dude.
Tip/Trick 25 Jan 2013   license: CPOL
Performance Comparison of For Loop and Foreach Loop
Forum Message 25 Jan 2013  
Hi, I recheck the download. I can open it. Not sure what is problem that you faced.
Forum Message 25 Jan 2013  
em...okay... can you give some examples?
Forum Message 25 Jan 2013  
Yes, you are right. will change it at a later time
Re: Vb.Net by adriancs
Forum Message 25 Jan 2013  
Hi, demo is available in VB.NET. Download available at top of this article.
Answer 23 Jan 2013   license: CPOL
textbox3.Text = textbox1.Text + textbox2.Text;
Answer 23 Jan 2013   license: CPOL
You can use javascript to build it.but, there are lots of ready made nice html control available.CKEditorFreeTextBoxmore:http://lmgtfy.com/?q=html+editor+asp.nethttp://lmgtfy.com/?q=how+to+build+html+editor
Answer 23 Jan 2013   license: CPOL
read this:Send Email from Yahoo, Gmail, Hotmail (C#)[^]
Answer 23 Jan 2013   license: CPOL
select count(*) from `table_name` where `email` = "this@email.com";this will return a value.if the value is 1 means, the email is existed once.if 2 means, existed twice.if 0 means...there, you can check the email is used or not.
C#
Answer 23 Jan 2013   license: CPOL
there is a tutorial here:http://csharp.net-informations.com/datagridview/csharp-datagridview-add-column.htm[^]or more you can get:let me google that for youhttp://lmgtfy.com/?q=c%23+datagridview+tutorial+add+column
C#
Answer 23 Jan 2013   license: CPOL
int i = 0;foreach (DataGridViewRow dgvr in itemgridview.Rows){ if (dgvr.IsNewRow) { // do nothing } else { int j = 0; if (int.TryParse(dgvr.Cells[3].Value + "", out j)) { i += j; } else { ...
C#
Answer 23 Jan 2013   license: CPOL
C# - Formatting Text in a RichTextBox by Parsing the Rich Text Format (RTF)[^]
Answer 22 Jan 2013   license: CPOL
void RefreshGender(string gender){ if (gender == "male") RadioButtonList1.Items[0].Selected = true; else if (gender == "female") RadioButtonList1.Items[1].Selected = true; else RadioButtonList1.Items[2].Selected = true;}
C#
Forum Message 22 Jan 2013  
try to have a look here: For Vs Foreach - Benchmark 2013[
Forum Message 22 Jan 2013  
I have run the similar test here: For Vs Foreach - Benchmark 2013[
Re: My vote of 3 by adriancs
Forum Message 22 Jan 2013  
Hi, I have include the ArrayList in the test. and the code is rewrite to run test more properly. and new information is updated. :)
Re: My vote of 3 by adriancs
Forum Message 22 Jan 2013  
Information updated
Forum Message 22 Jan 2013  
Yes, it is a success. I used your encryption engine and concept of encrypting the class and now making it encrypt dll into class. I have uploaded a sample here:

Page 1 of 6
1 2 3 4 5 6


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