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 strongm 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: *

  1. techie88

    Image Changes on hover

    This is an extension of my previous post. I have a form on my webpage as well where I also want to achieve the same thing with the image. The submit button on this form takes me to another page where I can make payments. I want the button image to change on mouse hover as well. Please help...
  2. techie88

    Image Changes on hover

    Hello, I am trying to make a image change from one to another on mouse hover. Here is what I have currently but it is not working. The image which is supposed to appear on mouse hover is coming on the line under the default image. in the html file: <ul> <li><a href="home.html"><img...
  3. techie88

    Time Datatype

    never mind, i fixed the problem. the format in the sheet cell was not correct. i had to reset it to time format.
  4. techie88

    Time Datatype

    The value of rTime appears to be a string "0.29166666667". Can you give me an example of how to use IsDate function? It seems like most of the examples on the web are complaining that IsDate function is not working.
  5. techie88

    Time Datatype

    I am getting a type mismatch error for rTime at If (TimeValue(rTime) >= TimeValue(lbl4AM) And TimeValue(rTime) < TimeValue(lbl11AM)) Then Can anyone help me solve this problem? What datatype is rTime supposed to be declared as? Sub CreateTimeBlocks() Dim iRow As Integer, iColumn As...
  6. techie88

    IF statement not working

    For some reason my if statement does not obey the And clause in the following code: Sub Method2() Dim i, j, k As Integer Dim fluidIDs As Variant Dim fID As Integer Dim fType As String i = 2 j = 2 fluidIDs = Array(207 ... omitted for convenience) Do While i < 4062...
  7. techie88

    ENDIF without IF block

    does this mean, I have to put every single declaration of a variable on a single line? Dim i As Integer Dim j As Integer Dim k As Integer
  8. techie88

    ENDIF without IF block

    Why do I keep getting Compile Error: End If without if block Here is my code. Sub TotalFluid() Dim i, j, k As Integer Dim totalFluids As Integer Dim fID As Integer i = 2 j = 2 totalFluids = 0 Do While i < 37 Workbooks("Book1.xlsm").Sheets("Sheet1").Activate dVal = Cells(i, 7)...

Part and Inventory Search

Back
Top