Search:

Type: Posts; User: Thierry69

Page 1 of 13 1 2 3 4

Search: Search took 0.11 seconds.

  1. Thread: Dapper

    by Thierry69
    Replies
    9
    Views
    1,294

    Re: Dapper

    When matching data from 1 table, I can anderstand.
    How it works when you need to do queries on multiple tables joined ?
  2. Thread: asdfasdfasdf

    by Thierry69
    Replies
    5
    Views
    635

    Re: asdfasdfasdf

    190548
  3. Thread: Dapper

    by Thierry69
    Replies
    9
    Views
    1,294

    Re: Dapper

    Seems intersting.
    I'll investigate it when I'll have time !
    Is it possible to use it to make calls to micro services over the web ?
  4. Thread: Dapper

    by Thierry69
    Replies
    9
    Views
    1,294

    Re: Dapper

    Seems interseting.
    I'll investigate it when I have time
  5. Re: Speed difference between exe and IDE ? (At least on Win10)

    My Doevents implementation

    Private Declare Function GetQueueStatus Lib "USER32" (ByVal qsFlags As Long) As Long
    Private Const QS_KEY As Long = &H1
    Private Const QS_MOUSEBUTTON As Long = &H4...
  6. Replies
    4
    Views
    309

    Re: Bon Lundi Gras!

    I didn't knew it was also in US.
    It is at least the case in Belgium, and the Qwarmé in Malmedy next Sunday
  7. Re: How Create XML (SAFT FILE FOR BILLING) LIKE THE MENTIONED FILE IN VB6

    ' Create the XML DOM document object
    Dim xmlDoc As Object
    Set xmlDoc = CreateObject("MSXML2.DOMDocument")

    ' Create the root element and set its attributes
    Dim root As Object
    Set root =...
  8. Replies
    45
    Views
    8,451

    Re: VB6 32bits accessing Office 64bits

    No reference to Excel.
    Yes, you need to implement enum etc...
  9. Replies
    19
    Views
    1,028

    Re: VB6 color code from htlm color name

    Here is my function


    Private Function ColorToRGB(sColor As String) As Long

    ' #VBIDEUtilsERROR#
    On Error GoTo ERROR_ColorToRGB

    Dim rgbColor As Long
  10. Replies
    45
    Views
    8,451

    Re: VB6 32bits accessing Office 64bits

    Exactly
    I have 32 Office bits nmy computer, and most of the clients are 64 bits
    and no problems
  11. Replies
    45
    Views
    8,451

    Re: VB6 32bits accessing Office 64bits

    Have you tried without any explicit reference ?
    In my apps, I don't have any references set. Everything is done dynamically and no problems.
    NB : I don't create Pivot Tables within my code
    Maybe a...
  12. Re: Read Barcode & QRCode within VB6 using ZXing

    here it is https://www.dropbox.com/t/8QVLZETagJR8kukc
  13. Re: Read Barcode & QRCode within VB6 using ZXing

    You right, sorry
    https://github.com/micjahn/ZXing.Net
    Maybe you need to compile it (.NET)
    CommandLineDecoder.exe (I renamed it to zx for me)

    If I can post compiled version I could do it
  14. Re: Read Barcode & QRCode within VB6 using ZXing

    you can download it from the posted URL
    EXE can't be posted on the forum
  15. Read Barcode & QRCode within VB6 using ZXing

    Here is code to read Barcode & QRCode using ZXing

    Just download the library, create the form, add the button & list



    Option Explicit

    ' *** Structures Needed For Registry Prototypes...
  16. Replies
    68
    Views
    19,189

    Re: [VB6/VBA] QR Code generator library

    I just posted in the codebank code Barcode & QRCode reader using ZXing
  17. Re: Getting the ball rolling. Which VB6 projects are you working on?

    On my side, nothing too much visual.
    Just implementing IA to enhance the OCR module of my applications.
    IA will also anwser to questions and help users based on all the data within the apps (PDF,...
  18. Code to Paste Excel data from the clipboard in a Grid

    I needed for one of my application to Paste selected part of Excel sheet, including text, Format, colors.... into a grid (here ssGrid2 from Steve)
    After doing some research, I never saw such code...
  19. Re: Testing an internet link without opening browser

    Here is the code I use

    Public Function Global_IsURLGood(sURL As String, Optional bCheckDesign As Boolean = True) As Boolean
    '...
  20. Replies
    47
    Views
    3,199

    Re: twinBasic-IDE german translation

    NB : If French translation is needed, I can do it/help
  21. Replies
    15
    Views
    1,130

    Re: Out of Memory error

    My 2 main projects have more than 500k off lines, 262 forms, 8274 sub/functions...
    No out of memory.
    Check if you use GDI, release all objects etc...
    it takes time of course
  22. Re: French apostrophe is causing great trouble !!

    just double the '
  23. Replies
    9
    Views
    586

    Re: Which user has the database open?

    I use this code to open the LDB file and return the connected users
    ' #VBIDEUtils#************************************************************
    ' * Author :
    ' * Web Site :
    ' *...
  24. Replies
    4
    Views
    2,089

    Re: Trying to install MiniGPT-4 locally->

    I have installed Llama GPT in a docker on my synology, it works, but quite slowly (lack of ram & CPU certainly)
    I am looking also for offline IA that could feed with csv, PDF, txt... for questions
  25. Re: the AIAct goes to show the absolute need for offline AI

    I am starting investigating offline IA with custom feed.
    I think it could be promising
  26. Re: PDFAssist, tool adding context menu to Explorer to split, merge... PDF

    I think PDF protected are not managed.
    Just compile the sources to avoid message of defender
  27. Replies
    3
    Views
    540

    Re: Adding Clos, Open Method ... to a class

    wqweto, good ideas.
    For the moment, the class is within the project, no external library.
    But good idea to compile it in TB.

    Why is it faster ?
    everything is loaded into an array. So the...
  28. Replies
    3
    Views
    540

    Adding Clos, Open Method ... to a class

    Well,
    I am currently enhancing my FastADO class to replace 100% the ADODB.Recordset
    The main purpose will be to access DB easilly (DB MS Access, SQL Server, and Micro services on Azure) without any...
  29. Re: [VB6, twinBASIC] Getting the full path of all processes when not elevated

    Very good, and also very nice to have the same code/project running in VB6 and in Twin.

    If it should be always like that, this will force on mid term the use of TwinBasic (not ready on my part, I...
  30. Replies
    15
    Views
    1,241

    Re: What type of control is this?

    Tx.
    IT could he instresting by writing a full small project in VB6 full XAML, like a Calc.
    When I'll find a bit of free time I'll try.
    For the moment, I am implementing IA in my VB6 app, it is the...
  31. Replies
    15
    Views
    1,241

    Re: What type of control is this?

    Exactly Franky, very nice sample
    It would be very nice if you post it in the codebank with samples to manage events etc... to communicate in a kind of real VB6 app.
    NB : htere is no way to run it...
  32. Replies
    6
    Views
    835

    Re: VB NET->VB6 functions

    NB : I am stupid, I just configured the starting external app to VB6, and I can debug :)

    and as I tough, error on the line
    Dim response = oHTTPClient.GetAsync($"/api/v1/document?documentId=" &...
  33. Replies
    6
    Views
    835

    Re: VB NET->VB6 functions

    In the VB6 App, I just have an error return.
    I haven't found the way to make run the .NET com in debug and waiting the instanciation of the VB6.
  34. Replies
    6
    Views
    835

    Re: VB NET->VB6 functions

    Thanks
    I suceeced creating it and call from VB6. But an error occur in the .NET part.
    So to debug it I created a small app in .NET to test it, and all is ok.

    Any idea ?
    this is mainly the code...
  35. Replies
    6
    Views
    835

    VB NET->VB6 functions

    Hi

    I don't know why, my brain is dead :(

    I have written several function in VB.NET and I want to call them from VB6.
    I never wrote an ActiveX DLL in Visual Studio 2019 that could be called...
  36. Re: Creating a CustomTaskPane - VB6 addin for Office

    I wrote some addin for office in VB6. Then I migrate to VB.NET in order to support 64 bits.
    It is not complicated to write an addin in VB.NET (my last one is for Outlook)
    I mainly use Ribbon (to...
  37. Re: Is there a code to compress and repair the database, I mean an Access database?

    I use quite a lot Acess DB for all my app.
    And I even have DB that were more than 5Gb (yes, I know, quite a lot). So the solution I split DB in multiple DB and attach all the table by code.

    For...
  38. Replies
    7
    Views
    1,197

    Re: Automatic translation of sentences

    Yes you need to have a DeepL Key, forgot to mention it
  39. Replies
    7
    Views
    1,197

    Automatic translation of sentences

    In some other thread, there are discussion about auto spellchecking.

    Here is the code I use in all my applications to do automatique translation of sentences.

    NB : You need to have a DeepL key...
  40. Replies
    23
    Views
    2,572

    Re: InkEd.dll Problem

    Exactly. For Spellcheck, I don't use anymore InkEdit.
    The solution I use is the following class, embeded in own Textbox and all the textbox in my app are using this Textbox, that includes...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width