Search:

Type: Posts; User: Arnoutdv

Page 1 of 12 1 2 3 4

Search: Search took 0.08 seconds; generated 44 minute(s) ago.

  1. Re: Another complicated query but perhaps possible

    Maybe you should start with writing down all requirements and use cases first.
    Now you ask for A, you get a solution for and then you say, but I can’t get B.
    Then you get an answer for B, and then...
  2. Replies
    32
    Views
    3,339

    Re: Delete duplicate in access table

    Use a Count and a Group By in the query
  3. Replies
    59
    Views
    1,522

    Re: Adding a huge number of records to a MariaDB

    I assume you are aware of these concepts:
    https://en.wikipedia.org/wiki/High-frequency_trading
    https://www.investopedia.com/terms/h/high-frequency-trading.asp...
  4. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    I use the vsFlexGrid and always use basic coding statements like:


    For lRow = .FixedRows To .Rows - 1
    '
    NofActiveCols = .Cols - .FrozenCols - .FixedCols
  5. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    Why do you need them? They are simple additions and subtractions of the current available properties
  6. Re: Running a x32 application in x64 environemtn

    I also use CreateObject.
    But I don’t use Excel as a database, just need to read values.
    Then I often use the Excel object to save the current worksheet to a tab delimited file and process this...
  7. Re: Determine which computer is running Excel file

    Don't put in a Const but in a Public variable.
  8. VS 2010 Re: vb2010 - how calculate the hit direction?

    The angle before hitting a wall is the same as the angle when bouncing of, but seen from a different perspective.
    When calculating the angle then it's 180-Angle

    See this article on WikiPedia:...
  9. Replies
    25
    Views
    1,190

    Re: Installing VB6 on Windows 11

    Try the method as described in this thread by Elroy:
    https://www.vbforums.com/showthread.php?852227-Installing-the-VB6-IDE-on-Windows-10-64-bit
  10. Re: Running a x32 application in x64 environemtn

    I have no problem using vb6 with office 64bit versions.
    But I do not use Ado to communicate with Excel
  11. Replies
    5
    Views
    278

    Re: Create Layers in photoshop

    So some sort of Photoshop automation?
    https://github.com/Adobe-CEP/CEP-Resources/tree/master/Documentation/Product%20specific%20Documentation/Photoshop%20Scripting
  12. Replies
    5
    Views
    278

    Re: Create Layers in photoshop

    Using Photoshop or VB6??

    Or do you want to simulate Photoshop from VB6?
  13. Re: Creating ADODB Connection to Excel Workbook

    Office and VBA and it's drivers are all 64bit.
    VB6 is a 32bit application and can only use 32bit drivers.
    It seems that there is no 32bit version of Microsoft.ACE.OLEDB.12.0 installed, available or...
  14. Thread: Mystery bug

    by Arnoutdv
    Replies
    8
    Views
    446

    Re: Mystery bug

    What value of did you expect?
    Is the program stuck in an endless loop?
    You really should provide more information
  15. Re: Decompressing a split ACE archive along with progress bar

    There is an unace.dll, the source has never been made available.
  16. Re: Decompressing a split ACE archive along with progress bar

    Why not use an existing tool?
    Like PeaZip: https://peazip.github.io/ace-files-utility.html
  17. Replies
    6
    Views
    520

    Re: Major issue: Old zip being corrupted.

    Thanks for sharing guys!

    I managed to download the ZIP file from this codebank submission by dilettante:
    https://www.vbforums.com/showthread.php?531321-VB6-Huge-(-gt-2GB)-File-I-O-Class
    Using...
  18. Replies
    19
    Views
    894

    Re: capitals letters only and..

    I think validation should be done when the user exits the input field.
    Not by trying to modify/limit the input on the fly.

    I would let users input a text value.
    In the validate event I would...
  19. Thread: Closing Form

    by Arnoutdv
    Replies
    3
    Views
    380

    Re: Closing Form

    Post the relevant code and the error number and message
  20. Replies
    43
    Views
    49,522

    Re: "continue" in vb6?

    Why not use Do .. Loop, though the effect of multiple exit clauses is not the same as using continue
  21. Replies
    5
    Views
    931

    Re: Visual Basic 6 compiler

    Visual Basic 6 comes with a compiler.
    Or are you looking where to get VB6 Professional?
  22. Thread: Beizers+VB6

    by Arnoutdv
    Replies
    1
    Views
    369

    Re: Beizers+VB6

    You mean bezier curves?
    https://www.vbforums.com/showthread.php?727765-BSpline-based-quot-Bezier-Art-quot
  23. Re: User control seems to make IDE freeze up

    User Controls execute code when adding them to a form.
    Maybe you can add some break points in the user control?
  24. Replies
    1
    Views
    284

    Re: read node in XML string

    Interesting:
  25. Thread: IDE Problems

    by Arnoutdv
    Replies
    4
    Views
    616

    Re: IDE Problems

    Are the basic references automatically checked when you create a new project?
  26. Thread: Is it worth?

    by Arnoutdv
    Replies
    11
    Views
    944

    Re: Is it worth?

    I agree Niya, but I fail to understand the point made by gaouser about ThunderCommandButton

    If you translate/transplile VB6 to C(++) then you will still be targeting the Windows platform....
  27. Replies
    76
    Views
    58,397

    Re: [VB6] Direct3D9.

    But you are using Windows and VB6? :rolleyes:
  28. Replies
    76
    Views
    58,397

    Re: [VB6] Direct3D9.

    Search for a lossless screen recorder, like https://www.wisdom-soft.com/products/autoscreenrecorder.htm
    And the free CamStudio also support LossLess encoding
  29. Replies
    10
    Views
    582

    Re: Out of memory somewhat reproducable

    The error you get in the Youtube clip is a VB6 IDE error, how do you want to debug the IDE itself :confused:
  30. Replies
    10
    Views
    582

    Re: Out of memory somewhat reproducable

    You have an out of memory in the IDE, wow
    When you open the task manager, how much memory does VB6 use?
    How large are your modules? I believe there is a maximum for the number of characters a...
  31. Replies
    2
    Views
    281

    Re: SPLIT string in array

    You already have the verb “split”, did you consider looking this up in help?
  32. Re: Implementing SQLite to store gigabytes (or even terabytes) of BLOB data

    Have you considered NoSql databases?
    Or AWS data storage?
  33. Re: "Flash" on showing a form, programmatically colored

    Did you also set tried these form properties:
  34. Replies
    48
    Views
    2,111

    Re: Starting over - (phase 1)

    Write the project :lol:
  35. Replies
    648
    Views
    141,811

    Re: Hamilton 5x World Champion ?

    Last opportunity to change something and try something different.
    But we have to wait another year
  36. Replies
    2
    Views
    315

    Re: load a form with a specific DB entry

    What have you done so far and where did you get stuck?
  37. Re: How Create XML (SAFT FILE FOR BILLING) LIKE THE MENTIONED FILE IN VB6

    XML is just a basic text file, normally in UTF8.
    If you have a dataset with all the data then you can use a simple stringbuilder class, but for a simple test basis string operations will also work....
  38. Replies
    45
    Views
    8,451

    Re: VB6 32bits accessing Office 64bits

    Can I keep the reference to the Microsoft Excel 16.0 Object Library, or not?
    If not then I have to replace all used Excel constants from the library with literal values
  39. Replies
    45
    Views
    8,451

    Re: VB6 32bits accessing Office 64bits

    I got positive feedback from the client, the routines which use Object instead of Excel.* references work fine!
    Thanks for all the feedback!
  40. Re: "Flash" on showing a form, programmatically colored

    Form2 should have a complete different look, it looks more like a scientific calculator, with lots of buttons
Results 1 to 40 of 455
Page 1 of 12 1 2 3 4



Click Here to Expand Forum to Full Width