Search:

Type: Posts; User: some1uk03

Page 1 of 13 1 2 3 4

Search: Search took 0.38 seconds.

  1. Re: [RESOLVED] Is this a VB Bug? Decimal Point < 0

    0.0002 is technically higher than 0, so the check should have been <0.1!
  2. [RESOLVED] Is this a VB Bug? Decimal Point < 0

    ADMIN DELETE POST ISSUE RESOLVED

    0.0002 is technically higher than 0, so the check should have been <0.1!

    ~~~~~~~~~~~~~~~~~~~~~~
    Is this a bug?

    Dim k As Single
    k = 0.0002441481
  3. Replies
    1
    Views
    440

    URL Encoding / Decoding issue

    Hello,

    I have a slight issue when encoding and decoding with UrlEscape API.

    https://www.vbforums.com/images/ieimages/2023/12/7.png

    It's decoding correctly, but not encoding back correctly....
  4. Re: Form not opening on Monitor 2, eventhough it's CenterOwner

    As @baka pointed out, I was almost there.
    Was just fiddling around with positioning and Elroy just posted pretty much what I've been trying to achieve :)
  5. [RESOLVED] Form not opening on Monitor 2, eventhough it's CenterOwner

    Hello,

    So I have 2 monitors and I'm testing a basic thing.

    2 forms. A button on the 1st form to open the 2nd form and this is set as CenterOwner, so wherever form1 is, form2 should open up in...
  6. Poll: Re: If VB was still alive & updated today, would you pay for a license ? [POLL]

    I did expect more users to vote on this tbh.
    we only have a turnout of < 30 votes.

    Not sure how VB7 or TB sales would be doing with these numbers.
  7. Poll: Re: If VB was still alive & updated today, would you pay for a license ? [POLL]

    I think I agree.

    You either stay with VB6 or wait and see if TwinBasic really doe become a VB7.
    And if it does, will people really switch or still remain with VB6.
  8. Poll: If VB was still alive & updated today, would you pay for a license ? [POLL]

    I'm doing a little market research to see how many active users the VB community has today.
    We are all fans of VB but,

    How many of you would still purchase and use VB today? Or lets say TwinBasic...
  9. Enum All Files in a Folder, but SORTED ?

    Recently i noticed that my FindFirstFile routine to list all files in a folders doesn't return files in a sorted way.

    i/e if file names are named 1 - 20,
    the return becomes 1,10,2,3,4...
  10. Re: Creating Directory/Folder with Unicode Names

    Oh i see the issue..
    Generaly Makesuredirectory exists API needed the folder path to have a "" at the end, where as createDirectory doesn't need that!

    Now it's working
  11. Re: Creating Directory/Folder with Unicode Names

    That is exactly the declaration I have and it's not create a Folder with a Unicode name.
  12. Creating Directory/Folder with Unicode Names

    Why is this such a hassle?

    I've been using MakeSureDirectoryPathExists but this doesn't have a W (unicode) version, so then i tried with CreateDirectory and that doesn't seem to work either.
    ...
  13. Replies
    19
    Views
    3,392

    Would you buy TwinBasic ?

    Hello,

    I've started taking a look at TwinBasic and seems quite promising.
    Do you guys think it would it be worth a purchase as a VB replacement?

    Would you purchase it ?
  14. Re: Strange Behaviour! Usercontrol is Visible but .visible returns false ?

    It's a massive project and stripping it down would take some time.

    But this all happens in run-time. So the parent control is visible, the scrollbar is visible on screen. Both are visible on...
  15. Strange Behaviour! Usercontrol is Visible but .visible returns false ?

    Just encountered a very strange behaviour.

    I have a USERCONTROL (scrollbar) within another usercontrol.
    although the scrollbar is visible and shown, when I do a check

    if scrollbar.visible =...
  16. Replies
    7
    Views
    1,068

    Faster File Read with MapViewOfFile ?

    I have 300MB file that I constantly need to be ONLY Reading from!

    Currently I open the File keeping the fileHandle open throughout the app and using SetFilePointer/read file to read chunks from...
  17. Replies
    17
    Views
    3,497

    Re: remove quicly item from array string

    You need to run a loop with a NEW Temporary ARRAY and fill that by ignoring "VALORE1"


    dim tmpMyArray() as String
    dim arrayCounter as long
    dim xLoop as long

    For xLoop = 0 to uBound(myArray)...
  18. Replies
    17
    Views
    2,681

    Re: Fast Timer + Sequencer + Tempo Problem

    @TheTrick: Thank you for the example. I will take some time to analyse it tomorrow, but having a quick glance seems to be a very very different approach to what I currently have. And I'm not sure,...
  19. Replies
    17
    Views
    2,681

    Re: Fast Timer + Sequencer + Tempo Problem

    I'm having difficulty understanding your model.
    Either way it needs some form of a Timer to know the elapsed time in order to trigger the next event.

    Even instead of a LOOP/TIMER we calculate the...
  20. Replies
    17
    Views
    2,681

    Re: Fast Timer + Sequencer + Tempo Problem

    I think you're presuming that I'm playing a single .wav file in a buffer and I'm seeking a way to find play positioning. That's not the scenario.

    Think of musical notes in an array....
  21. Replies
    17
    Views
    2,681

    Re: Fast Timer + Sequencer + Tempo Problem

    I'm currently using (releaseCapture / sendmessage)
    What's your method?




    I'm not quite sure what you mean by that.

    I have a an array() of events with Ticks that need triggering at...
  22. Replies
    17
    Views
    2,681

    Fast Timer + Sequencer + Tempo Problem

    I've got a small sequencer going on, but am facing a few issues with the Timer. I was happy to a certain degree for a while but now I want to tackle this again.

    All these other sequencer apps...
  23. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    I wonder if subclassing is the only option left to detect the MouseUp event.

    Any other ideas anyone?
  24. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    Ok, I have now indeed implemented the workaround method with a Timer to launch after a few MS, which solves the issue.



    I have come across another issue though.
    So we have a DroppedEvent, but...
  25. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    I did some more testing with the standard VB OleDrop and it does seem to behave the same, which I find strange.

    I'm just trying to think ways around it. Rather than re-designing my flow of showing...
  26. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    I'm not referring to the APP being frozen because we have a modal form. I'm referring to WINDOWS EXPLORER being frozen after we drag & drop and show a modal form.

    If you initiate the Drag & Drop...
  27. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    I just re-tested on a VM with WIN10 again, and same issue there.

    Drag a PNG from the DESKTOP and then once the 2nd FORM is shown, I can no longer click on any of the icons on the desktop. It...
  28. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    Yes, that's correct. You'll see that new MODAL form with the UNLOAD ME option, but try dragging your Windows Folder around? or Clicking on any of the files inside the project folder..
    The...
  29. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    (Invalid attachment)
  30. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    Ermm.. that's strange?
    Win10 here too.

    You've seen the attached GIF right ?
  31. Replies
    19
    Views
    1,889

    Re: fafalone: Drag & Drop freeze/hang issue

    Sure, attached is the Original Drag/Drop demo you have, with just an extra form show up when you DROP an image.

    186688
  32. Replies
    19
    Views
    1,889

    fafalone: Drag & Drop freeze/hang issue

    Hi,

    I've been trying to find an issue with my app for a couple of months now and just today I finally found the cause.

    So, I do use the custom Drag & Drop from fafalone: Drag&Drop

    After...
  33. Re: WMI ProcessorID too slow. Any other faster way ?

    Quite often, otherwise the 1sec isn't that bad, but when it's often the lag is a bit of a nuisance.





    Perfect! What a difference! Down to 157ms :)
  34. [RESOLVED] WMI ProcessorID too slow. Any other faster way ?

    Generally WMI returns results pretty fast, however, this processorID call, is takeing over 1000ms, slowing down the app.

    Any alternative ideas to speed this up or another way of retrieving the CPU...
  35. Re: form2.show , form1 | can you access the Form1 OWNER FORM?

    The idea is that, I do show a 3rd form and want the MAIN form1 to be the parent also, for POSITIONING purposes. Otherwise, if form1, is on left side of screen and form2 is on right side of screen,...
  36. [RESOLVED] form2.show , form1 | can you access the Form1 OWNER FORM?

    If we do: form2.show , Form1 [set Form1 as OWNER FORM]

    Is there a way to access the OWNER FORM from within FORM2 ?
  37. Re: Run a 'Please Wait' FORM on a NEW thread ?

    A separate exe would be an option...
    I do need to be able to pass & update a variable to the window though, i/e path locations etc...

    Unless i do that with a SetWindowText.
  38. Run a 'Please Wait' FORM on a NEW thread ?

    Currently I have flow where the Main form Loads some files in the BG. This process does take around 15-20 seconds and I do show a PLEASE WAIT form as vbModal on top that also has a small rotating...
  39. Re: ThunderVB installed - problem at loading VB6

    I just tested and recompiled with the updated fix provided by Kunical.
    But still same issue. I see a message when when i enable the addon in VB: 'ThunderVB' has caused an access violation.
    ...
  40. Re: LynxGrid + sqlite : runtime error 13 type mismatch

    Just to double check.. as I don't see that you have added any COLUMNS.
    Have you added any columns on Form_Load or elsewhere? otherwise you will need to add Columns before being able to populate...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width