Search:

Type: Posts; User: ChenLin

Page 1 of 6 1 2 3 4

Search: Search took 0.10 seconds.

  1. Re: COM Interop example. How to use .Net classes in VB6.

    The magic @Niya, use
    regasm GridDisplay.dll /tlb:GridDisplay.tlb /codebase The problem is solved!
  2. Re: COM Interop example. How to use .Net classes in VB6.

    I have successfully demonstrated on this machine, but it cannot be used on other computers, even if it has been packaged with vbrap4.


    179958


    This is the error that appears after clicking...
  3. Replies
    9
    Views
    4,301

    Re: Symbols: "Segoe MDL2 Assets" Font

    If you can set forecolor, it will look better.
  4. Re: The 1001 questions about vbRichClient5 (2020-07-21)

    Thank you @jpbro.

    I can use it after testing.
  5. Re: The 1001 questions about vbRichClient5 (2020-07-21)

    Is cfso wrong for me? Why does the prompt object variable or with variable is not set?



    Dim sFSO As vbRichClient5.cFSO
    MsgBox sFSO.FileExists ( App.Path & "\Logo.png")
  6. Replies
    5
    Views
    11,708

    Re: VisualPlus UI [25+ Controls]

    Visual button does not support shortcut keys.
  7. Replies
    34
    Views
    11,991

    Re: Charts controls with GDI+

    About ucChartBar:
    It would be great if the FillGradient property can set a gradient color.

    If the AddSerie property does not use the current Collection, it will be more convenient to use the...
  8. Replies
    34
    Views
    11,991

    Re: Charts controls with GDI+

    Thank you LeandroA, I will continue testing.
  9. Replies
    34
    Views
    11,991

    Re: Charts controls with GDI+

    How to set different data in ucChartBar?
    For example, one bar shows last year's data, and another bar shows this year's data.
  10. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    Thank you @Krool, I used the following method before. I don't know which of the two methods is better.



    Public Function GetColIDVB(Sgrd As VBFlexGrid, ByVal ColCaption As String)
    Dim i As...
  11. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    @Krool:

    How to get the column index value according to the column heading, and not affected by drag and drop.
  12. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    I made a demonstration of multiple selections, supporting mouse selection, ctrl+mouse, Shift+mouse selection.

    All demo codes are included in sub VBFlexGrid1_MouseDown VBFlexGrid1_MouseUp Sub...
  13. Replies
    18
    Views
    7,389

    Re: ucProgressCircular

    @dreammanor, Add this line, problem is solved。


    Private Sub CmdDelete_Click()
    Dim i As Long
    If PF_ColorsCount = 1 Then Exit Sub
    For i = m_Index To UBound(m_PF_Colors) - 1
    ...
  14. Replies
    18
    Views
    7,389

    Re: ucProgressCircular

    Has the test been used for long database queries? For example, click the query button to start ShowAnimation, and stop the animation after the query ends。
  15. Replies
    219
    Views
    55,467

    Re: VB SQLite Library (COM-Wrapper)

    176611


    Since the attachment cannot be uploaded all the time, just send the relevant code.



    Private Sub CommandConnect_Click()
    If DBConnection Is Nothing Then
    With New SQLiteConnection
  16. Replies
    219
    Views
    55,467

    Re: VB SQLite Library (COM-Wrapper)

    Thank you for your reply. What I want to express is that after opening the .sqlite file, you can list all the tables in it and then select one of them to open.
  17. Replies
    219
    Views
    55,467

    Re: VB SQLite Library (COM-Wrapper)

    Excuse me, does this support browsing. SQLite files?
  18. Replies
    5
    Views
    1,041

    Re: VB6 does not use IE core browser

    Hi Schmidt thank you very much for your help.
    The test can display normally (post compile test, do not test in IDE).
  19. Replies
    5
    Views
    1,041

    Re: VB6 does not use IE core browser

    Now it is found that mouse movement and click events do not respond. Is this a problem of the registry?

    I tested this website:

    https://www.echartsjs.com/examples/zh/editor.html?c=dataset-link
  20. Replies
    5
    Views
    1,041

    Re: VB6 does not use IE core browser

    Thank you LeandroA! Now it works normally after compiling in IE 11 or above. I am testing whether this method is also applicable to vb.net, because I opened it with vb.net before that is also...
  21. Replies
    5
    Views
    1,041

    VB6 does not use IE core browser

    I use VB6 test to open the website. It's normal in IDE, but it's OK after compiling. It seems that the IE version I called doesn't support it.

    So my question is: can I not use IE, or force to use...
  22. Re: VB6 - sButton Multipurpose Control (last update: 02/03/2020)

    How do I get the Icon_FA_Code value? I selected a font, but I don't know how this Icon_FA_Code should be entered.
  23. Re: VB6 - sButton Multipurpose Control

    These icons don't display correctly. I registered fonts when I was in formload.

    174987
  24. Re: VB6 - sButton Multipurpose Control

    Great project! (it's best to have a vb.net version if you can. )

    This is the problem I found in my test:

    1. Registering fonts at startup will cause explorer to restart.

    2. The button does...
  25. Re: VB6 - sButton Multipurpose Control

    Great project! (it's best to have a vb.net version if you can. )

    This is the problem I found in my test:

    1. Registering fonts at startup will cause explorer to restart.

    2. The button does...
  26. Thread: LabelPlus

    by ChenLin
    Replies
    38
    Views
    14,041

    Re: LabelPlus

    Thank you @ xxdoc123, I tested your method and it works, as long as it is set to more than 20.
  27. Thread: LabelPlus

    by ChenLin
    Replies
    38
    Views
    14,041

    Re: LabelPlus

    Make sure the DPI is 100. I tested it on all three computers. The operating system distribution is windows server, windows7, windows 10, and all of them are compiled and tested.
  28. Thread: LabelPlus

    by ChenLin
    Replies
    38
    Views
    14,041

    Re: LabelPlus

    Amazing and incredible! Expect to release vb.net version in the future!

    The login example icon is not displayed clearly.

    174623
  29. Replies
    5
    Views
    990

    Re: VB.NET 2019 JsonToDataTable

    I try to use newtonsoft. JSON to solve this problem, but there are still some mistakes: because my JSON often has some special characters.

    Finally, my solution is to transfer these JSON characters...
  30. Replies
    49
    Views
    6,893

    Re: VB6 and .NET interoperability

    The community work I most hope to upgrade to vb.net is Krool's vbflexgrid! This is a great work!
    But it was really difficult to upgrade VB6 to VB.NET. I wanted to upgrade my project to VB.NET, and...
  31. Replies
    5
    Views
    990

    Re: VB.NET 2019 JsonToDataTable

    Thank you jmcilhinney, the parsing code and JSON are posted.
  32. Replies
    5
    Views
    990

    VB.NET 2019 JsonToDataTable

    172743

    172745

    Hello everyone, I have encountered difficulties in converting JSON to a table. Can anyone help me?
    The reason for the error is that JSON contains a ampersand character, because...
  33. Re: Calendar controls open errors at Windows server 64 bits

    This is the code that I forgot to find on which website. I just fixed some minor errors and let him support Chinese characters, and made some localization changes. I am not familiar with subclasses,...
  34. Calendar controls open errors at Windows server 64 bits

    This is a calendar control that can be run under win10 and win7. It can also be tested successfully in 64-bit win2016IDE, but it won't open after compiling. What is the reason? I found the wrong...
  35. Replies
    7
    Views
    1,599

    Re: Progress to ucListview

    You are welcome to provide new attachments, or other better and more compact ListView solutions.
    HyperListView is very powerful, but it's more complicated.
  36. Replies
    7
    Views
    1,599

    Re: Progress to ucListview

    http://www.convivea.com/download/ucListView2.5.2011.6.22.chip.rar


    That should not be the latest, this link shows that the version is new, but unfortunately can not be opened.
  37. Replies
    7
    Views
    1,599

    Re: Progress to ucListview

    Hi fafalone, this attachment download site can not open, can you upload to vbforums?
  38. Replies
    2
    Views
    1,337

    Re: Xml modify root

    thank you @techgnome,

    I use Modify:
    SET @x.modify('insert attribute erpid {"right"} into (/root)[1]')
    select @x;
  39. Replies
    2
    Views
    1,337

    Xml modify root

    <data>
    <datainfo>
    <time>2015/12/9 15:25:49</time>
    <count>0</count>
    </datainfo>
    <dataitems>
    </dataitems>
    </data>
    If you want to modify it to:
    <data test="123">
  40. Property not found in the specified JSON path

    DECLARE @json nvarchar(max)
    SET...
Results 1 to 40 of 224
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width