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


License filtered by: The Code Project Open License (CPOL) [x]
Answer 14 May 2013   license: CPOL
There are various approaches you could take to achieve this.one could be to do a foreach loop on the form.controls collection where you are searching for a control of type MenuItem, then collect the name property from it and put that in an array. Then when you want to retrieve a control you...
WPF
Question 14 May 2013   license: CPOL
I have a VB.Net 2005 project that uses a WebBrowser control on a windows form. On the control, I have created an imagemap using HTML and javascript. When a user clicks on the imagemap, a marker (like a map pin) is displayed where the user clicked, and prescribed processing for that section of...
Answer 14 May 2013   license: CPOL
You might want to try F12 Developer Toolbar in IE/ FF - Web Console tools to find out what is wrong in the rendered output.
Answer 14 May 2013   license: CPOL
well in your case there is no duplicate data in table,but if you consider only names as duplicate data then you can get distinct data in following ways...select MIN(ID), Name from tbl_1group by Nameorselect MAX(ID), Name from tbl_1group by Namechoose any of above according to...
Answer 14 May 2013   license: CPOL
So this is how I have solved:1. Modified the App.config like: and this is DatabaseConnectionDetails.config:
Answer 14 May 2013   license: CPOL
I see that you have SetFocusOnError="true" propery set for RequiredFieldValidator.since it is set when there is validation failure, focus will be set to the control which failed in validation. Set SetFocusOnError="false", if you wish to change that behaviour.
Article 14 May 2013   license: CPOL
How to Use the Fabric JQuery Library to Create Image Maps
Question 14 May 2013   license: CPOL
Hi everyone, I joined this forum because I was hoping to learn from experts in programming. I know next to nothing about it.I want to develop a web app for lawyers, and plan to outsource it's development to a programmer. But I have no idea what I should look for, what language I want it to...
Answer 14 May 2013   license: CPOL
It's simple to achieve. Belive me...Steps to do:1) get file names from directory to List[^] generic class2) export values from List to ExcelJust try!Please, follow below links:How to: Enumerate Directories and Files[^]Exporting a List of any type to Excel[^]
C#
Question 14 May 2013   license: CPOL
i have much text that i have placed in a div class , there i have .scroll { position: fixed; } i am trying to make that the scroll follows the text but the text is large bigger then the screen height, because my page has much text i only can view the half text? what...
CSS
Answer 14 May 2013   license: CPOL
Makes no sense at all.There is no such thing as "overloading", except ugly and very confusing terminology and some myths. (So many beginner have been confused! It's can be observed on CodeProject.) Methods are "overloaded" because nothing is overloaded. They are just different methods with...
Question 14 May 2013   license: CPOL
Hi,Is it possible have a variable with the same name that can either be a string or an object that contains a string?For example:public mynameobj{ value: string { get; set; }}public string myName { get; set; }public mynameobj myName { get; set; } // overload somehow,...
Answer 14 May 2013   license: CPOL
I would suggest you to ask a question on proper forum.Please, follow below links:Grid - Column/Row...
C#
Answer 14 May 2013   license: CPOL
Please, follow below links: Walkthrough: Editing an Access Database with ADO.NET[^]Using an Access 2007 database with ASP.NET 3.5 and Expression Web 3[^]How to add data in ms access 2010 using VB.net 2010[^]It should be enough for start.
Question 14 May 2013   license: CPOL
I'm new in WPF and I have this :
WPF
Question 14 May 2013   license: CPOL
What do PostgreSQL users use to build reports? Is Spotfire TIBCO Software a good package for PostgreSQL?
Answer 14 May 2013   license: CPOL
Yes indeed, the code throws me an exception:Troubleshooting Exceptions: System.Data.SqlClient.SqlExceptionIn the line:WorkflowInstance instance = workflowRuntime.CreateWorkflow(typeof(WorkflowConsoleApplication4.Workflow1));>>>Could not find stored procedure...
Answer 14 May 2013   license: CPOL
After reading for a while and searching in numerous forums, I finally found my mistake.The field i was selecting in my own DataBase was not an "int", it was a smallint.I had to useConsole.WriteLine(lecteur.GetSqlInt16(0));I found the list of the data types at...
Article 14 May 2013   license: CPOL
Library for extracting configuration settings from custom configuration file is provided.
Question 14 May 2013   license: CPOL
Hi :)I've been trying to work on a project for my little company.I bought a book to learn and test how SQL works with C# and everything.Working with the database they provide in the book worked just fine.But now, when I try to make my own database following their instructions,...
Answer 14 May 2013   license: CPOL
I'm not sure that i understand you well, but... check this:DECLARE @tabA TABLE(Mid INT, orgID INT)INSERT INTO @tabA (Mid, orgID)VALUES(1, 1)INSERT INTO @tabA (Mid, orgID)VALUES(2, 2)INSERT INTO @tabA (Mid, orgID)VALUES(3, 2)INSERT INTO @tabA (Mid, orgID)VALUES(4,...
Answer 14 May 2013   license: CPOL
In all probability, you don't.AFAIK, the only version of windows that works on an ARM based processor is RT - and there is no guarantee that it will work.Start here:...
Answer 14 May 2013   license: CPOL
To change connection of Entity Framework dynamically, you will have to pass connection string to the constructor of DataContext class as below. string connection = "YourConnectionString";DataContext myDataContext = new DataContext(connection);Quote:And how can I get tho login information...
Question 14 May 2013   license: CPOL
Table A -------- Mid orgID1 1 2 23 24 4Table B---------id Mid MemberID 1 1 2 2 1 3 3 1 4 4 2 1 5 2 3 6 2 4 7 4 2 8 4 3In above case orgId and MemberID is equivalent or treated as same.If I have...
Answer 14 May 2013   license: CPOL
https://www.google.com/search?q=How+do+I+install+Windows+on+a+tablet+with+Android+OS[^].
Answer 14 May 2013   license: CPOL
Use Spy++ to catch the messages going to your windows. This tool will give a you an inside view where the messages are going and will give you insight into how to catch them.
Answer 14 May 2013   license: CPOL
ok I solved this problem by below code:code behind: protected List objListItems = new List();And in javaScriptalert('')alert('')
Answer 14 May 2013   license: CPOL
This article explains how to print using ASP.NET:http://www.c-sharpcorner.com/uploadfile/rahul4_saxena/printing-in-Asp-Net/[^].Note that the server side only provides printable content, and all the detail of printing selection, printing quality and other options totally happens on the...
Answer 14 May 2013   license: CPOL
The only place you are casting in that code fragment is when you try to get the value from the database:Console.WriteLine(lecteur.GetInt32(0));Which implies that the value in the first column of your table (or the "Sunfuki" table) is not an integer value.Have a look in SSMS at the table...
Tip/Trick 14 May 2013   license: CPOL
Implementing Dictionary.RemoveAll as an extension method
C#
Answer 14 May 2013   license: CPOL
You cannot get a "simple code" in response to such a vague request. It really depends on the detail of what you want to achieve and your service.However, one thing is obvious: your Web Service application provides some interface to the client application. Your console application is no...
Answer 14 May 2013   license: CPOL
postData = "__VIEWSTATE=" & vState & "&ddlRegion=" & merchantID.Substring(2, 2) & "&txtPassword=%24%24region15%23%23&btnEnter=Enter" & "&__EVENTVALIDATION=" & eventvalidation...
Article 14 May 2013   license: CPOL
This article presents the results of timing four directory traversal algorithms.
Answer 14 May 2013   license: CPOL
You can intercept messages by installing a Windows Hook. If you need to intercept some messages outside your application, the hook should be global. According to Microsoft documentation, to make it global, you can only install the hook in a native Windows DLL. Please start here:...
Tip/Trick 14 May 2013   license: CPOL
How to connect to a MySQL database using VB.NET.
Question 14 May 2013   license: CPOL
I have an application that connects to a MYSQL database. I use Entity Framework to do all the job.Now When I first Installed, I set up entity, and resulted in a connection string like this:
Answer 14 May 2013   license: CPOL
Code is :private void Btn_Chercher_Click(object sender, EventArgs e) { try { SqlCommand cmd; SqlConnection ctn; SqlDataReader lecteur; ctn = new SqlConnection(); ...
Question 14 May 2013   license: CPOL
Hi,We are using one .net windows application for viewing the reports.we don't have any issue while opening this application with IE7.Recently our systems are upgraded to windows 7 and IE 8.Please find the example attached screenshot for reference.Here the problem is unable to select required...
Answer 14 May 2013   license: CPOL
What Richard MacCutchan said.MFC doesn't implement that feature. You'll have to write it, or borrow it from the existing MFC code.You'll also need to overload your CView notifications for UpdateAllWindows and similar methods, as they are dependent on the windows parent/child relationship...
C++
Answer 14 May 2013   license: CPOL
Try the OpenGL DLL from http://www.mesa3d.org/[^]If that solves your problem, then you've probably found a bug in Radeon driver.
Answer 14 May 2013   license: CPOL
Hello Maciej,Could you please share ur mail id.Needs to share some more help from your end.Please do the needful.Regards,Yashnara
VB
Question 14 May 2013   license: CPOL
Hello everyone! I would like to start by saying thanks to everyone who takes some time to view this thread and try to help. I have a main window, with a child static control ( for further discussion we shall label it as S1 ). That static control is parent to another static control ( for...
Article 14 May 2013   license: CPOL
.NET library to call server side method from JavaScript.
Question 14 May 2013   license: CPOL
I have three forms-login, registration and home. Lets say an user A click login button, a new form home opens with textbox where he write something. Similarly another user B login and write. Now i want to display that form with text that was last written by either user A or B. How to do that?
Answer 14 May 2013   license: CPOL
The problem is most likely related to your connection string. You can check for that by trying to connect to the databaseSqlConnection conn = new SqlConnection(connString);conn.open();conn.close();If the above code throws an exception then indeed it is your connection string. You can try...
Article 14 May 2013   license: CPOL
This article presents a step-by-step guide for the implementation of a UserControl named SliderControl.
Answer 14 May 2013   license: CPOL
ok sir thanks..........................................................
PHP
Question 14 May 2013   license: CPOL
How do I install Windows on a tablet with Android OS؟
Question 14 May 2013   license: CPOL
Hello, I have a very important project, which is a monitor in the computer operationsThe project is show if the window has been opened a new operation.I used this code in formLoad event: For Each p In Process.GetProcesses old_list.Items.Add (p.ProcessName) ...

Page 1 of 9,314
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