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!

Search results for query: *

  • Users: ShikkurDude
  • Content: Threads
  • Order by date
  1. 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...
  2. ShikkurDude

    Calendar's date-hyperlinks disappeared

    As soon as I set or even concatenate the text property of e.cell of the Calendar control, the dates of the calendar disappear. Those dates are the hyperlinks that fire the SelectionChanged event. How can I change the text of each day (in DayRender) but still be able to detect SelectionChanged...
  3. ShikkurDude

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

    =IF((B88<>""), (A87+7),"") I have a worksheet with two columns - A and B. Beginning in row #2, I would like a macro that would do the following two things: - when a value is entered in column B, the macro should set the value of the same row's column A to 7 more than the previous column A's...
  4. ShikkurDude

    Need to get data off 6 year old computer

    I don't know if this is the right forum to post to - if not, kindly point me to the right one... I need to get 7 MB of data off a computer that has no USB ports, no CD burner, but has a dial up internet connection. Any suggestions, please? Thanks, E.
  5. ShikkurDude

    Calendar - extra week displayed

    My Calendar control always displays 6 weeks per month. I understand one extra is for the partial week that's in this month and part of it's in the other (prior or next) month, but there's always yet another week that's totally in the next (or previous) month. How do I get rid of that...
  6. ShikkurDude

    Coloring specific rows of a ASP.NET Calendar

    I want to color alternating (even/odd) rows in a Calendar control. Ex: blue yellow blue yellow How do I do that, please? Thanks! E.
  7. ShikkurDude

    Variable naming convention abbreviations

    I am looking for an exhaustive list of prefixes from Microsoft specifically on proper naming convention for controls. Ex: txtMyTextbox, lblMyLabel, etc... All I found (not from Microsoft) was this: http://www.programmershelp.co.uk/vbnaming.php - and it's for VB6. Could anyone please point me...
  8. ShikkurDude

    Strange cursor flashes when user clicks on a JS button

    I have the following two bits of code:<INPUT style="BACKGROUND-POSITION-X: center; BACKGROUND-IMAGE: url(http://web.amg.advo-health.com/commonimages/cmdcancel.gif); WIDTH: 64px; CURSOR: hand; BORDER-TOP-STYLE: none; BACKGROUND-REPEAT: no-repeat; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none...
  9. ShikkurDude

    Correct forum for DVD-RW

    Where's the correct forum for posting a question about dual-layer DVD writing? Thanks! E.
  10. ShikkurDude

    Validating integer routine not working

    I have the following routine for validating whether a number's an integer: Private Function isInteger(ByRef inputNumber As Double) As Boolean If inputNumber.ToString - CInt(inputNumber) <> 0 Then Return False Else Return True End If End FunctionThe problem is it returns TRUE for...
  11. ShikkurDude

    Compiler claims there's an error where there's surely not...

    I've declared two objects: Dim ds As New DataSet Dim da As New SqlDataAdapter(cmDB)and passed them into a subroutine: Private Sub FillReqItemsDt(ByRef ds As DataSet, ByVal da As SqlDataAdapter) Dim dtRequestedReqItems As New DataTable cmDB.CommandText =...
  12. ShikkurDude

    Can't access values of Output parameters...

    I have a subroutine in VB.NET: Sub getNextApproversNameAndEmail(ByRef strNextApproversName As String, ByRef strNextApproversEmail As String, ByVal conn As SqlConnection, ByVal reqID As Integer, Optional ByRef approval_type As String = "") Dim cmGetNextApprover As New SqlCommand...
  13. ShikkurDude

    Strange stuff happening with object instantiation...

    How could it be that I instantiated an object like this:Public reqToEdit As New Requisitionand it worked just fine for some time. Then, without any apparent reason or cause for things to change, when I referenced the object elsewhere in the code, I all of a sudden started getting a null...

Part and Inventory Search

Back
Top