Search:

Type: Posts; User: AthlonArg

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. Replies
    14
    Views
    3,670

    Re: vb6 Development on Windows 11

    I like that I can see the controls with the Windows 11 GUI, but not the window. I can see the rounded edges when running it

    https://www.vbforums.com/images/ieimages/2022/07/11.png
    ...
  2. Replies
    16
    Views
    2,099

    Re: Using Word dictionary for spell check

    You can have the reference for Office 15 and use Office 2021 without Office 2010

    Ink Editor use Check Spelling Windows API, if fails is something wrong with your code
  3. Re: Code / Ocx / Dll for create / use mdi forms in a tabbed way ?

    Here you have that you want

    http://leandroascierto.com/blog/mdi-con-fichas/

    Credits: @leandroA
  4. Replies
    16
    Views
    2,099

    Re: Using Word dictionary for spell check

    I use the InkEdit Control (Work as RichText with same controls) and I can use right click to correct and underline the errors. In this way i don't need Word
    ...
  5. Re: VB6 + Word, print number on a bookmark

    Fixed, I had to recreate the bookmark, I can't rewrite the text
  6. Re: VB6 + Word, print number on a bookmark

    The problem is that I can't use a footer because the printed sheet number goes inside a table :confused:
  7. [RESOLVED] VB6 + Word, print number on a bookmark

    Dear, good day. I have the following problem. I need to print the number of the printed sheet in a word bookmark, for example if I print more than 10 the first sheet comes out with the number 1, the...
  8. Replies
    12
    Views
    1,539

    Re: Download bank statements

    Use Google translator, is Spanish

    Import and Export from VB6 to CSV

    https://www.programaresfacil.co/exportar-importar-datos-de-un-archivo-csv-en-visual-basic-6/
  9. Replies
    1
    Views
    640

    Re: using chrome instead IE

    I've never seen Selenium working with VB6

    With VBA (Excel) works fine
  10. Re: Shell_NotifyIcon: different popup windows styles (Win7)

    Use NOTIFYICON_VERSION_4

    Check LaVolpe reply https://www.vbforums.com/showthread.php?595990-VB6-System-tray-icon-systray&p=3682147#post3682147
  11. Re: show map in ricthexbox or in other element

    Check this https://github.com/ptv-logistics/leaflet-vb6
  12. Re: Looking for Custom UC checkbox on/off switch

    You can get "LabelPlus" User Control (https://www.vbforums.com/showthread.php?883707-LabelPlus) from Leandro Ascierto

    Here you have a proyect using LabelPlus and use that style...
  13. Replies
    5
    Views
    1,957

    Re: c4dll.dll not found

    The DLL is part of Sequiter CodeBase Engine, you can safe download the DLL from his Git Site https://github.com/MPSystemsServices/CodeBase-for-DBF
  14. Replies
    6
    Views
    4,271

    Re: Selenium Working in VBS/VBA but not in VB6

    Thanks, I'll try on a 32bits VM

    If I compile the project works fine, only show the error with IDE :eek:
  15. Re: Saving forms, projects, etc. always want to save in the VB98 folder on the C driv

    If you save the VB6 project first the path is where save it (App.path), if you run or at first save always point to VB installation folder (C:\program files\ms visual\vb98\ or where u installed it)
  16. Re: Saving forms, projects, etc. always want to save in the VB98 folder on the C driv

    Right click in the VB6 shortcut -> Properties
  17. Re: Saving forms, projects, etc. always want to save in the VB98 folder on the C driv

    Change the "Start In" location of the short cut to where you want

    https://www.vbforums.com/images/ieimages/2021/10/22.png
  18. Re: How do I require the user to enter in text the Currency?

    Private Sub Text1_LostFocus()
    Text1.Text = Format(Text1.Text, "Currency")
    End Sub
  19. Replies
    6
    Views
    4,271

    Re: Selenium Working in VBS/VBA but not in VB6

    Yes, even if press F2 I can see all objects

    https://www.vbforums.com/images/ieimages/2021/10/19.png



    Yes, I tried that but I got the error 429 "ActiveX can't create the object"
    ...
  20. Replies
    6
    Views
    4,271

    Selenium Working in VBS/VBA but not in VB6

    Hi!

    I'm a problem here, I'm using Selenium in VBS and Excel VBA and works perfect, but when I use it in VB6 I get the error "Class not registered". I use the same reference that Excel.

    Some...
  21. Re: [RESOLVED] How to Activate/Create Debugging Log for Desktop app

    Yeap, me.name the form name, you can use "Example" if you want
  22. Re: [RESOLVED] How to Activate/Create Debugging Log for Desktop app

    I have this module



    Sub LogError(ProcName$, ErrNum&, ErrorMsg$, Optional Procedure$)
    On Error GoTo ErrHandler
    Dim nUnit As Integer
    nUnit = FreeFile
    Open App.Path &...
  23. Re: Windows 11 Combo Box on frame themed ghosting

    Same error here. I tried as Windows compatibility, 16 bits color, run as admin, etc

    https://www.vbforums.com/images/ieimages/2021/10/15.png
  24. Re: Getting the ball rolling. Which VB6 projects are you working on?

    Yeap, Is the clinic where my wife works, I created the system 10 years ago, only had patients CRUD and appointments, now has a Administration (Like SAP, Checks, banks, providers, Salary, RRHH, Paid...
  25. Replies
    2
    Views
    1,307

    Re: Class not registered using Selenium

    Yes, I tried with webdriver, same error. I can't use Create Object because I need automate Whatsapp and Selenium.key not works with VBA
  26. Replies
    2
    Views
    1,307

    Class not registered using Selenium

    Hi everyone!

    I've this problem when I try to open Chrome with Selenium



    Private Sub Form_Load()
    Dim Chrome As New WebDriver
    Chrome.Start "chrome", "www.google.com"
    End Sub
  27. Thread: ucGridPlus

    by AthlonArg
    Replies
    43
    Views
    23,932

    Re: ucGridPlus

    Excelente! Tus UC me ayudaron mucho!!!

    Lástima que el Whatsapp ya no sirve y no se cuales son los ID de los divs para modificar
  28. Re: Getting the ball rolling. Which VB6 projects are you working on?

    Adding QR to a medical report so that patients can download it in digital format using QR code

    https://www.vbforums.com/images/ieimages/2021/09/16.png
  29. Replies
    11
    Views
    2,028

    Re: Add image to PictureBox to Word?

    Thanks for the answers, my first option was to save the image in a temporary file and then delete it with Kill, but I wanted to know if it was possible to pass it directly, but from what I see it is...
  30. Replies
    11
    Views
    2,028

    Re: Add image to PictureBox to Word?

    Is possible add image directly from picturebox? I got error (Picture1.picture or Picture 1.Image) when I tried
  31. Replies
    11
    Views
    2,028

    Add image to PictureBox to Word?

    Hi all!

    I've a doubt, I insert an image from vb to Word using


    objWord.Selection.InlineShapes.AddPicture("Path_To_image\test.jpg")

    Is possible insert the image from a picturebox? I created...
  32. Re: Why does chrome block downloading my application

    Use https://www.virustotal.com/gui/home/upload and check if detect some "virus"
  33. Replies
    26
    Views
    7,685

    Re: Copy Protection Ideas

    Here you have an activator

    https://translate.google.com/translate?sl=es&tl=en&u=https://www.programaresfacil.co/activador-de-software/
  34. Re: Program will not delete or allow me to use previous name when updating program

    How do you update the program? With the same program or call another EXE (Like update.exe)?

    PS: Try to not use the name update.exe, some AV lock this name
  35. Re: Deleting a folder that WIN 10 says Doesn't Exist

    If you rename the folder to "Red", can you delete it?
    What command do you use to delete?
    Can you attach the error?
  36. Replies
    6
    Views
    2,608

    Re: CommonDialog license not found.

    Open a notepad, paste this and save as RegVB6.reg and execute it (Backup always your regitry before)


    REGEDIT
    HKEY_CLASSES_ROOT\Licenses = Licensing: Copying the keys may be a violation of...
  37. Thread: IE -> Edge

    by AthlonArg
    Replies
    2
    Views
    995

    Re: IE -> Edge

    IE Webcontrol ActiveX is working OK with the last update of Windows 11

    https://www.vbforums.com/images/ieimages/2021/07/3.png
  38. Replies
    188
    Views
    38,370

    Re: Windows 11 coming soon

    Especially on a Sinclair ZX-81 :D
  39. Replies
    188
    Views
    38,370

    Re: Windows 11 coming soon

    A cracked DLL (appraiserres.dll) was release to install Win 11 on a Comodore64 Just replace the modify DLL in "Source" folder and run the Setup
  40. Re: Help me i'm drowning in my source code, hey dudes

    Are you always so pedantic in the responses or do you stop every 2 post?

    Each response of yours is, one to denigrate people and the other to help. You can be "valuable" in a forum, but if you are...
Results 1 to 40 of 55
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width