Search

You searched for the word(s): userid:47170

Matching Posts

  • A few questions on Architecture...

    Hey there...a few questions I hope someone can shed some light on. I am putting together a system, and I am trying to do a few different things: 1. Use a Typed DataSet 2. Use an Enterprise Template Project (biz object, facade, rules etc.) 3. Use SqlHelper OK, now let me start from the bottom: 3. I have had no problems with it, although there is a well known bug in v 2.0....I think this is a fine class to use. 2. Also, seems to be right IMO as we have a major system (call it Yoda :) and a whole bunch
    Posted to Architecture (Forum) by glsac on 3/26/2004
  • Calendar Control

    I was wondering if anyone knows if it is possible to make a "scrolling" calendar control based off date. Take for example that today is the 12th of January...Days 1-11 of January would automatically be hidden, and day 12 would be the "top" of the calendar, so that is the first day of the month (in a manner of speaking, since based off Date that is now). This is kinda weird, and defeats the purpose of a month calendar, but I need to try and figure it out...I have been able to do
    Posted to Web Forms (Forum) by glsac on 1/12/2004
  • Re: Confirm Message

    you must register a javascript in the code behind and have it run...
    Posted to Tips & Tricks (Forum) by glsac on 9/23/2003
  • Re: Chatbox

    use XML and just reload pages...this is what I have done in past...
    Posted to Tips & Tricks (Forum) by glsac on 9/23/2003
  • Re: Grouping Validators by Submit Button

    excellent response :) I had to do something similar a while back and I did something much easier...let me share it with you: Public Sub DisableValidators() ' Disable validation Dim bv As System.Web.UI.WebControls.BaseValidator For Each bv In Me.Validators bv.Enabled = False Next End Sub Public Sub EnableValidators() ' Enable validation Dim bv As System.Web.UI.WebControls.BaseValidator For Each bv In Me.Validators bv.Enabled = True Next End Sub Then in your code you basically just add the following
    Posted to Tips & Tricks (Forum) by glsac on 9/21/2003
  • Export Datagrid to Excel and Download

    Hello Everyone! I have to pull all info from a datagrid, and export it to excel...but not show it in the browser, rather to download it as an excel spreadsheet. I already have the datagrid up with all the info needed, and all I need to do is have a button that would export the info to excel and then the download dialog box would pop up. I have seen various examples of something like this in the source code forum on this site, but no luck. I also looked at the Microsoft MSDN example for exporting
    Posted to Data Presentation Controls (Forum) by glsac on 10/23/2002
Page 1 of 1 (6 items)