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


Category filtered by:  General Programming [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) ...
General Programming » Uncategorised Quick Answers » General
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...
General Programming » Uncategorised Quick Answers » General
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 ...
General Programming » Uncategorised Quick Answers » General
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.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
hi alli have to remove decleration from existing xml using c# i.e
General Programming » Uncategorised Quick Answers » General
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...
General Programming » Uncategorised Quick Answers » General
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...
General Programming » Uncategorised Quick Answers » General
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.
General Programming » Uncategorised Quick Answers » General
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[^]
General Programming » Uncategorised Quick Answers » General
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.
General Programming » Uncategorised Quick Answers » General
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[^]
General Programming » Uncategorised Quick Answers » General
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.
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
Have you tried with W2A & A2W convertion
General Programming » Uncategorised Quick Answers » General
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,...
General Programming » Uncategorised Quick Answers » General
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 =...
General Programming » Uncategorised Quick Answers » General
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.
General Programming » Uncategorised Quick Answers » General
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 ...
General Programming » Uncategorised Quick Answers » General
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
General Programming » Uncategorised Quick Answers » General
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(); ...
General Programming » Uncategorised Quick Answers » General
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) ...
General Programming » Uncategorised Quick Answers » General
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 .??
General Programming » Uncategorised Quick Answers » General
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#...
General Programming » Uncategorised Quick Answers » General
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...
General Programming » Uncategorised Quick Answers » General
C++
Answer 14 May 2013   license: CPOL
On server name select the appropriate instance.Also refer to below linkCannot connect to local SQL Server with Management StudioTry starting the sql server services manually. type services.msc in search box,hit enter.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
my Professor assigned me a project of voice recognition system . to complete this project i need a software that will record our sound waves and represent them in binary . this system will help build a system which codded in c++ and input taken from software "I NEED SUGGESTION FOR SOFTWARE ASAP/ !"
General Programming » Uncategorised Quick Answers » General
C++
Answer 14 May 2013   license: CPOL
You can use simple gridview to display the reports or you can use Crystal Reports or Dev Express Xtra Reports.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Query as follows; select Sch_Date,session,Faculty_Code from Tb_SCh_TIme_Table where course = 'cl2'; when i execute the above query,output as follows in Ms access...
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
What trouble exactly? Be specific.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hi,Can we schedule any batch job which will set the console application to check the status of all scheduled tasks in remote machine and based on the status if will fire email to achieve below requirement.1.Need to schedule a job in remote machine.Get all scheduled jobs in windows task...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
i am using this codecode:if (datetimepicke.ValueChanged==true)Error:can only appear on the left hand side of += or -=getting this error
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
When overriding virtual methods you have to make sure that the method signatures exactly match. Change fromQuote:float virtual area() { return 3.14*fRadius*fRadius; }tovirtual float area() const { return 3.14*fRadius*fRadius; }
General Programming » Uncategorised Quick Answers » General
C++
Answer 14 May 2013   license: CPOL
This Link helps me to deploy.... :)Complete Procedure defined in simple and precise words along with the snaps... :)http://learningsqlserver.wordpress.com/2011/02/13/how-can-i-open-mdf-and-ldf-files-in-sql-server-attach-tutorial-troublshooting/[^]
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
HiI need to connect Linq with MySQL .I am using visual studio 2010.please provide me with sample procedure or sample links to follow.Thanks in advanceThanksSophia Ranjani.E
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
The web knows it all[^]
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
There is no direct answer for this. You have to consider what business do you know, what technology do you know, can you find good developers in that area for a specific language, etc, etc. It sounds like you really need to do some more research on the issue.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hello . . .how to remove unwanted payment folder from nopCommerce ?Please Help me. . .
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
Dumps can be found using google.com, but there is a reason they use the word "dumps." You really need to learn the material. This site does not have dumps. Please refer to google.com for them.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
I assume your receiving thread is a worker thread and has therefore no message loop. The common solution is to use events to signal such threads that some special action should be performed. Inside the while loop use WaitForMultipleObjects() to check for events from I/O operations and those...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
As far as I know, you can't run a windows application directly from the cloud. For that, it has to be a web application or a service, I think.But you CAN deploy a windows application through the cloud using clickonce....
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi Friendsclass VideoCaptureDevice, DesiredFrameSize property is not working for me, tell me where is mistake in (1)? same as (1) problem I also want to set custom DesiredFrameRate property. (1):videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I have a single server multiple client udp application. There is a single thread (thread#1) with a single socket (socket#1) to receive data from client#1 continuously. The task of this receiving thread is to continuously receive data at its socket.I have a button which says "Send data to...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Allotment table as follows in Ms access database Sdate Period Staff 14/5/2013 1 TR 14/5/2013 2 MD 15/5/2013 1 SG 15/5/2013 2 GV from the above Allotment table, i want the output as follows in ms access database ...
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
[EDIT #1]OK, i understand now. You need to add 2 columns for each file:file1Col1 | file1Col2 | file2Col1 | file2Col2 | file3Col1 | file3Col2 ... fileNCol1 | fileNCol2 and load data into these columns.Steps to do (logic):1) create datatable object 2) in a loop -> add columns 3) in a...
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
Never, ever, accept code from a insecure website to handle anything to do with real money.You do not know who is giving you the code, you do not know what it does, you do not know that it places the monies correctly into the appropriate account, without passing the details to any third...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
You'll need to find a hoster. You may want to start at http://www.asp.net/hosting[^]
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I have a class called bookInventory that is a log of different elements that go into a linked list.. so every time the program is ran it saves the logs and creates a new linked list. I need to be able to take an element called bookPages and keep a running total of how many pages are being read...
General Programming » Uncategorised Quick Answers » General
C++
Question 14 May 2013   license: CPOL
Hello, Im working on a MVC app.When I call context.SaveChanges to update a specific records. The update is not registered in the database. I do not get any runtime error either. All in notice is that my Records is not updated. I still see the same values. Insert Functionality work...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hi,Check this one,http://forums.asp.net/t/1744060.aspx/1[^]http://aspsnippets.com/Articles/Crystal-Reports-13-Visual-Studio-2010-Issue-with-IIS---bobj-is-undefined-JavaScript-Error-and-Crystal-Report-Viewer-not-displaying.aspx#comments[^]
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Dear All, I have created a windows application (large) using C#.Net, VB.Net & SQL Server 2005.Can this application be hosted in Cloud? Or should I recreate the entire application using ASP.Net to run in Cloud?Please Advice,Thank you.
General Programming » Uncategorised Quick Answers » General

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


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