April 22nd, 2012 06:01 PM
I got the code from here:
The Next Y2K
http://visualstudiomagazine.com/articles/2010/02/16/the-next-y2k.aspx
Karl has been coding for quite some time and is very respected in the Visual Basic...
April 21st, 2012 08:20 AM
I found this piece of code by Karl Peterson. Works great. I have tested with random dates and/or times between 1800 to present. This should work for you.
ReDim adblData(lngLow To lngHigh - 1)...
April 20th, 2012 07:01 AM
Gentlemen,
I am working within a twenty year range therefore such extreme dates never entered the equation. Sorry. Anymore ideas?
April 18th, 2012 05:58 PM
I use the following in my sort class when comparing date/time values.
This is the general idea. Maybe this will help.
ReDim astrData(lngLow To lngHigh - 1) ' Resize temp data array
strFmt...
August 9th, 2009 07:55 AM
I read the article Dglienna recommended and it was some help. I finally accomplished what I needed by:
1. Creating a unique file name in memory
2. Using MoveFileW to rename the file or folder...
August 7th, 2009 11:05 AM
To all, Thank you for your input.
The file is not all "?", just a couple of the characters. I tried Name xxx As yyy and as one of you stated, it did not work. I will try the CopyFileW API and...
August 4th, 2009 07:20 AM
Thannk you for the concern, however my drive is not corrupted. I am using VB 6 sp6 and need to rename these items, open and inspect them, and then delete them programatically.
August 2nd, 2009 07:53 AM
I would like to rename some unicode files and folders. I do not know the language or point of origin. They are displayed with question marks ("??????.???") I want to be able to search them out...
March 27th, 2006 08:48 AM
I searched the Cryptlib news group and found my answer from the author, Peter Gutman. The code for SHA-384 and SHA-512 is in the source but has not been implemented. He does not know when it may be...
March 20th, 2006 09:15 AM
I have no problem hashing with Cryptlib 3.x up to SHA-256. What I cannot do is hash SHA-384 or SHA-512 with Cryptlib. Does anyone have an example or can point me in the right direction. I have...