treeview walkthroughs
http://quickstarts.asp.net/QuickStartv20/aspnet/doc/ctrlref/navigation/treeview.aspx
I created a user control that encapsulates a date range, and aggregrates date user control below.
I converted user control from C# to VB available from article below, that pops up a calendar page
Original Article: http://www.csharphelp.com/archives2/archive429.html
Method 1: 1) In HTML Header, before HTML Body, hourglass cursor <script language="javascript"> document.body.style.cursor = 'wait' 2) Add "Please Wait" Label (Visible = true) <asp:label id="lblPleaseWait" Text="Loading data, please wait..." ForeColor="Red" Visible="True" CssClass="labelCopy" Runat="server" Font-Size="Medium">...pl... wait...</asp:label> 3) At end of HTML Body, make label not visible, default cursor <script language="javascript"> document.getElementById('lb... ......
If you start a Visual Studio VB/C# project and put into VSS, Visual Studio will not automatically include the bin folder in VSS. Conversely, some project managers like to add the bin folder to VSS, so that it is easier to keep a version of third-party components/DLLs “together with” the source code. When you are in Visual Studio, and you get the latest version of a Project from VSS: "access to pdb/d When the bin folder is in Visual Source Safe, When you do a Rebuild, you will see an error/warning ......