Click here to Skip to main content
Page 1 of 18,621
Page Size: 10 · 25 · 50


License filtered by: The Code Project Open License (CPOL) [x]
Question 14 May 2013   license: CPOL
There are two events. One is ValueChanged and another one is TextChanged If value is changed then I can do something that is my need actually But following two conditions getting same error How to know the value is changed or not? if (datetimepicker.ValueChanged == true) ...
Answer 14 May 2013   license: CPOL
You can't use them like that. They're events - not properties. You need to add an eventhandler. Something like:public partial class Form1 : Form{ private bool dateChanged = false; public Form1() { dateTimePicker1.ValueChanged += new...
Question 14 May 2013   license: CPOL
Hi,This is my view Does the school have staff houses? @Html.RadioButtonFor(model => model.charSchoolHaveStaffHouses, "Y", new { onclick = "StaffHouses_Click()", name = "rdoSchStaffHostel", id = "rdoSchStaffHousesY" })Yes ...
MVC
Question 14 May 2013   license: CPOL
hi m new to the dynamics CRM 2011. and i want to show all accounts using custom button which i have already added at the main ribbon. now i want to show all accounts when user click button.please help me in this regardThnx in advance.
Question 14 May 2013   license: CPOL
hi alli have to remove decleration from existing xml using c# i.e
Question 14 May 2013   license: CPOL
Please help me in solving the error . My Problem is I actually getting xml String from Web service,i am storing that string into XML File and reading the file using xml.reader();But will getting the string from web service if there is empty xml node the node is geting in single tag...
Answer 14 May 2013   license: CPOL
"is it posible to take reference to c#."Yes. You can use assemblies from any .NET language in any other .NET language."how to get dll or reference file."Right click your project, and select "Add Reference". It's pretty obvious from there, but the exact details will depend on your...
C#
Question 14 May 2013   license: CPOL
hello, Developers?I need help on how to make the user of a computer an owner of a particular database using TSQL.
Answer 14 May 2013   license: CPOL
http://stackoverflow.com/questions/10477184/pure-css-vertical-menu-with-submenu[^]http://www.welovecss.com/showthread.php?t=922[^]
Article 14 May 2013   license: CPOL
Introduction to Boost Multiprecision Library
Answer 14 May 2013   license: CPOL
Hi, just to add to Sergey's solution, if you use FlowDocument for your GUI than try this C# Word component. With it you can easily implement your business layer for manipulating in .NET docx files.
Answer 14 May 2013   license: CPOL
"ok but please give me url of page where i can ask question ."You mean you can't find the "support" link all on your own? :WTF:Try here: http://www.nopcommerce.com/boards/default.aspx[^]Or here: http://www.nopcommerce.com/p/541/nopcommerce-premium-support-services.aspx[^]
C#
Answer 14 May 2013   license: CPOL
Just change your SQL statement from select Sch_Date,session,Faculty_Code from Tb_SCh_TIme_Table where course = 'cl2'; to select Sch_Date,session,Faculty_Code, Comments from Tb_SCh_TIme_Table where course = 'cl2';You just need to add the comments field.
C#
Answer 14 May 2013   license: CPOL
I prefer to use Common Table Expressions[^]:DECLARE @tdata TABLE (grp INT, val INT)DECLARE @dtmp TABLE (grp INT, val INT)INSERT INTO @tdata (grp, val)VALUES(301, 1)INSERT INTO @tdata (grp, val)VALUES(301, 2)INSERT INTO @tdata (grp, val)VALUES(301, 5)INSERT INTO @tdata (grp,...
Answer 14 May 2013   license: CPOL
string a = "1,2,3,4"; string b = "2,3,4,5"; string[] a_array = a.Split(','); string[] b_array=b.Split(','); var c = b.Except(a).ToList(); string result=""; foreach (var item in c) { result =...
C#
Answer 14 May 2013   license: CPOL
Your recording device already produces binary streams, I suppose. You should read the device documentation for finding out what is the format used, study it and then develop an algorithm able to extract the needed data.
C++
Question 14 May 2013   license: CPOL
firstly I describe situation:From web page if i insert record successfully then no problem but if some error occur like email id already exist then it focus to the email id text box rather then other.In .aspx ...
Answer 14 May 2013   license: CPOL
HiHRESULT: 0x8002000B (DISP_E_BADINDEX)) this means invalid index, so within your for loop you are accessing a index that doesn't exists.1) check where the index is going wrong;2) make sure the cell is converted to range as below// Export titlesfor (int j = 0; j
C#
Answer 14 May 2013   license: CPOL
Try this, it works for me, should work for u.protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e) { GridViewRow row = GridView1.Rows[e.RowIndex]; string constr = ConfigurationManager.ConnectionStrings["connstr"].ToString(); ...
C#3.0C#
Answer 14 May 2013   license: CPOL
this is my code there is two events one is ValueChanged and another one is TextChanged if value is changed then i can do something that is my need actuallybut following two conditions getting same error how to know the value is changed or notif (raddtpJan.ValueChanged==true) ...
C#
Question 14 May 2013   license: CPOL
i am using Google_Client api to get all user info.but i want to get all image from that user .??
Question 14 May 2013   license: CPOL
Hi Friends, i want to use vb console appliaction functions to c# code. is it posible to take reference to c#.1. how to get dll or reference file.2.is it posible to create dll file3. pls give some sample code vb console application inside add(),sub() Mul() functionto c#...
C#
Answer 14 May 2013   license: CPOL
The compiler will not allow the declaration of object d because CCircle is an abstract class; it inherited the pure virtual function f()from AB. The compiler will allow the declaration of object d if you define function CCircle ::area().Note that you can derive an abstract class from a...
C++

Page 1 of 18,621
1 2 3 4 5 6 7 8 9 10


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