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 IamaSherpa 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: x75
  • Order by date
  1. x75

    step trough an dataset and sort stuff out

    Hi, I have a DataSet, and would like to step trough all the rows in one of the tables and delete them if an If clause returens true. I tried: For Each row In getFreeZimmerList.Tables(0).Rows If getBelegungList(row.Item("ZimmerID").ToString, vonDate, bisDate).Tables(0).Rows.Count > 0...
  2. x75

    Sort Folder Collection

    Oh, I didn't saw your reply on "..loop through your returns and use datediff.." Would be kind of the same thing! Thanks again
  3. x75

    Sort Folder Collection

    One little mistake! must be If getoldestBackup > cdate(Folder.Name) then and not If getoldestBackup < cdate(Folder.Name) then thanks for your replies!
  4. x75

    Sort Folder Collection

    I was going to, but I had to code my Idea first. Here it is: getoldestBackup = Date() For each Folder in objRootFolder.SubFolders If getoldestBackup < cdate(Folder.Name) then getoldestBackup = cdate(Folder.Name) End If next once it's done I'll have the date of the oldest Backup...
  5. x75

    Sort Folder Collection

    never mind just found a trick on how to do it!
  6. x75

    Sort Folder Collection

    I know that I can not sort the contents of FSO. But I was hoping some one had a trick on how to do this. I thought of putting them into a db, but I would prefer not to do that. I found a code on how to do it in VB 6. But I can't figure out how to create a new collection in Vb script...
  7. x75

    Sort Folder Collection

    Hi, I have a Folder Collection. The name of the folders is the date they where created. How can I sort the collection, so that the oldest folder is first and so on? Or if that is not possible how can I get the name of the oldest folder? Thanks for any reply Johannes
  8. x75

    convert german date to us date

    Thanks for your help. I found out that the only way to solve my problem is to have the isp set the default code page to german. because it occurs in all different parts of my code, and rewriteing it will take to long. thank again
  9. x75

    convert german date to us date

    Hi I have some asp code that used to be on a german win nt server. now it is on an english server. The problem is that all dates read from my database are now in the wrong format. because in german you write a date day.month.year and in english its month/day/year iis thier a way how I can...

Part and Inventory Search

Back
Top