CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Kenaso

Search: Search took 0.05 seconds.

  1. Thread: Date Comparison

    by Kenaso
    Replies
    20
    Views
    26,560

    Re: Date Comparison

    Sorry. That was me looking for date comparisons for sorting.
  2. Thread: Date Comparison

    by Kenaso
    Replies
    20
    Views
    26,560

    Re: Date Comparison

    Hello. I have been working the late shift and spending my off hours searching for pin holes in my eye lids. I am trying to get caught up on the discussion. How goes the sorting?
  3. Thread: Date Comparison

    by Kenaso
    Replies
    20
    Views
    26,560

    Re: Date Comparison

    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...
  4. Thread: Date Comparison

    by Kenaso
    Replies
    20
    Views
    26,560

    Re: Date Comparison

    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)...
  5. Thread: Date Comparison

    by Kenaso
    Replies
    20
    Views
    26,560

    Re: Date Comparison

    Gentlemen,
    I am working within a twenty year range therefore such extreme dates never entered the equation. Sorry. Anymore ideas?
  6. Thread: Date Comparison

    by Kenaso
    Replies
    20
    Views
    26,560

    Re: Date Comparison

    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...
  7. Replies
    11
    Views
    6,794

    Re: Rename a unicode file

    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...
  8. Replies
    11
    Views
    6,794

    Re: Rename a unicode file

    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...
  9. Replies
    11
    Views
    6,794

    Re: Rename a unicode file

    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.
  10. Replies
    11
    Views
    6,794

    Rename a unicode file

    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...
  11. Replies
    10
    Views
    43,215

    Re: VB6.0 Date Format

    This takes a normal date format and converts it to serial number.

    Dim intYear As Integer
    Dim intMonth As Integer
    Dim intDay As Integer
    Dim lngSerial As Long
    Dim...
  12. Thread: Info-ZIP probs

    by Kenaso
    Replies
    1
    Views
    1,021

    Re: Info-ZIP probs

    Here is a whole page of tutorials on using the InfoZip DLLs.
    http://datacompression.info/InfoZip.shtml

    Good luck.
  13. Replies
    4
    Views
    7,927

    Re: how can i delete a row from ini file?

    Maybe this will help.

    ' to delete a setting
    ' [Section_Name] without the backets
    ' key_name= without the equal sign. If this is replaced
    ' with vbNullString...
  14. Replies
    4
    Views
    2,510

    Re: Motherboard Serial Number

    This will get you the hard drive model and serial numbers.

    Visit http://vbnet.mvps.org/index.html
    Select Search VBNet on the left side
    Search on "drive serial" without quotes
    Select the...
  15. Replies
    2
    Views
    1,586

    Re: Hashing with Cryptlib 3.x

    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...
  16. Replies
    2
    Views
    1,586

    Hashing with Cryptlib 3.x

    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...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured