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. darkdido

    how can subtract long time

    i am realy sorry but i forget ineed help me in this Dim dteTemp As Date Dim Time1 As String Dim Time2 As String Time1 = "11:00" Time2 = "1:15" dteTemp = TimeValue(Val(Split(Time1, ":")(0)) - Val(Split(Time2, ":")(0)), Val(Split(Time1, ":")(1)) - Val(Split(Time2, ":")(1)), 0) Debug.Print =...
  2. darkdido

    how can subtract long time

    Dim Time1 As String Dim Time2 As String Dim Hours As Long Dim Minutes As Long Time1 = "40644:30:00" Time2 = "20:15:00" Hours = CLng(Split(Time1, ":")(0)) + CLng(Split(Time2, ":")(0)) Minutes = CLng(Split(Time1, ":")(1)) + CLng(Split(Time2, ":")(1)) Hours = Hours + CLng(Minutes / 60 - 0.5)...
  3. darkdido

    how ican CHANGE negative to positive

    how ican CHANGE negative to positive like 9-10=-1 i need without - negative
  4. darkdido

    how can calculate time long in vb 6

    how can calculate time in vb 6 like..(30:30:00+20:15:00)=50:45:00 30 hours and 30 minutes + 20 hours and 15 minutes i use this Dim Time1 As String Dim Time2 As String Dim Hours As Integer Dim Minutes As Integer Time1 = "30:30" Time2 = "20:45" Hours =...
  5. darkdido

    Excel procedure

    who i can make procedure to send variables from textbox to Excel and Excel return result
  6. darkdido

    how can calculate hours in vb 6

    how can calculate time in vb 6 like..(30:30:00+20:15:00)=50:45:00 30 hours and 30 minutes + 20 hours and 15 minutes
  7. darkdido

    how can calculate time in vb 6

    how can calculate time in vb 6 like..(30:30+20:15)=50:45
  8. darkdido

    how can i calculate time in vb6

    vb 6 how can calculate time in vb 6 like..(10:30+20:15)

Part and Inventory Search

Back
Top