Search:

Type: Posts; User: joshyfrancis

Search: Search took 0.21 seconds.

  1. Re: vb6 Api ReadFile,SaveFile with NtReadFile,NtWriteFile

    Is there any advantage over kernel32 readfile and writefile ? And still using OpenFile from kernel32. Please explain.
  2. Replies
    43
    Views
    27,785

    Re: ucGridPlus

    :thumb: Excellent work
  3. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    Thank you I have updated this.
  4. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    Thank God, I figured it out.
    182373
    Please download updated archive and try now.
  5. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    Thank you for your valuable suggestions. I have revised code according to that. Please download and test.
  6. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    As you previously mentioned about Unicode Chinese characters, that may break the frame parsing, may be a reason for your problem. If you can capture and provide me the raw packets , I could analyse...
  7. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    Please let me know which browser you are using and which version. I tried Interenet explorer 11 and is ok.

    182349
  8. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    I have updated the archive. Please download again and try.
  9. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    Thank you.

    I was not handling the continuation frames. Now it is updated. Please download the archive again.

    If you click continuously on the Send Lengthy Message Button without delay it will...
  10. Replies
    5
    Views
    1,952

    Re: WebSocket: recv function crash

    I have fixed your crash. The problem was with the api declaration
    Private Declare Function recv Lib "ws2_32.dll" (ByVal s As Long, ByVal buf As Long, ByVal lLen As Long, ByVal flags As Long) As Long...
  11. Replies
    25
    Views
    9,096

    Re: vb6 Websocket Server ssl

    I have revised frame decoding and capturing packets. Please download archive and test.
  12. Replies
    4
    Views
    2,113

    Re: Floating Desktop Date

    Nice. There is one thing to fix Image2 picture property is missing.



    Anyway I made my own
    181656
  13. Replies
    25
    Views
    9,096

    Re: vb6 Secure Websocket

    There is a little correction to Function hybi10Encode


    ElseIf payloadLength > 125 Then
    frameLength = frameLength + 1
    ReDim Preserve frame(frameLength)...
  14. Replies
    25
    Views
    9,096

    Re: vb6 Secure Websocket

    Please try this in

    Private Sub ctxServer_DataArrival(Index As Integer, ByVal bytesTotal As Long)
    ...

    ctxServer(Index).GetData sRequest
    ...
    vSplit = Split(sRequest, vbCrLf)
    ' If...
  15. Replies
    25
    Views
    9,096

    Re: vb6 Secure Websocket

    In the data arrival section http request header parsing is done but not handling unicode characters.
    Header must have vbcrlf , if not it is data. In this case the splitting by vbcrlf must be...
  16. Replies
    25
    Views
    9,096

    Re: vb6 Secure Websocket

    Nice suggestion too. Thanks for reply. Thanks @wqweto for the quick updation.
  17. Replies
    25
    Views
    9,096

    vb6 Websocket Server ssl

    Secure webSocket Server in Pure VB6 no external Libraries or ActiveX.
    Now wss://localhost:8088 is possible.
    Now Lengthy(char length more than 65536) messages possible.

    Thanks goes to :
    Vladimir...
  18. Replies
    5
    Views
    2,749

    Re: Data Bag Version 2 with JSON support

    in frmDataBagTest
    Const iterations As Long = 100000' reduce this to a lower number , to a 100
    then check the debug values . And also there is a hidden command button(UDT Array List) to check...
  19. Replies
    5
    Views
    2,749

    Re: Data Bag Version 2 with JSON support

    Thanks. I tried hard to beat Property Bag and Collection, but I couldn't.:(
  20. Replies
    5
    Views
    2,749

    Data Bag Version 2 with JSON support

    Property Bag alternative - Data Bag Version 2 Class
    This is an alternative to Property Bag class. It supports all variable types except vbObject, vbDataObject and vbUserDefinedType.
    (For the...
  21. Re: Property Bag alternative - Data Bag Version 2

    Hi check the new version 2
  22. Re: Property Bag alternative - Data Bag

    Property Bag class is closed source. I needed one storage class across multi platforms, Windows, Linux etc. Now I can easily code in Linux to read from the storage. And I am planning too.
  23. Property Bag alternative - Data Bag Version 2

    Property Bag alternative - Data Bag Version 2 Class
    This is an alternative to Property Bag class. It supports all variable types except vbObject, vbDataObject and vbUserDefinedType.
    (For the...
  24. Replies
    14
    Views
    13,845

    Re: VB6 Tab Control

    Hi, Thank you for your interest in this project. Can you please attach the problematic forms here with source code so that I may check and reproduce the conditions that caused the bug.
  25. Replies
    14
    Views
    13,845

    Re: VB6 Tab Control

    Private Sub UserControl_Resize()
    On Error Resume Next
    CreateGraphicsDC
    'Uncomment below line
    Draw
    Me.Refresh
    End Sub

    If the above solution doesn't work, please check...
  26. Replies
    6
    Views
    7,651

    Re: [VB6] Crystal Report API

    Yes if Crystal Reports (I am using version 9.22) costs any money.
  27. Replies
    6
    Views
    7,651

    Re: [VB6] Crystal Report API

    Yes if Crystal Reports 9.22 costs any money.
  28. Replies
    6
    Views
    7,651

    Re: [VB6] Crystal Report API

    Crystal Report API has 16 bit support. The API is taken from Crystal Reports 9.22 Setup \Tools\Developers\global32.bas. If you need 16bit support then use functions from crwrap.bas.
  29. Replies
    6
    Views
    7,651

    [VB6] Crystal Report API

    Some of the Crystal report API functions are exposed here. I was searching for something like this but found little help. And finally I came up with this. Advantages are :

    Print Preview can be...
  30. Replies
    14
    Views
    13,845

    Re: Tab Control

    About zebra stripes:
    Don't worry, please close the form design view and open it again. We don't need any references. When we add/remove any reference or activex control , usercontrols in forms...
  31. Replies
    14
    Views
    13,845

    Re: Tab Control

    :D Thanks
  32. Replies
    14
    Views
    13,845

    VB6 Tab Control

    Finally I could made a Tabcontrol that we can add controls as in MS tab control.
    Features

    Design time Tabbing
    Tab Reordering
    Scrolling Spinner
    Enable Disable Tabs
    Skin Support
Results 1 to 32 of 32



Click Here to Expand Forum to Full Width