Search:

Type: Posts; User: jpbro

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds; generated 28 minute(s) ago.

  1. Re: RC6 error adding item to a cCollection with an empty string as a key (vb6 col can

    That would be great :) I lean towards "cHashDS" since the class is essentially the same as cHashD, just a "string" variant, but I'm fine with whatever name you like best. Thanks Olaf!
  2. Re: RC6 error adding item to a cCollection with an empty string as a key (vb6 col can

    He's using the version that ships with the latest RC6.dll:



    Dim HD As RC6.cHashD: Set HD = New_c.HashD(Count, False)
  3. Replies
    17
    Views
    745

    Re: RCFlexGrid Control (vbRichClient)

    That's a bit harsh I think considering this:



    Most doubted that SDO would ever release any concrete code. Now here it is, and I think it should be given a fair shake. IMO it's better to waste...
  4. Re: RC6 error adding item to a cCollection with an empty string as a key (vb6 col can

    Makes sense :) Flexibility comes with a bit of a cost. Both are plenty fast though. Wonder if it would be useful/possible/worth the time to have a strongly stringed cHashD (or some way to enable a...
  5. Re: RC6 error adding item to a cCollection with an empty string as a key (vb6 col can

    I forget to set tB Collection.KeyCompareMode = vbBinaryCompare in my test app. After doing so the difference widens a bit:

    191128
  6. Re: RC6 error adding item to a cCollection with an empty string as a key (vb6 col can

    Wayne was curious about the performance of the tB Collection implementation vs. Olaf's cHashD and Christian's dictionary so I modified Olaf's test code in tB and ran it compiled. Here are the...
  7. Re: RC6 error adding item to a cCollection with an empty string as a key (vb6 col can

    I checked back to RC3 and the non-accepting behaviour was present all the way back there, so whatever the reason I guess it is lost to the sands of time...




    That's great - has the side...
  8. Re: RC6 error adding item to a cCollection with an empty string as a key (vb6 col can

    AFAIR no version of RC6 (or vbRichClient5, dhRichClientX) allows you to add an item to a Collection with an empty string as a Key unless you instantiate it in non-VB compatible mode (e.g. Set...
  9. Re: SHBrowseForFolder doesn't show folders in devices

    UCShellTree (part of Fafalone's ShellControls) might be worth a try.
  10. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    Ahh, gotcha! I work a fair amount with the Codejock ReportControl and it has separate Font properties for things like headers/footers/etc.. that all act independentl, so that coloured my...
  11. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    Hi Krool,

    I've been playing around with the VBFlexGrid package in tB, and noticed any issue that I've also been able to reproduce with the v1.7 OCX in VB6.

    Consider the following code for a...
  12. Re: Turns out program is running so fast that using datetimeserial wasn't giving uniq

    I share your opinion that overall this place has become a less fun place to visit over the past few years. Maybe it's just down to the dwindling number of VB6 developers (and therefore members here)....
  13. Re: Turns out program is running so fast that using datetimeserial wasn't giving uniq

    I know a guy with a DeLorean in case you happen know a guy with a flux capacitor ;)
  14. Re: Enhancing a VB6 App with Interactive Particle Effects Using RichClient6 & WebView

    If you run the included RegisterRC6inPlace.vbs script it will register RC6.dll for you.
  15. Re: Enhancing a VB6 App with Interactive Particle Effects Using RichClient6 & WebView

    RC6BaseDlls.zip

    191038
  16. Re: Enhancing a VB6 App with Interactive Particle Effects Using RichClient6 & WebView

    https://vbrichclient.com/#/en/Downloads.htm
  17. Replies
    32
    Views
    5,403

    Re: Fast File Search Utility App Demo With Source

    Glad you like the tool, but it is important to understand that this was just a demo/first foray for me into vbWidgets...it's definitely not a complete product. Primarily I wanted to give vbWidgets a...
  18. Replies
    8
    Views
    453

    Re: Convert cRecordset to JSON

    No problem, glad you got everything working :)
  19. Replies
    8
    Views
    453

    Re: Convert cRecordset to JSON

    So you are in completely in control of the code for the web interface/browser side, and the web server/VB6 side?

    If so, why not just respond to the client with the JSON UTF-8 result, and then...
  20. Re: [RESOLVED] vb6 ide project explorer window too big, accident dragged mouse sidewa

    I've found the customization of the IDE to be really flaky, and things often break (like menu items missing in particular) if you crash the IDE or have some misbehaving add-ins loaded. What I do is...
  21. Re: Determine Project Type While Running in IDE?

    Credit where credit is due :) Olaf has a lot of tricks up his sleeve!
  22. Re: Determine Project Type While Running in IDE?

    And there's the trick ;) Thank you and nice work as always!

    Confirmed to work according to the terms of the OP by returning 0 through 3 for the project type in the IDE at runtime. As a bonus it...
  23. Replies
    8
    Views
    453

    Re: Convert cRecordset to JSON

    You can convert a JSON UTF-8 Byte Array to a cCollection using the New_c.JSONDecodeToCollectionUTF8 function.

    You can convert a JSON String to a cCollection using...
  24. Re: Determine Project Type While Running in IDE?

    LOL, but to be fair, I fire up VB6 all the time to try things out and I don't want to save those "projects" ever...it's one thing I don't like about some other IDEs that make you start out by saving...
  25. Re: Determine Project Type While Running in IDE?

    Nice trick using the error object to get the source file! :D From there it should be trivial to get the project type (provided the project has been saved of course)
  26. Replies
    8
    Views
    453

    Re: Convert cRecordset to JSON

    Check out the cRecordset.ToJsonUtf8 function. If you need the UTF8 as a String, you can use New_c.Crypt.UTF8ToVBString to convert it.
  27. Re: Determine Project Type While Running in IDE?

    True enough! :D
  28. Re: Determine Project Type While Running in IDE?

    Just to clarify - my interest in this is because I am trying to "normalize" (for lack of a better term) the folders/files that an application and its related DLLs/OCXs refer to regardless of where...
  29. Re: Determine Project Type While Running in IDE?

    Thanks Eduardo - never knew you could get the VBIDE window & ActiveVBProject like that. Too bad it's not available at runtime :(
  30. Re: Determine Project Type While Running in IDE?

    Thanks Eduardo - I'm mostly interested in determining it at runtime, but if it's not too much trouble to dig out the code, it would be interesting to see how you do it at design time.
  31. Re: Determine Project Type While Running in IDE?

    Thanks Elroy - I was hoping there might be a way to detect it in code because I have a single .bas module that other developers can use and I wanted to skip the step of asking them to configure it...
  32. Re: [RESOLVED] vb6 ide project explorer window too big, accident dragged mouse sidewa

    It won't re-appear until you close the IDE.
  33. Re: vb6 ide project explorer window too big, accident dragged mouse sideways

    If you make sure the VB6 IDE is closed, THEN delete those keys, THEN restart VB6, the windows should go back to their default size/docked state.
  34. Re: vb6 ide project explorer window too big, accident dragged mouse sideways

    Are you using a touch screen? If so, switch to a physical mouse and try again (you'll see the mouse icon change when you are over the correct dragging spot, and it's only a few pixels wide).
  35. Re: vb6 ide project explorer window too big, accident dragged mouse sideways

    Both things I suggested worked here, don't know what else to suggest. Uninstall/reinstall might work as long as VB is good about cleaning up the registry after itself, but if it leaves your window...
  36. Re: vb6 ide project explorer window too big, accident dragged mouse sideways

    Or even try Normalizing the window, then Maximize it.
  37. Re: vb6 ide project explorer window too big, accident dragged mouse sideways

    Move the mouse to the right-edge of the IDE window, then slowly move it left until the mouse icon changes to the splitter resize icon. Click and hold the left mouse button and drag to the left.
  38. [RESOLVED] Determine Project Type While Running in IDE?

    This may be a stupid question, but is it possible to determine the Project Type (Standard EXE, ActiveX EXE, ActiveX DLL, ActiveX Control) when running from the IDE?

    190948

    Nothing in the App...
  39. Re: Registry Free Object Instantiation using DirectCOM & RC6

    Thanks taishan, glad you like what you see :)

    Regarding a way to instantiate vbWidgets, there are a few different approaches - all with their upsides and downsides - and I'm not firmly decided on...
  40. Re: Ask: The correct way to create an ActiveX DLL

    Why press 2 keys when you can press 6?

    Or should I say:

    ASK: Why press 2 keys when you can press 6

    Just teasing :p
Results 1 to 40 of 498
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width