EggHeadCafe - A Global Community Of Programmers

Millions of Microsoft technology professionals visit EggHeadCafe to learn about .NET, SQL Server, ASP.NET, WCF, LINQ, IIS, WPF, Silverlight, SharePoint, Windows Server, Windows 7, Excel, Word, and a lot more!  We have thousands of programming discussions.

Need a question answered?  Microsoft technology experts who may know the answer to your question are online right now.  So, why not become a member (free) and ask them your question right now?

New Questions

I have a rule which limits input into two fields, called "length" and "width": [length]>[width] Or ([length] = 0 Or [width] = 0). This allows for all cases of measurements taken, including those where one or both measurements are missing. Rarely--perhaps once every several years--we have a case where the width is actually larger than the length. Because this is a highly unusual case, I'd like ...
public class CustomerOptions { [DefaultValue(false)] public bool ShowAccountData { get; set; } [DefaultValue(false)] public bool ShowLoanData { get; set; } [DefaultValue(false)] public bool ShowStatusData { get; set; } } public class ...
This is the page url: http://localhost:612/abcd/Index?DID=1650&SID=9965 Once the page loaded successfully, would like to modify query string value, i.e. SID value 9965 to 3322 without page reloading.... would like to achieve the same thing on click of button through javascript or jquery.. Regards Lokesh.
How to search and find the restaurants, hospitals parks and other areas of Interest i.e neighbour hood places in google maps to implement in my project.
how to automatically post on Google plus account using via email..? (some website provided for Google voiceaccount to get the email id but Google voice did'not working India so i need other way..)
how to automatically post on my twitter account using email id.
Just help me out this how to store and retrieve PDF
Hi all, Need help in reading the xmlattribute value based on certion condition using XPathNavigator. here is my sample.xml file: India <state...
Hello, I can't get the following code to recognize CurrentWeek. I get Compile error: Invalid qualifier If I substitute "CurrentWeek.xls" with the actual name of the workbook , e.g "2013 May 20 - May 26.xls" then the code works perfectly. Please let me know what I am doing wrong. Thanks in advance. Sub DoCurrentWeek() Dim FSO As Object Dim fsoFile As Objec...
Dear All, In the below code "On Error Resume Next" is not working. My first value is BDP if am not able to find that next value is SECURE, it should go to next. but is not happeeing. Please help Sub FindLob() Dim cl As Range Dim ws As Worksheet Dim SearchString As String Dim searc...
Hi Guys, This is driving me mad and I'm sure it should be fairly straight forward. Using VBA, I'm lifting two sheets from a master workbook and saving them. One of the worksheets in the new workbook has some code in it and I'm trying to assign this code to a button on the other sheet. The problem I'm having is that no matter what I do, the code will try to ru...
Dear Friends Here i need to get help from yours side. I need to use Open Source , Portal CMS to my application. Can u tell me How i can achieve it ? Which one is best and good? How we can implement in my application ? Please Help me dear friends? ...
is their any way to implement HTML5 or XHTML5 in Visual Studio 2008 as i require to work in HTML5 features
var _Col_Name_lst = (from DataColumn x in _hdr[0].Table.Columns select x.ColumnName).ToArray(); _Col_Name_lst ----- This has a collection of string array like 0 - EMl 1 - AZEER 2 - VISTA -------- Here in abov...
$(function(){ $('#').click(function(){ var Isvalid=true; var filter = /^[1-9][0-9]*$/ if($('#').val()=='') { $('#<%= tbxarea....
I wanna clear all the controls in a Form. I have used the following Code: foreach (var control in this.Controls) { if (control is DevExpress.XtraEditors.TextEdit) &n...
What is signal R? How do I get started on this?
this is what I am trying to accomplish ... I have a list of events. Each event has tactics on how to implement the event and each tactic has costs. I am building the tactics list dynamically (can have more than 1 tactic for an event) and trying to build an editable gridview of the costs (can have more than 1 row of costs) for each event. When I click the edit button on the...
Dear All, I have below scenario. Please help me out. in Column A, i have the data which is copy pasted from a website. That data may contain, any of the below like ABCD, EFGH, IJKL, MNOP.. I need to search in the data whether any of the ABCD, EFGH, IJKL, MNOP..is existed or not, if existed, I want to select that value. I am able to do it, but if AB...