Search:

Type: Posts; User: PhuongNam

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: [VB6] Create a TaskPane For Ms Office : Excel - Word - Access - PowerPoint - Outl

    On my computer... I'm designing Web embeds in TaskPane and find it interesting too

    186603
  2. Re: [VB6] Create a TaskPane For Ms Office : Excel - Word - Access - PowerPoint - Outl

    You create a code project on your VB6 as UserControl.ocx and then follow the instructions of post #1.

    I uploaded the file very slowly, waiting for a long time
    you follow the following image and...
  3. Re: [VB6] Create a TaskPane For Ms Office : Excel - Word - Access - PowerPoint - Outl

    After successful execution, it will display as shown below

    I don't use Ms Office 2003 so I can't test it and I don't know if it's usable or not for Office 2003...

    good use from Ms Office 2007...
  4. [VB6] Create a TaskPane For Ms Office : Excel - Word - Access - PowerPoint - Outlook

    1/ About 2 years ago I wrote 1 AddIns Taskpane on VB6 which is very good for 32-bit Office. But when I copy to another computer, it gives me an error of missing libraries. I find the relevant...
  5. Use ActiveX DLL 32 bit and 64 bit without registering it

    1/ comes from my daily work needs or uses Excel to automate tasks and write code on VB6 ActiveX Dll...
    2/ Later I taught myself Delphi and initially wrote some auxiliary functions for my daily...
  6. Replies
    42
    Views
    3,807

    Re: Add-Ins, what do you use them for?

    I use this Addin and it works fine...but in some use cases it generates errors..

    https://www.vbforums.com/showthread.php?479449-VBTools-AddIn-Auto-indent-VB-code-!

    185896
  7. Replies
    2
    Views
    551

    Re: Docking problem in VB6's VBE

    I use Windows10x64 using the following code Please try it and see if it works



    Function DelRegValue(ByVal sKey As String, ByVal ValName As String)
    CreateObject("WScript.Shell").Run "cmd...
  8. Replies
    9
    Views
    2,853

    Re: Binary metamorphosis

    I try and use it very well...but it runs very slow and crashes with files larger than 1MB

    I also have a similar source code that creates a DLL into source code, then burns it to disc and uses it
    ...
  9. Replies
    21
    Views
    4,738

    Re: Common Dialog to select a folder ?

    your back function is missing


    Public Function SwapVtableEntry(pObj As Long, EntryNumber As Integer, ByVal lpfn As Long) As Long
    Dim lOldAddr As Long
    Dim lpVtableHead As Long
    Dim...
  10. Replies
    24
    Views
    2,541

    Re: vb6 standard dll

    I found in the following project that The trick's code has a similar function very well... can write more Tools to export more functions to File Library.def which is more convenient to use than...
  11. Re: [RESOLVED] How to protect exe file on ".RES"

    Black_Storm
    You can refer to the source code on github to see if it helps... they embed the resource in the DLL and use it from the EXE without having to register the DLL with Windows ...
  12. Replies
    107
    Views
    25,345

    Re: VB6 Web Site/App Server

    I use the old version so I report that error ( RC6.dll Version 6.0.0.4 )
    I just downloaded the new version and it's good to use
  13. Replies
    107
    Views
    25,345

    Re: VB6 Web Site/App Server

    Thank you, I don't understand why... when I run the code for the first time, it gives me an error... after I run it again, it doesn't give an error anymore... the code in that project involved many...
  14. Replies
    107
    Views
    25,345

    Re: VB6 Web Site/App Server

    I tried to test it on my machine but got the following error

    Public Function dateVbLocalToVbUtc(ByVal p_LocalDate As Date) As Date
    ''dateVbLocalToVbUtc = p_LocalDate - New_C.UTC.LocalOffs...
  15. Replies
    14
    Views
    2,037

    Re: C DLL for VB6

    1/ if you know c++ then write a DLL and then export the 32 bit API and use it

    2/ if you know Delphi, that's fine too... I'm practicing writing on Delphi to export API and COM functions in common 1...
  16. Re: bass.dll for vb6,where is new version? How to intercept a section of MP3 and save

    It's all available on Delphi... You just need to use it and use it
    For example, SQLite old Delphi versions must bring SQLite3.dll, the new Delphi version has 1 Unit, just Use it and use it.

    And...
  17. Re: [RESOLVED] VB6 Resource Editor Missing from Add-Ons

    I use Windows10_x64 bit ... you can see the picture it's a Folder with the file RESEDIT.DLL

    182326
  18. Re: [RESOLVED] VB6 Resource Editor Missing from Add-Ons

    I have the same problem as you described
    Copy the following code and save it as *.vbs



    With CreateObject("Scripting.FileSystemObject")
    Dim DLLPath: DLLPath =...
  19. Re: [VB6] - Module for working with COM-Dll without registration.

    Another way is to use the following function... it seems to be similar to New_c.RegFree.GetInstanceEx in Olaf's vbRichClient5.dll
    Below is a part of its many association functions
    The following...
  20. Re: firedac Control OCX FOR VB6, Faster than Microsoft ADO

    1/ You can refer to the following link For FireDAC
    http://delphiprogrammingdiary.blogspot.com/2018/10/firedac-data-access-components.html
    https://docwiki.embarcadero.com/RADStudio/Sydney/en/FireDAC...
  21. Replies
    4
    Views
    2,381

    Re: How to protect .dll?

    You use Delphi to write DLL API or DLL COM is better security than C#
  22. Re: How do I increase the maximum allowed memory allocation in VB6?

    From the suggestion of lesson 2, I just tried it
    you can try it

    1 / Run cmd copy the following code and paste it in

    "C:\Program Files (x86)\Microsoft Visual...
  23. Re: How do I increase the maximum allowed memory allocation in VB6?

    I recently tried the following code Run cmd
    "C: \ Program Files (x86) \ Microsoft Visual Studio \ VC98 \ Bin \ dumpbin.exe" / HEADERS "C: \ Program Files (x86) \ Microsoft Visual Studio \ VB98 \...
  24. Re: Bind Cdecl Api To vb6 Function(stdcall),support run in IDE

    On VB6 I don't know ... but on Delphi, you can use the following code to embed the DLL in the Resource DLL and use it from memory without having to export that DLL to finish loading it ...
    You can...
  25. Re: Simple and fast, lightweight HashList-Class (no APIs)

    I just tried to copy this post code and try to build it to DLL and try it in VBA environment, the result of hash table runs slower than Ms's Dictionary !!!
    Also on VB6 try with: Const Count As Long...
  26. Replies
    4
    Views
    1,651

    Re: Vietnamese string displays as ?

    days before I got WindowsXP I didn't use it I didn't know ...
    Also from the latest Windows7 To Windows10 is Version 20H2, you can just use the default Windows Font ... and the typing method for it...
  27. Replies
    17
    Views
    3,602

    Re: Over 600 viewing VB6 Forum

    VB6 has long since stopped supporting and programmers are slowly moving away from it to other programming languages

    I still use the written vb6 (DLL) automation application for Ms Excel and Ms...
  28. Re: Access 2007 "Provider cannot be found" by VB6 after MS OneNote install.

    1 / I use VB6 on Windows10x64 and Ms Office 2016x32, Ms Office 365x32 has link the Ms office libraries used very well

    2 / When I switch to Ms Office 2016x64 and Ms Office 365x64, when using ADODB,...
  29. Replies
    8
    Views
    2,146

    Re: MySQL (with VB6) questions

    I have the same idea as yours ... however I want to be able to do it all myself and don't want to depend on * other people's .dll because I want to learn and develop it myself ...

    I have consulted...
  30. Re: VB6 IIS-Configuration for RoundTrip-Debugging of http-RPCs

    Thank you very much ... I still have not figured out how to use the code in the Demos that you put up here ... if I keep asking stupid questions over and over, it just makes you angry. only ... so...
  31. Re: VB6 IIS-Configuration for RoundTrip-Debugging of http-RPCs

    Thank you for agreeing with your suggestion
    1 / I have configured iis.msc as instructed in lesson 1, finished

    2 / modADODB.bas is in song # 58, not song # 52
    179171

    3 / I read and re-read the...
  32. Re: VB6 IIS-Configuration for RoundTrip-Debugging of http-RPCs

    this topic is great ... this post too can you please continue ???
    Writing a Demo DB for the server ???
  33. Replies
    9
    Views
    4,696

    Re: VB6 MDB-RemoteAccess via http(s)

    Thank you for the guidance
    Basically I did Ok ... so I want to be more flexible in Depending on Database.mdb I gave the following idea, how to handle it

    1 / I write a function from Server that...
  34. Replies
    9
    Views
    4,696

    Re: VB6 MDB-RemoteAccess via http(s)

    I just tried it and ran very well ... I found out a little bit to understand its method ... so how do I perform the following 3 functions from Client to Database.accdb Server ???

    1 / DELETE * FROM...
  35. Replies
    9
    Views
    4,696

    Re: VB6 MDB-RemoteAccess via http(s)

    That's great you ... a good solution

    1 / Is there any other way to write code to replace vbRichClient5.dll, right?
    2 / How can the Clients access the Demo.mdb file on the Server ???
    I have just...
  36. Replies
    9
    Views
    4,696

    Re: VB6 MDB-RemoteAccess via http(s)

    I use Windows10x64
    Download your files to run the test, the error is shown below
    So what library is it missing or how to configure it to use it ???
    Have I seen the instructions but did not make...
  37. Replies
    7
    Views
    7,387

    Re: VB^ - SimpleServer

    Sorry the day before, I asked without a detailed description ... after a while I researched and couldn't do it, please help me
    I describe as follows:
    1 / At the Server App.path, create a File...
  38. Replies
    7
    Views
    7,387

    Re: VB^ - SimpleServer

    Hi, couttsj
    I have read a lot of your articles and find them very interesting and useful
    can you show me a little bit ?!

    1 / When from the Server, I take a data area into the Array
    for example:...
  39. Thread: ADO on Lan

    by PhuongNam
    Replies
    18
    Views
    3,166

    Re: ADO on Lan

    On this vbforums.com I searched for 2 consecutive days to see if there is a sample code Server + Client (VB6) that uses MS Access as Database.accdb to access data via TCPIP, not to refer to writing...
  40. Thread: ADO on Lan

    by PhuongNam
    Replies
    18
    Views
    3,166

    Re: ADO on Lan

    When I have free time, I will research the code and apply it to see how it works very well
    https://www.vbforums.com/showthread.php?851649-VB-SimpleServer
    However, when applying it from the Client...
Results 1 to 40 of 44
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width