Search:

Type: Posts; User: Yakkov

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: Anyone knows contact information of author of Minilyrics software?

    Thanks.
    That makes sense.
    I will do that.
  2. Anyone knows contact information of author of Minilyrics software?

    Hello everyone,

    Minilyrics is a wonderful piece of software that works in combination with a number of popular music players to display the lyrics of the song that is currently being played.

    It...
  3. Re: Site Rips of Popular VB Sites which have closed down

    I am adding this information here to consolidate the information at one place.

    Information on PSC GitHub Repository is here...
  4. Re: Site Rips of Popular VB Sites which have closed down

    That was so kind of you.
    Thank you very much.
  5. Re: Site Rips of Popular VB Sites which have closed down

    I entirely agree with you on that point. This Forum has lots of people ever willing to help out.

    I was thinking more in terms of how PlanetSourceCode was resurrected in GitHub. It was a great job....
  6. Replies
    19
    Views
    4,800

    Re: https://classicvb.net/samples peraphs o.t....

    Oh wow,
    Yes! It works!
    Thank you very much for figuring it out.

    Regards
  7. Site Rips of Popular VB Sites which have closed down

    This has reference to this post

    https://www.vbforums.com/showthread.php?891215-https-classicvb-net-samples-peraphs-o-t&p=5527852&viewfull=1#post5527852

    I realize I should have made a new post...
  8. Replies
    19
    Views
    4,800

    Re: https://classicvb.net/samples peraphs o.t....

    Thank you very much. I have been hunting for Shell32.zip of Karl Peterson for quite some time. I was searching all over the place for shell32.zip without any success. By sheer chance, I searched...
  9. Replies
    74
    Views
    19,232

    Re: Introducing MixLangz a Visual IDE

    I have no antivirus other than Windows built-in Security.
    Running Win 10.
    Didn't experience any problem.
    Could open after installation.

    Haven't tried anything else so far.
  10. Re: Adjust Textbox size to Cursor(carat) Position

    Let Picturebox and Textbox have the same Font property.
    Picturebox can be hidden. You don't have to set any other property.



    textbox.text ="dummy"
    textbox.width=picturebox.textwidth("dummy")...
  11. Re: Adjust Textbox size to Cursor(carat) Position

    Use a dummy picturebox and a dummy string to get textwidth and use it to adjust textbox width.
  12. Replies
    10
    Views
    4,041

    Re: Access the VBIDE library without add-ins

    Thank you for this very useful function.
    Seems better than MZTools, in a way.

    I had a few issues.
    Immediate window has a limitation in the number of lines.
    When I ran the function in my...
  13. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    Bingo!
    This is a gem of a tip!

    Just this simple little thing of creating a separate directory solved all problems.
    It never occurred to me. How dumb of me.

    No Administrator permission, no...
  14. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    May be one more information would help unravel this puzzle.

    Although I am doing all the testing in C:\ of VM, windows always asks for Administrator's permission even for copying the file.
    May be...
  15. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    I continued investigating. I removed the "WritePrivateProfileString" API declaration, commented the code where necessary and tested.
    Although I am not writing any file or making any change...
  16. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    "Do you want to allow the following program from an unknown publisher to make changes to this computer?"

    I kept investigating further.
    I compiled the EXE once again, without the manifest, copied...
  17. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    SUCCESS !
    (can I really call it that ?)

    I couldn't sleep without giving that idea, a spin.
    I followed all the steps exactly as suggested.
    I copied the EXE to Virtual machine and ran it.
    It...
  18. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    Thank you. That was very kind of you.
    Time to go to bed, for me.
    I will try it out tomorrow.

    Regards,
  19. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    In the working directory (which could be anywhere on the disk).

    If this is the culprit, I can always go back to using SaveSetting and GetSetting and put the settings in the Registry.
    I was under...
  20. Re: How to code to run VB6 app without needing "run as administrator" in Win 7

    Mine is a very simple program.
    Read the Unicode text in input text box, parse line by line, do some string manipulations, convert it to plain English and put it in the output text box.

    I use a...
  21. [RESOLVED] How to code to run VB6 app without needing "run as administrator" in Win 7

    Hello everyone,

    I developed a simple app using VB6, on Win 10 machine.
    This is intended to be a completely portable application without any dependencies and run on any Windows machine.

    My app...
  22. Replies
    15
    Views
    1,907

    Re: Solution Explorer

    Reminded me of my old favourite "I beg your pardon".
    https://youtu.be/a7cqwqcolqk.

    Makes me very nostalgic.
  23. Thread: LynxGrid

    by Yakkov
    Replies
    50
    Views
    31,719

    Re: LynxGrid

    Hello,

    Sorry, I realized what was the problem when I ran the project in #42
    How do I delete a post when you realize your mistake?!


    Regards,

    ================================
    Please ignore...
  24. Re: how can copy contents from websites or otherapp like as unicode in IDE vb6?

    IDE Editor cannot handle Unicode.
    Everyone has already said that in this thread.
    You refuse to believe that.

    Hope your dreams come true. It will help me also.
  25. Re: how can copy contents from websites or otherapp like as unicode in IDE vb6?

    Since the problem is only with VB6 IDE, I have been using a workaround.

    I use a Unicode-aware Textbox.

    Paste the string in the textbox, during Run time.
    Use SaveSetting (in the Form_Unload) to...
  26. Re: Krool's VBFlexGrid -How to adjust row height and col width to eliminate grey area

    Thank you very much. I am elated.



    Yes, of course. That was actually the first thing I did. But since it was done in IDE, it escaped the Code listing.



    Your reasoning is correct.
    You...
  27. Re: Krool's VBFlexGrid -How to adjust row height and col width to eliminate grey area

    Wow, Yes, It works!
    As simple as that ?!

    Thank you once more.

    Here is my goal and my code.


    'I want a Grid which appears like a Text box with
    '5 columns and 10 rows of text,...
  28. Re: List Box/Flexgrid with RichText -Has anyone seen a control like this ?

    I can't upload the app. It is a commercial software. It has no trial version to download.

    It is not a ListView; because, it has two "newspaper type" columns. You can scroll up and down, as if they...
  29. Replies
    12
    Views
    2,260

    Re: Commercial Data Grid with Best Budget

    The links are all broken.
    I see that you are very enthusiastic about SGrid2.

    But frankly, have you tried Krool's VBFlexGrid?
    I am at a stage where I have just started experimenting with...
  30. Re: Krool's VBFlexGrid -How to adjust row height and col width to eliminate grey area

    Did it.

    I went the other way around.


    fg.Height = fg.RowHeight(0) * fg.Rows - 30
    fg.Width = fg.ColWidth(0) * fg.Cols - 30


    There was a thin grey line and I had to subtract 30 to...
  31. Re: Krool's VBFlexGrid -How to adjust row height and col width to eliminate grey area

    @admin

    I am sorry. I have posted in the wrong group, by oversight.
    It has to go to the Parent group.
    I don't see a way either to delete this post or to shift it.
  32. [RESOLVED] Krool's VBFlexGrid -How to adjust row height and col width to eliminate grey area?

    Hello,

    I want my Flexgrid to appear like this, without any grey area.

    180010

    I got it by


    fg.ColWidthMin=fg.Width/fg.Cols
  33. Re: List Box/Flexgrid with RichText -Has anyone seen a control like this ?

    Yes. I think I know. It worked ok in my opening post where i attached a PNG.
    After it was posted, I was not happy with the picture quality and I followed the same procedure to attach a JPG and I...
  34. Re: Krool's ListView and ListBox -How do I configure the number of Columns?

    @Krool,

    Fantastic!
    That tip did the trick! I got want I wanted.

    Thank you very much.
  35. Re: Krool's ListView and ListBox -How do I configure the number of Columns?

    It is the intrinsic Listbox; no special stuff.
    See the screen shot here.
    180001

    There is an old thread on this...
  36. [RESOLVED] Krool's ListView and ListBox -How do I configure the number of Columns?

    Please see the following screen shot.
    I am loading the same set of data in all.
    I have configured the ListBox MS using its "Columns" property to show the data in two columns.
    This is what I want...
  37. Re: List Box/Flexgrid with RichText -Has anyone seen a control like this ?

    A better picture
    179999
  38. List Box/Flexgrid with RichText -Has anyone seen a control like this ?

    Hello everyone,

    Please have a look at this picture. This is a screen shot of a Homoeopathic Repertory Software. I want to develop something like this for another system of medicine.

    The region...
  39. [RESOLVED] Krool -Listview How to set Backcolor or a row & Bug in Picture property ?

    @Krool
    Thank you very much.
    So, that was the clue!

    The picture does not appear at design time, in IDE; but it does, when you run the compiled Exe.

    In the Listview of Comctl32, it appears in...
  40. Re: Krool -Listview How to set Backcolor or a row & Bug in Picture property ?

    I went through various forum posts on this topic of using a manifest and using a RES file (instead of the manifest), naming it as 24, etc
    I found that the Standard Controls Demo Project already has...
Results 1 to 40 of 48
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width