Search:

Type: Posts; User: frozen

Page 1 of 8 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    11
    Views
    1,749

    Re: programs their connections and their bandwidth

    I stand corrected, I was using a rather old version. NetLimiter is pretty much what I wanted. Would still like to know about the API however.
  2. Replies
    11
    Views
    1,749

    Re: programs their connections and their bandwidth

    NetLimiter is pretty far from what I am looking for. Little too feature rich and not even what I really want.
  3. Replies
    11
    Views
    1,749

    Re: programs their connections and their bandwidth

    I'm talking about the Windows API, what language I am using is irrelevant.

    I'm trying to write a bandwidth monitor like the one in the above screen shot. It shows all connections a machine has...
  4. Replies
    11
    Views
    1,749

    Re: programs their connections and their bandwidth

    Finding the API calls I need to write the program...
  5. Replies
    11
    Views
    1,749

    Re: programs their connections and their bandwidth

    Copy and paste the URL I guess it doesn't allow referrers. I haven't chosen a language yet. So far I have been using Perl to test iphlpapi functions.
  6. Replies
    11
    Views
    1,749

    programs their connections and their bandwidth

    I'm looking to write something like

    http://uploader.ws/upload/200802/eset.png

    I've looked over the IPHLPAPI.DLL functions (whats documented and whats around on the undocumented) and a few other...
  7. Replies
    13
    Views
    13,247

    Re: EXE Writer - Make Custom EXEs

    Very interesting.
  8. Replies
    6
    Views
    10,801

    Re: VB6 - 31 Bit Encryption - To the Next Level

    Very nice. I'm with you there Liquid Metal, CVMichael's code is the reason I know what I do about encryption.
  9. Replies
    2
    Views
    1,500

    Re: Tiberian Sun and Red Alert 2 Maps

    198x132 (guess)

    Yeah I've been reading up on it and all I've found is a program some guy wrote in C++ that exported the maps PreviewPack to PNG... amung a lot of other things, so its been a pain...
  10. Replies
    2
    Views
    1,500

    Tiberian Sun and Red Alert 2 Maps

    The games Command and Conquer: Tiberian Sun and Command and Conquer: Red Alert 2 use INI files for maps, the maps have a [PreviewPack] section that I am interested in putting to use. It apears to be...
  11. Replies
    2
    Views
    638

    [RESOLVED] IsIDE()?

    Is there something that tells you if program is being executed in the IDE?
  12. Replies
    10
    Views
    936

    Re: program keeps crashing

    I thought strings were just byte arrays with overhead :/
  13. Replies
    10
    Views
    936

    Re: program keeps crashing

    Think I found the problem, lpFindFileData should be: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/win32_find_data_str.asp
    And is:
    Public Type TFileTime
    lngLow As...
  14. Replies
    10
    Views
    936

    Re: program keeps crashing

    I'm not sure I understand, the file its crashing on is "advpack.dll.mui", its right after advpack.dll.

    I think its FindNextFile thats crashing.
  15. Replies
    10
    Views
    936

    Re: program keeps crashing

    It's totally crashing, brings up send error report thing
    I wrote the code myself and I added a line to print strFileName right after strFileName = Left$(strFileName, InStr(strFileName, vbNullChar) -...
  16. Replies
    10
    Views
    936

    program keeps crashing

    lngSearch = FindFirstFile(m_strSystemRoot & "\*", udtFindFile)
    If lngSearch <> INVALID_HANDLE_VALUE Then
    Do
    strFileName = StrConv(udtFindFile.barFileName,...
  17. Thread: hostent

    by frozen
    Replies
    0
    Views
    794

    hostent

    In a nutshell I have the following code to parse the result of a DNS query: CopyMemory udtHost, ByVal m_udtResolveTable(lngIndex).lngMemoryPointer, LenB(udtHost)
    CopyMemory lngPointerToIP,...
  18. Replies
    1
    Views
    8,969

    Re: VB6 - Fast UUEncoder and UUDecoder

    Sweet, thanks :)
  19. Replies
    1
    Views
    6,675

    Re: TLI.TLIApplication

    Bump
  20. Replies
    1
    Views
    6,675

    TLI.TLIApplication

    I am trying to write a function that enumerates though an object printing its children.

    Option Explicit

    Private intFreeFile As Integer

    Private Sub Form_Load()
    Dim objResult As Object
    ...
  21. Replies
    3
    Views
    571

    Re: [RESOLVED] Simple encryption

    Thanks guys.
  22. Replies
    3
    Views
    571

    [RESOLVED] Simple encryption

    I am looking to make an encryption function that accepts and outputs only specific characters (just randomizes them with the specified password).

    The reason behind it is the data is getting passed...
  23. Re: [RESOLVED] Checking if method of object exists

    Msdn
  24. Re: Checking if method of object exists

    Thanks, ende up with:
    Private Function MethodExists( _
    ByRef objObject As Object, _
    ByVal strMethod As String) As Boolean
    Dim objLibrary As Object
    Dim objInterfaceInfo As Object...
  25. Re: URGENT! How to solve Run time Error '76'?

    If Len(Dir$("C:\YourFile.txt")) = 0 Then
    'File doesn't exist
    else
    'File does exist
    End If

    I read somewhere that
    If Len(str) = 0 Then
    is faster than
    If str = "" Then
  26. [RESOLVED] Checking if method of object exists

    I have a Variant array and only some of its members have the method .accName, so if I pass though the array with a For loop an error is raised on the 'rows' in the array without the method .accName....
  27. Replies
    6
    Views
    915

    Re: Miliseconds to Minutes...

    I would
    Private Sub Form_Load()
    Timer1.Interval = 60000
    Timer1.Enabled = True
    Timer1_Timer
    End Sub
    Private Sub Timer1_Timer()
    Static iMinutes As Integer
    iMinutes =...
  28. Thread: HiddenKill

    by frozen
    Replies
    0
    Views
    544

    HiddenKill

    I am working on some code to remove any exe's in startup that are hidden, this works so far, but has one rather large bug... if the virus exename is something like csrss.exe, the virus and system...
  29. Replies
    3
    Views
    580

    Re: CreateWindowEx :'(

    Yeah I wrote the above code from an example like yours, I don't want a full blown window. I just need a hWnd for my project (it's formless) to pass to WSAAsyncSelect().
  30. Replies
    3
    Views
    580

    CreateWindowEx :'(

    I can't get the following code to work, the program just ends without warning!

    I am trying to create a window to use with WSAAsyncSelect().

    Option Explicit

    Public Declare Function...
  31. Replies
    20
    Views
    952

    Re: [RESOLVED] Database without the database

    Sweet. Thanks guys, rated you all. :)
  32. Replies
    20
    Views
    952

    Re: Database without the database

    Update my OS's what?
  33. Replies
    20
    Views
    952

    Re: Database without the database

    http://s176171062.onlinehome.us/upload/fhh/1lo3jzp-j5kfii.png
    :D
  34. Replies
    20
    Views
    952

    Re: Database without the database

    I won't be doing any advanced searching, there will be 1000+ records each with a store name and a total amount spent there. Everytime I access the records I will be going through them all.


    I...
  35. Replies
    58
    Views
    59,732

    Re: VB - 31 Bit Encryption function

    Why bother, you came up with the idea and kept it simple for people looking to learn. I was just using it on rather large strings and had to speed it up so I posted it.

    Just so you know, your the...
  36. Replies
    20
    Views
    952

    Re: Database without the database

    I would like to have something more behind the data storage. Something a little faster then just
    Dim tmpFreeFile As Integer
    Dim tmpBinaryB() As Byte
    Dim tmpIndex As Long
    ...
  37. Replies
    20
    Views
    952

    [RESOLVED] Database without the database

    I am working on a receipt manager for personal use and was just wondering if anyone knew of a class, dll, or uber light weight database.

    By class I mean one that stores all the data in a file and...
  38. Replies
    58
    Views
    59,732

    Re: VB - 31 Bit Encryption function

    Changed a few things around and got the function executing faster.

    Option Explicit

    Private Declare Function GetTickCount Lib "kernel32" () As Long

    Private Function RandomBinaryB(ByVal...
  39. Replies
    11
    Views
    921

    Re: [RESOLVED] My CRC function is slow :(

    Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (pDst As Any, pSrc As Any, ByVal ByteLen As Long)
    Private Declare Function GetTickCount Lib "kernel32" () As Long
    Private Sub...
  40. Replies
    11
    Views
    921

    Re: [RESOLVED] My CRC function is slow :(

    Wait a second, Your CRC function isn't comming up with the same hash for a string as mine.
Results 1 to 40 of 299
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width