Page 2 of 2 FirstFirst 12
Results 41 to 55 of 55

Thread: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

  1. #41
    New Member
    Join Date
    Aug 2022
    Posts
    2

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Hi,

    I want to use websocket in MS Access VBA.
    Is it possible you create an ocx?

    Thx in advance

  2. #42

    Thread Starter
    Lively Member vbLewis's Avatar
    Join Date
    Feb 2009
    Location
    USA
    Posts
    127

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Quote Originally Posted by KarelK View Post
    Hi,

    I want to use websocket in MS Access VBA.
    Is it possible you create an ocx?

    Thx in advance
    Hi KarelK,
    Yes its possible to make an OCX, it originally was in ocx form when I first released it. I plan on making a dual exe/ocx release soon but havenet had the time. You have to move a few declarations around to create the OCX its pretty simple.

    As far as using it from ms access vba, I have no idea if that will work but it should if vba can consume OCX's.

    Stay tuned for ocx/exe release!

    regards,
    Lewis

  3. #43
    New Member
    Join Date
    Aug 2022
    Posts
    2

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Thx in advance,

    In access we kan put the ocx on a form and declare it as an object.

  4. #44
    Member
    Join Date
    Apr 2003
    Posts
    33

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    The version number in the files is 1.10. Are the files in this download not up to date, or did you just not update the version number in the files? Thanks

    'VBWebsocket 1.10 - BETA
    'release date: 4/10/2022

  5. #45

    Thread Starter
    Lively Member vbLewis's Avatar
    Join Date
    Feb 2009
    Location
    USA
    Posts
    127

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Quote Originally Posted by elektrobank View Post
    The version number in the files is 1.10. Are the files in this download not up to date, or did you just not update the version number in the files? Thanks

    'VBWebsocket 1.10 - BETA
    'release date: 4/10/2022
    Sorry for the belated reply, my hardrive died and Ive been working on getting my system back up and running. I'm pretty sure that i just forgot to update the version numbers inside the files, the upload is the updated version.

    It has the SendAdvanced() function and the updated CollapseFramesEx() function which is in the new update. I'll try to make sure to update the numbers inside the files on the next update which will probably be a dual source of an Exe and an Ocx.

  6. #46
    PowerPoster
    Join Date
    Jan 2020
    Posts
    5,538

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    it's only for websocket client,if it's support for websocket server,That would be a great product.

  7. #47
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    It seems that the certificates are expired, also tried using it with newest VBAsyncSocket which does infact work correctly to a HTTPS page.
    Error message:
    Error! 1016: Event Type: Receive/Read -2147221504: Description: The certificate or one of the certificates in the certificate chain does not have a valid signature.

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

  8. #48
    Registered User
    Join Date
    Mar 2025
    Posts
    1

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Hello!

    I ran into the following problems

    ***error mesg***

    Error! 1016: Event Type: Recieve/Read -2147221504: Description: No certificate subject name matches target host name

    ***************

    It seems that the local certificate is not found, how to solve it?

    Thanks!

  9. #49

    Thread Starter
    Lively Member vbLewis's Avatar
    Join Date
    Feb 2009
    Location
    USA
    Posts
    127

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    If you can tell me where you were connecting to maybe I can test it and reproduce the problem, alternatively you could just upgrade the Files in the project to use the latest AsyncSocket code if it is working for you.

  10. #50
    PowerPoster wqweto's Avatar
    Join Date
    May 2011
    Location
    Sofia, Bulgaria
    Posts
    6,167

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Quote Originally Posted by vbLewis View Post
    If you can tell me where you were connecting to maybe I can test it and reproduce the problem, alternatively you could just upgrade the Files in the project to use the latest AsyncSocket code if it is working for you.
    Btw, you can add Insecure property to the user-control (default to True) which skips certificate validation in cTlsSocket if you are already fed up with all these novice questions about certificate errors :-))

    cheers,
    </wqw>

  11. #51
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Thank god. It's finally fixed. Now I can actually focus on implementing ws to my legacy Discord client rather than writing boilerplate code while watching others in C++ etc just use a library.

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

  12. #52
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Quote Originally Posted by vbLewis View Post
    If you can tell me where you were connecting to maybe I can test it and reproduce the problem, alternatively you could just upgrade the Files in the project to use the latest AsyncSocket code if it is working for you.
    Anywhere tbh. But on WinXP SP3. Having updated root doesn't matter. Normally with mdTlsThunks I did get it to work on XP.

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

  13. #53
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    1599.219 [ERROR] The certificate or one of the certificates in the certificate chain does not have a valid signature &H80040000 [Form1.pvInitHttpRequest, cTlsSocket.pvPkiCertValidate]

    Weird, BareboneThunks works but not TlsSocket.

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

  14. #54
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    Hello sir, I have done a fix to both the latest VbAsyncSocket and the 1.11 version of the VBWebSocket to work together.

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

  15. #55
    Fanatic Member gaouser's Avatar
    Join Date
    Mar 2022
    Location
    Turkey, down the old sides of Fatih
    Posts
    607

    Re: [VB6] Visual Basic 6 Client Websocket Control 1.11 BETA

    A single basic Private->Public change in the latest VbAsyncSocket's Thunks module. And a function replacement in your code.

    got nuthin' to do but to make a new project, hype, then give up

    Check out all my cool stuff btw
    VB: EveryDiscord, a Discord client made fully in VB6 | MSPaint Modifier, a VB6-based MSPaint hooking engine, experimental | OpenIM, a fully VB6 instant messaging service based on TCP/IP connections | Kadooki (Overall the AltWWW project), the WWW re-imagined by me with continuations of HTML3.2's parts. | ClaFeed, A little feed algorithm I have been developing for a Twitter-style system. | CfmOS PC, my project CfmOS ported to VB6 in order to prototype faster, often lags on updates though!

    C: LegacyResource, a little ResHacker ripoff | CfmOS, A mobile OS designed to mimic AOSP (Stock Android) on an ESP32-S3, featuring a full bytecode architecture

Page 2 of 2 FirstFirst 12

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width