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


Tag filtered by:  .NET3.5 [x]
Article 12 May 2013   license: CPOL
This article presented how to use code coverage during regression tests (auto/manual).
Tip/Trick 12 May 2013   license: CPOL
A basic yet generic state machine implementation
Catalog 12 May 2013   license: Commercial
Unsurpassed Documentation Comment generation and updating for C#, Visual Basic, C++/CLI, C++, C, Java and UnrealScript code. Keep your comments readable and in sync with the code with a minimum of effort. Plus other coding utilities.
Article 12 May 2013   license: CPOL
.NET Framework Cultures with Culture Specific Formats and Mapping with SQL Server Language. CultureInfo, DateFormat, Number Format, Currency Format, Percent Format, Infinity Format etc.
Catalog 11 May 2013   license: Limited Time Trial
IncrediBuild is an easy-to-use platform for accelerating Windows-based processes through advanced Grid Computing technology. IncrediBuild speeds up Visual Studio and make based code builds as well as data builds, scripts and applications.
Answer 11 May 2013   license: CPOL
int Days = 0; DateTime bookingTime = ----; DateTime vacateTime = ---; TimeSpan roomHeldFor = vacateTime - bookingTime; decimal heldTime = Math.Ceiling(((decimal)roomHeldFor.TotalHours)); if (heldTime
Tip/Trick 11 May 2013   license: CPOL
A solution for monitoring Events called during test
Article 10 May 2013   license: CPOL
This article provides and describes the EnumerableExt class, which simplifies the display and formatting of lists, collections, and arrays. It accomplishes this by implementing extension methods (Append, BuildString, and Write) that are available via the IEnumerable interface.
Tip/Trick 9 May 2013   license: CPOL
How to bind Derived Type in MVC View
Question 8 May 2013   license: CPOL
Hi,I have some couple of .NET Dll's(assembly) with/without COM Interfaces,1. Is there a way/method to detect if a dll/assembly (.Net Dll) has a COM interface ?This is akin to searching for DllRegisterServer() API function in Unmanaged source Code (ATL-COM world)in VS IDE.I need...
Question 7 May 2013   license: CPOL
I am trying to create the WCF Self hosting application i have created the hosting applicationwhich is running fine. But in the client side it is giving error (error code 10061) i know issue is related to address specified in the app.config in client application. Need solution to fixed this...
Answer 7 May 2013   license: CPOL
Try reading this link, was the first link when googling "WCF error code 10061" http://social.msdn.microsoft.com/forums/en-US/wcf/thread/58e420e9-43a3-4119-b541-d18158038e36/[^]Based on the information you provided that looks like it could be same issue and there are various solutions...
Answer 7 May 2013   license: CPOL
Make sure that you have an active internet connection at all times!Put a try/catch around "web.DownloadString(url)" and show a message like "Service not available" in the catch part.When using a 3rd party service like Google you cannot solve the problem in any other way when it's not...
Answer 7 May 2013   license: CPOL
That is a problem you probably cannot solve: an explanation here[^].
Question 7 May 2013   license: CPOL
The remote server returned an error: (503) Server Unavailable.Line 40: Dim url As String = String.Format("http://www.google.com/ig/calculator?hl=en&q={2}{0}%3D%3F{1}", fromCurrency.ToUpper(), toCurrency.ToUpper(), amount)Line 41: Dim response As String =...
Answer 7 May 2013   license: CPOL
There will be a web.config/app.config file existing on that application. Check that.That is xml file usually contains all the configuartion information for the application.You will find the key CheckPassword inside AppSettings tag under parent tag configuration inside that file something...
Answer 7 May 2013   license: CPOL
With this code you can read the variables of your program that is saved in the web.config or app.config.you can access to it from all forms.
Question 6 May 2013   license: CPOL
In my new project they have used one code likestring A = System.Configuration.ConfigurationManager.AppSettings["CheckPassword"];What is the use of this code? why the are using this?What could be the use of this code?
Answer 5 May 2013   license: CPOL
If it is windows application,set welcome label's properties...Label1.Dock = Fill;Label1.TextAlign = MiddleCenter;Happy Coding!:)
Question 5 May 2013   license: CPOL
Hi To All!Respected sir/ma'am.This is first time i am developing software so i have one question i want to display One label(Welcome to user) on the middle(center) of my monitor screen but as you know screen size is vary like mine is 19Inc others(my client)might have larger than it or may...
Answer 4 May 2013   license: CPOL
Just make sure to add this in your app.config file. and then it should work.
Question 4 May 2013   license: CPOL
My project is in .Net 4 and works good,But in setup project i got some errors like this:Warning 2 The 'SAP Crystal Reports Runtime Engine for .NET Framework' item selected requires 'Microsoft.Data.Access.Components.2.8'. Select the missing prerequisite in the Prerequisites Dialog Box or...
Answer 4 May 2013   license: CPOL
Try: DateTime startBooking = ... DateTime vacated = DateTime.Now; TimeSpan roomHeldFor = vacated - startBooking; int heldTime = (int) roomHeldFor.TotalMinutes; Console.WriteLine(heldTime > (25 * 60) ? "Two days" : "One day");
Answer 4 May 2013   license: CPOL
Usually people must vacate the room before 13:00 otherwise it is put on their account.
Question 4 May 2013   license: CPOL
Hi,This is Bala, i am very new to .net window applications. i am using .net framework 3.5 with c# language and sql server 2005 now i am developing a project for hotel management in window application. modules are, booking of room and vacate a room based on the time not day. now i have...
Question 4 May 2013   license: CPOL
Hi ,On usage of GacInstall() programmatically,instead of Gacutils.exe but, on implementing the above method, I could not get the xyz.dll/assembly installed programmatically, (Verification is through Context menu (MyProject->Add References->.NET tab), though the assembly does not get...
Article 3 May 2013   license: CPOL
Implement a WCF service with Entity Framework that supports concurrent updates.
Answer 3 May 2013   license: CPOL
if you want the radiobutton1 to be checked by default then you can remove the code on page load to set the radiobutton2 checked as true that should fire the event.Since the checked property is set to true for both the radiobuttons (in page load and the aspx page) the checkedchanged event is...
Article 2 May 2013   license: CPOL
Imagine connecting church worship attenders with real-time content.
Answer 2 May 2013   license: CPOL
@ Dave Kreskowiak....I hv created a module for connection string in which i have created a sub named connection. i call this sub wherever i need to call the connectionstring and con.open() and i directly proceed to write sqlquery. So are u suggesting me to explicitly define a connection string...
Answer 2 May 2013   license: CPOL
You're getting yourself in trouble by trying to reuse a connection. Don't. What you did was try to run 2 readers on the same connection, but one after the other. When you closes the first reader, it also closed the connection, preventing you from running the second reader on it.You're...
Question 2 May 2013   license: CPOL
I get this error when i run my vb.net program. I am unable to understand what causes this error.The error points to dr1= cmd2.executereader in line no 113.This is my coding. Private Sub cmbstudentid_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As...
Question 2 May 2013   license: CPOL
Hi All,My project is based on Registration/De-Registration of Dll's, oriented towards (COM Dll's and .NET Dll's/Assemblies with COM interfaces), here, I need to simulate the behavior of Dll's registration for .NET with COM interface (RegAsm.exe/Gacutils.exe).Steps:1. To create a...
Answer 1 May 2013   license: CPOL
i solve this by changing my button click protected void Button1_Click(object sender, EventArgs e) { RadioButton2.Checked = true; RadioButton1.Checked = false; }is this a good one.why radio button show such behaviour
Answer 1 May 2013   license: CPOL
I tried your code. When i remove the default value for checked property for Radiobutton1 then the event fires properly. Please try this for Radiobutton1
Catalog 30 Apr 2013   license: Shareware
LinqConnect is a LINQ to SQL compatible ORM solution with extended functionality, support for SQL Server, Oracle, MySQL, PostgreSQL, and SQLite, its own visual model designer, seamlessly integrating to Visual Studio, and SQL monitoring tool.
Question 29 Apr 2013   license: CPOL
Dear Code Project Expert Team,I have big issue when we upload file for upload mechanism. And also want to Percentage completion done and display of completion process on front.All of working fine file upload and complete successfully done.But process bar not working on server. i retrieve...
Question 28 Apr 2013   license: CPOL
How can I create a window like Windows On-Screen keyboard, so that I can use the window in the foreground without focusing it. Suppose I'm renaming a folder, when I click on any other form, the rename field will get disabled. So I want to make a form that always stay in the foreground (above all...
Answer 28 Apr 2013   license: CPOL
Hi,Go through this-Creating a Form That Doesn't Take Focus[^]
Article 26 Apr 2013   license: MIT
Reflexil is an assembly editor and runs as a plug-in for Reflector or JustDecompile. Reflexil is able to manipulate IL code and save the modified assemblies to disk. Reflexil also supports "on-the-fly" C#/VB.NET code injection.
Article 26 Apr 2013   license: CPOL
Folder Encrypted / Decrypter with standolone function
Article 25 Apr 2013   license: CPOL
Unmanaged code application accessing data in a database via Web Services without a database provider.
Question 25 Apr 2013   license: CPOL
Hello, I am using the free windows forms ribbon control Version 3.5.6.1 page here in a vb.net application.The form which i placed the ribbon control in is inherited from System.Windows.Forms.RibbonForm* Form Properties are set as follows:Me.FormBorderStyle =...

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


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