Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ShikkurDude

  1. ShikkurDude

    Clicking an Imagebutton to close a popup and refresh the parent page

    I got it! Private Sub ClosePopupAndRefreshParentWindow() Dim script As String = "<script language=""javascript"">" & System.Environment.NewLine & "self.close()" & System.Environment.NewLine & "opener.location.reload(); self.close();" & "</script>"...
  2. ShikkurDude

    Clicking an Imagebutton to close a popup and refresh the parent page

    I have a page "ChangeEvent.aspx" that (using JavaScript) pops up a window. On the popup I have a "Cancel" Imagebutton. I am trying to get that button-click to close the popup and refresh the parent ("ChangeEvent.aspx"). The following code does accomplish closing the popup, but it's not...
  3. ShikkurDude

    Calendar - extra week displayed

    What you get it exactly what I'm looking for. But in addition to what you get, my calendar is preceeded with the entire last week of April! I've recopied your code into mine and still get that. How frustrating! E.
  4. ShikkurDude

    Calendar - extra week displayed

    On my calendar, the first week is Sunday, April 24th - Saturday, April 30th. That week shouldn't appear at all. The last week is Sunday, May 29th - Saturday, June 4th. That one is ok. Are we showing the same page? E.
  5. ShikkurDude

    Calendar's date-hyperlinks disappeared

    Super - thanks!
  6. ShikkurDude

    Calendar - extra week displayed

    Umm, nope... I would like that first week in May not to appear. I agree with you on the last week in May, though - it (appropriately doesn't appear). Secondly, for June 2005, it still shows 6 full weeks... Hmmm... E.
  7. ShikkurDude

    Calendar - extra week displayed

    1) May 2005 2) Sunday, April 24, 2005 3) "7
  8. ShikkurDude

    Calendar - extra week displayed

    Full disclosure: I have this: Private Sub DayRender(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DayRenderEventArgs) Handles cldPHOEvents.DayRender RemoveExtraWeek(e) ... And then this: Private Sub RemoveExtraWeek(ByRef e As System.Web.UI.WebControls.DayRenderEventArgs)...
  9. ShikkurDude

    Macro to modify chart's source data and populate a cell

    Wow, I'll look that over. Thanks, Geoff!!! E.
  10. ShikkurDude

    Calendar - extra week displayed

    Hmmm, still doesn't work for me... It worked for you? E.
  11. ShikkurDude

    Calendar - extra week displayed

    Ca8msm, I tried your code - at least I think I tried your code... This is verbatim what I tried: Dim blnRemoveFirstRow As Boolean = False Dim blnRemoveLastRow As Boolean = False Select Case e.Cell.ID Case 1 If e.Day.IsOtherMonth = True And e.Day.Date.AddDays(7).Day = 1 Then...
  12. ShikkurDude

    Calendar's date-hyperlinks disappeared

    rTomes - thanks very much! That will allow me to make clickable calendar "events". But aside from the items on the calendar being clickable with the LiteralControl, is it possible to detect when the day (cell) itself is being clicked? Thanks, E.
  13. ShikkurDude

    Need to get data off 6 year old computer

    ...using gMail :-)!
  14. ShikkurDude

    Need to get data off 6 year old computer

    Actually, I ended up zipping it and changing .zip -> .jpeg :-) It worked great. Thanks!
  15. ShikkurDude

    Macro to modify chart's source data and populate a cell

    Geoff, OK, the formula I got (as you can see) - but I have to manually fill the formula in for all cells. The dynamic named range looks complicated - isn't there an easy way to do that VBA? E.

Part and Inventory Search

Back
Top