Search:

Type: Posts; User: fabel358

Page 1 of 4 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    5
    Views
    451

    Re: InnoSetup and "Wacatac.b!ml"

    I sent my application to Microsoft Defender as a false positive. I'm waiting for any response.
  2. Replies
    14
    Views
    607

    Re: Find/Replace Dialog

    Attribute VB_Name = "Module1"
    Type FINDREPLACE
    lStructSize As Long
    hwndOwner As Long
    hInstance As Long
    flags As Long
    lpstrFindWhat As Long
    lpstrReplaceWith As Long
    ...
  3. Replies
    5
    Views
    451

    Re: InnoSetup and "Wacatac.b!ml"

    It appears that "InnoSetup" is the problem instead. In fact, using version 5.5.5a, VirusTotal does not highlight anything, while with version 6.2.2 the message "SecureAge Malicious Trapmine...
  4. Replies
    5
    Views
    451

    InnoSetup and "Wacatac.b!ml"

    My application is installed using InnoSetup 6.2.2; By downloading it from Google Drive but Google Chrome and Microsoft Defender identify the "Wacatac.b!ml" Trojan which obviously isn't there and...
  5. Replies
    14
    Views
    607

    Re: Find/Replace Dialog

    I repeat: I was hoping to reduce the code by removing the "Find/Replace" window I had created, while adding "System Find/Replace" requires almost 200 lines of additional code; so it's not worth it.
  6. Replies
    14
    Views
    607

    Re: Find/Replace Dialog

    I use subclasses for mouse wheel reading and for custom menus. I thought to save some code by eliminating the "find/replace dialog" I created, but from what I understand, the code needed to use the...
  7. Replies
    14
    Views
    607

    Re: Find/Replace Dialog

    Thank you all. I will check your references. I have already written and tested the code to search and replace, I wanted to eliminate the form that I had created to replace the Windows one.
    ...
  8. Replies
    14
    Views
    607

    Find/Replace Dialog

    I have a curiosity: has anyone ever used the "Find/Replace dialog" of Comdlg32.dll in their own project? can use it e.g. in a msflexgrid? How can find some examples?
  9. Replies
    32
    Views
    1,255

    Re: [RESOLVED] Faster alternative to Split?

    There was also StrToDbl presented by Schmidt which used "SafeArray(" and not "Bytes("; it works with a small fix, it is slightly faster than the "Val(" function when compiled. Who knows if it can be...
  10. Replies
    32
    Views
    1,255

    Re: [RESOLVED] Faster alternative to Split?

    Honestly, I'm interested in the procedure for creating an alternative to the "VAL(" function, like an alternative to the "Split" function (as I wrote, for "Split" function, I usually use SplitB05...
  11. Replies
    32
    Views
    1,255

    Re: Faster alternative to Split?

    I use SplitB05 in http://www.xbeat.net/vbspeed/c_Split.htm
  12. Replies
    1
    Views
    245

    Another use of a VB6 timer

    How to start a processing only after a certain time of inactivity of the running application(for example something similar to how the "screensaver" works)? Does anyone have any examples or links?
  13. Replies
    12
    Views
    578

    Interpolation Search

    To search for strings in a sorted array I use a "BinarySearch" algorithm; I found, in an old manual, the indication of the greater efficiency of the "Interpolation Search" algorithm compared to the...
  14. Re: Inappropriate behavior of App.Previnstance

    This works if "Zlib.dll" is placed in the executable folder...
  15. Re: Inappropriate behavior of App.Previnstance

    I'll check tomorrow. In the meantime, thank you all for your help.


    I had introduced "Zlib.dll" into my application at the time of Windows XP (!). Now I don't want to delete it so as not to lose...
  16. Re: Inappropriate behavior of App.Previnstance

    You are right. I had placed "ShellExecute 0, "runas" below in the "Main" procedure to ask for "Administrator privileges". The reason is that I install "Zlib.dll" in the system folder. I wish it was...
  17. Re: Inappropriate behavior of App.Previnstance

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <assemblyIdentity
    name="Microsoft.Windows.MyCoolApp"
    ...
  18. Re: Inappropriate behavior of App.Previnstance

    The question is asked by Windows 10; I am the author myself and obviously I don't want to pay Microsoft for the right to run my program.
  19. [RESOLVED] Inappropriate behavior of App.Previnstance

    In one of my applications with manifest files, I placed "app.Previnstance" in a "msgbox" at the beginning of "Main" in "Module1".
    Once the program is started, "App.Previnstance" returns "False",...
  20. Replies
    5
    Views
    637

    Re: FSO.DeleteFile error?

    I'm sorry but the first two solutions don't work for me.
    although the approaches are different gives the same problem: the "*.lng" file is considered a directory;

    Instead doesn't delete...
  21. Replies
    5
    Views
    637

    [RESOLVED] FSO.DeleteFile error?

    Good evening. This portion of code deletes either the directories or the individual files; Everything works fine except that if the file is "*.tmp", or "*.lng" it is detected as a directory and...
  22. Replies
    24
    Views
    1,324

    Re: Can't install sp6

    VB6 was also sold in ITALIAN.
    Unfortunately, the author of "Visual Studio 6.0 Installer" passed away on November 25, 2021; it is therefore not possible to get help from his experience....
  23. Replies
    15
    Views
    1,085

    Re: Give a some tributes to the Gurus...

    Many thanks!
  24. Re: VB6 Question: Is the VB6 IDE a little more flaky in Windows 10 +?

    Sorry but I do not understand. What is "The VirtualizeDesktopPainting appcompat shim"?
  25. Re: Is possible Determine if a Running Program is Created by VB6?

    You must disable the error msg for VB6.dll only, with something like "onlyifdoesntexist" flag in the "copy" Files section. Isn't it?
    Eg. Source: "D:\A\Source\frmMain.ini"; DestDir: {app}; Flags:...
  26. Re: VB6 QUESTION: Has anyone built an installer using VB6?

    In my version of VB6 I don't find Shelllnk.tlb; not even on VB6 CDs.
  27. Re: VB6 QUESTION: Has anyone built an installer using VB6?

    where to download "shelllnk.tlb"?
  28. Thread: Listview bold

    by fabel358
    Replies
    11
    Views
    1,115

    Re: Listview bold

    I need only one column; searching on the internet I found that "MsFlexGrid" has a bug that doesn't show the horizontal scrollbar if there are few columns.
    So if you set "Bold = True" in the ListView...
  29. Thread: Listview bold

    by fabel358
    Replies
    11
    Views
    1,115

    Re: Listview bold

    I know this example; however I didn't want to add any more code.
    I'm experimenting with "msflexgrid", but the horizontal scrollbar doesn't appear even though I have selected both Scrollbars and the...
  30. Thread: Listview bold

    by fabel358
    Replies
    11
    Views
    1,115

    Re: Listview bold

    Ok fafalone. I will be using "MsFlexGrid" as SamOscarBrown had suggested to me.
  31. Thread: Listview bold

    by fabel358
    Replies
    11
    Views
    1,115

    Re: Listview bold

    What I wanted to do, was to avoid the "subclassing" and have the "BOLD" character in the "ColumnHeader", which is not possible to get without setting all the ListView with "BOLD" font and I wanted...
  32. Thread: Listview bold

    by fabel358
    Replies
    11
    Views
    1,115

    Listview bold

    I have a listview in a form; if I leave "bold = false" in the properties but set "bold = true" in the item, the item text is bold. This is correct.
    If I check "bold = true" in the properties and set...
  33. Re: Random, repeatable numbers that do NOT depend on prior values, for the next resul

    "Function RndInRange" doesn't work... and... CopyMemoryLpForByte is...?
  34. Replies
    13
    Views
    5,553

    Re: A Tooltips Class

    Ok. I use the activex controls xpcontrols.ocx from "The Trust" in my project. These controls have no "hwnd". I'll try the solution proposed by you.
  35. Replies
    13
    Views
    5,553

    Re: A Tooltips Class

    Unfortunately no: my controls don't have the setfocus method; controls have getfocus and lostfocus. Anyway thanks, the method is interesting.
  36. Replies
    13
    Views
    5,553

    Re: A Tooltips Class

    I have a question: if a control doesn't expose "hwnd" how can it be done? because i use an activex with controls that don't expose "hwnd".
  37. Re: AddIn to save and load bookmarks in the VB6 IDE

    I corrected this way "AddinInstance_OnConnection" (I'm italian and I have Visual Basic 6 in my language) and it works.


    'If MenuBar.Controls.Item(1).Caption = "&File" Then
    ' Lang...
  38. Re: AddIn to save and load bookmarks in the VB6 IDE

    I have Windows 10; i installed "MSADDNDR.DLL" in SysWow64 folder and registered it, i installed "MSO97RT.DLL" in the same folder, while "VB6EXT.OLB" is already present in VB98 folder. In the "add...
  39. Replies
    9
    Views
    1,610

    Re: How to install MSDN in Windows 11?

    The explanation to fix the error was here:
    https://www.vbforums.com/showthread.php?660453-RESOLVED-quot-Unable-to-Display-Help-quot-Error-for-VB-6-VC-6
    Now it's OK!
  40. Replies
    9
    Views
    1,610

    Re: How to install MSDN in Windows 11?

    I did everything as mentioned in "https://www.winhelponline.com/blog/view-winhelp-hlp-files-windows-10-with-winhlp32-exe/".
    I found the required files.
    All done.
    It doesn't change anything: the...
Results 1 to 40 of 141
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width