Search results for query: *

  • Users: dd86
  • Order by date
  1. D

    urgent help wit text files....deadline rush

    thank you very much
  2. D

    urgent help wit text files....deadline rush

    hmmm ok thanks...but it doesn't state where i get the system date & time from does it?
  3. D

    urgent help wit text files....deadline rush

    sorry fr askin this if it has already been answered but is there a way to write the system date and time into a text file? cld any1 gimme a link to the code snippet if there is one? I really am in a rush...thanks in advance.
  4. D

    Help needed with reading binary files

    This is the loop I need help with. CInt("&H" & buffer.Item(nom)) has a value of 17 in this case. If nom <> buffer.Count Then If (min - 28) / 6 <> CInt("&H" & buffer.Item(nom)) Then Call WriteXL(row, min) row = row + 1 min = min +...
  5. D

    Help needed with reading binary files

    updated code this is my new code...almost near completion but i dunno why the last If loop in the button click event is nt workin properly.its supposed to write stuff 17 times...its jus doin it once Imports System.IO Public Class Form1 Inherits System.Windows.Forms.Form Public oXL As...
  6. D

    Help needed with reading binary files

    i am creating an array that will store the hexadecimal values...this is my code....i receive a IndexOutOfRange Exception Dim num As Byte Dim n As String Dim endOFStream As Boolean Dim buffer() As String buffer = New String() {} Dim s As Integer = 0...
  7. D

    Help needed with reading binary files

    i don' think so...i hve a file thts 1 KB in size and only has 131 bytes in it...BTW wen i say i'm a vb.net newbie, i really mean it...i hve no proper foundation in vb.net & was given a limited time to get familiar with it
  8. D

    Help needed with reading binary files

    does anyone knw hw to create an array without bounds? 'cos i won' knw the no. of bytes tht will b in the file...
  9. D

    Help needed with reading binary files

    damn so sorry...was too sleepy wen i was usin ur example...IT WORKS...thanks...
  10. D

    Help needed with reading binary files

    what do i declare endOFSteam as? I am jus writin to a txt file now to check whether the values comply with my reference hexadecimal file. Will use an array in the end.
  11. D

    Help needed with reading binary files

    Since I'm usin a loop to read the characters, is there a way to read all bytes in the file without a loop?
  12. D

    Help needed with reading binary files

    thanks...it works roughly..will post replies wen gt new probs
  13. D

    Help needed with reading binary files

    yeah the prob is i can't convert UInt16 to Hex...for now
  14. D

    Help needed with reading binary files

    hding code? haha...no way...jus tht its gt nothing to do wit wat i am planning to do so far...here it is though... Imports System.IO Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() MyBase.New()...
  15. D

    Help needed with reading binary files

    Well, i don' hve a confirmed piece of code. I am using a sample one to extract the characters in the file as UInt16 and write them into a .txt file. Apparently, all the info in the binary file i have is in big endian eg. most significant byte stored first. I aslo need to know which data type...
  16. D

    Help needed with reading binary files

    I need help with binary file access. Apparently all the information in it is in hexadecimal. I need to extract that information as hexadecimal and push it into an array. Can anyone help me with this?
Back
Top