Search results for query: *

  1. J

    Windows 7 , Jet Oledb Run Problem

    Thanks again, that confirms what I hoped - now to find out why this may not work on some peoples Win 7 x64. Sorry to keep asking questions - does your version of W7 x64 have XP mode? Would it run automatically in XP mode, if users do have it? Cheers
  2. J

    Windows 7 , Jet Oledb Run Problem

    Very Interesting... @JuggaloBrotha - thanks a lot for that fast and very useful reply. Do you know if you have anything in particular installed on your Windows 7 x64 that others may not have? I'm thinking Office, Access or an MDAC install... or did you use a Windows 7 upgrade that may preserve...
  3. J

    Windows 7 , Jet Oledb Run Problem

    As a developer, do you know if there is any way to use ACE instead of JET 4.0 without forcing users to install a separate download? My application works fine on Vista 32 and 64bit versions (as long I compile for x86 only...), but a user recently reported the problem with Windows 7 x64. I'm not...
  4. J

    Convert time_t to DateTime

    For anyone who is interested, I finally worked this out thanks to Brad Abrams: bytestr contains the 4 byte hex string (backwards, as mine is little endian): Dim dateData As Long dateData = Convert.ToInt32(bytestr, 16) Dim win32FileTime As Long =...
  5. J

    Convert time_t to DateTime

    Hello, I am trying to convert a time_t string to a readable format. Hex Workshop shows the bytes as "90 10 47 45" and tells me that this is 32 bit little endian, and corresponds to "10:00:00 31/10/2006", exactly as it should, but so far I have been unable to do this in VB. The following code...
  6. J

    convert to csv

    Sorry about being too vague - I am writing my very first .NET app as a learning project, and my goal is to convert a binary file exported by my calendar software that contains events and dates, into csv format. I should add that although I am certainly approaching this in completely the wrong...
  7. J

    convert to csv

    Well for example, you might have a binary file that contains some ascii and you may be looking for a certain sequence of bytes in order to process the file. You can't use Contains or Substring with a byte array as far as I know, so I've been having a similar problem. You have to use...
Back
Top