Search:

Type: Posts; User: zlander

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    Index of /Public/emoji/15.0 (unicode.org) :)
  2. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    Thanks Eduardo! This is looking good. Still testing a few things, but I think this will work nicely!
  3. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    The web people (like the mole people) seem to think regex is the way to go with this:

    c# - Detecting *all* emojis - Stack Overflow

    I might want to know if emoji is present in a text snippet...
  4. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    LOL | Bon Apetit
  5. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    Does VB have a regex function? I've seen some regex approaches to this problem.
  6. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    That TM unicode I've run into during my tests. Can you think of a way to detect emoji while ruling out ANSI outliers that would work most of the time? For my purposes it doesn't have to be perfect.
  7. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    This seems promising! 😃
  8. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    I'm surely showing my ignorance here, but could the routine above miss emoji since an emoji can be multi-byte?
  9. Re: Looking for a simple function which returns TRUE if a string contains emoji ...

    I really just want to know if any characters exists that are outside of the ANSI character set. Seems like there should be an API function for this or maybe two functions which return strlen() and...
  10. Looking for a simple function which returns TRUE if a string contains emoji ...

    It doesn't have to work 100% of the time, just most of the time. Would be nice if it were fast, as I'll have to call it in a tight loop.
  11. Windows 11 Dev Build 22567 & now 22572 seems to disable loadpicture() function

    I reported this to MS through the feedback hub, but wondering if anyone else is seeing this?

    Specifically, this code fails:

    imagecontrol.picture = loadpicture(filename) where filename is a...
  12. WebBrowser Control | Mutliple iFrame Embedded YTPLAYER Vids | Only 1st Vid Functions

    If I load a HTML page with multiple ytplayer iframe embeds only the first video functions. The others appear as white boxes. If I load the exact same HTML page in Internet Explorer all of the...
  13. Re: Initial open of form with particular OCX takes 30+ seconds | SLOW

    And we have a winner! I removed the active printer and the problem vanished. Thanks Much!
  14. Re: Initial open of form with particular OCX takes 30+ seconds | SLOW

    Both computers running Windows 10 64bit. My sense is that this is some registry issue.
  15. Re: Initial open of form with particular OCX takes 30+ seconds | SLOW

    The OCX is TX Text Control version 14 tx4ole14.ocx and I've never had any trouble with it. I can't imagine it's phoning home, though the 30 second timeout is worth noting.
  16. [RESOLVED] Initial open of form with particular OCX takes 30+ seconds | SLOW

    Details:

    * Occurs both in IDE and EXE
    * Same exact form+OCX is not slow when tested on another machine

    Things I've Tried:

    * Uninstalled and reinstalled OCX completely
    * Tried a few black...
  17. Re: How to Call function in .JS file | Pass 2 parameters | Get Result as String

    This JS parse function produces clean HTML so you get the text portion without losing the links and images.
  18. Re: How to Call function in .JS file | Pass 2 parameters | Get Result as String

    Can I access the the functions in v8.dll from VB6? Can I just add v8.dll via the References menu and call its functions?
  19. How to Call function in .JS file | Pass 2 parameters | Get Result as String

    I'm trying to call a javascript function from within VB6.


    Details:


    * The javascript function is contained in a file named "htmlparser.js" and this file is installed along side the .EXE...
  20. Re: GetGestureInfo is returning garbage

    Just to close this out, below is the final working UDT - it does need to be padded for 8 byte alignment or the call to GetGestureInfo() will fail with errror 87 invalid parameter.

    Thanks much for...
  21. Re: GetGestureInfo is returning garbage

    I should note that when I get rid of byte alignment bit the function fails with an error 87 invalid parameter which docs say is almost always a size of structure error. Doesn't fail when I add the...
  22. Re: GetGestureInfo is returning garbage

    Thanks, Elroy. Is there any trouble with using the int64 type instead of currency?
  23. Re: GetGestureInfo is returning garbage

    That would make sense as I'm getting correct values for everything up until ptsLocation. I was using the FreeBasic UDT which uses pointAPI. What should I use instead for POINTS?
  24. [RESOLVED] GetGestureInfo is returning garbage

    I'm guessing it's due to my type declaration - can anyone spot the problem?

    MSDN Structure:
    typedef struct GESTUREINFO {
    UINT cbSize;
    DWORD dwFlags;
    DWORD dwID;
    HWND ...
  25. Re: AlphaImgCtrl | Save Icon | Transparency | LaVolpe

    I also have FreeImage installed and would be happy to use that instead but so far I've not been able to coax it into performing the task. FreeImage has a number of functions with Transparency...
  26. Re: AlphaImgCtrl | Save Icon | Transparency | LaVolpe

    It's a 64bit bitmap and 256 colors in case that matters.
  27. AlphaImgCtrl | Save Icon | Transparency | LaVolpe

    Using AlphaImgCtrl to try to do a quick and dirty icon save with transparency.

    I have a bitmap loaded in a VB picturebox and the mask color I'm using is vbCyan. It seems like I should be able...
  28. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    OMG that appears to work. I'll have to give it a good workout to be sure, but this could me a miracle cure! You don't even have to apply the split twip offset. Thanks for sticking with me on this.
  29. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    The trouble with the compatibility settings is they basically display one's program as if it were running at 96 DPI and while it doesn't look too bad it doesn't look great either. It also takes some...
  30. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    I haven't tested this yet, but it seems too good to be true. Why would this work? What's the significance of adjusting .LEFT by 1 pixel in a .MOVE operation that would cause VB to set the .WIDTH...
  31. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    Clamp does have something going for it. What are we clamping here though? Does VB6 have a limitation I should know about? Is there a short integer wall somewhere that 3000 X 2000 will break?
  32. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    I haven't delved into the new GDI Scaling features yet. My goal is to get this app working and looking good on the latest Windows 10 1903 (May) release which is what I have installed on the test...
  33. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    I'm assuming (hoping) you mean that *I* should turn this into a float and not that Microsoft should. I'm using twip.x and twip.y which are single data type.
  34. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    I've been using the registry approach – is there any benefit to using the manifest approach instead?

    HKCU\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /v "<full path to ...
  35. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    In my initial forays into what I'm calling the barbaric approach I wrote a routine to pull in all of my .FRM and .BAS files and replace every instance of .LEFT, .RIGHT, .WIDTH, .HEIGHT and .MOVE with...
  36. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    I didn't get what the Limit(Width, 0) function does in your code.
  37. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    Thanks! I'll re-read the LaVolpe tutorial though it seemed like that focused on updating the controls themselves so that they behave properly. That would require some reverse engineering to apply...
  38. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    Oh dear. I'm just getting started with this. Are there more horrors in store for me? Is there a thread here where this is discussed that I've missed?
  39. Re: Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    This is similar to the road I was headed down, but it's a pretty big application and the thought of replacing all of the move operations individually seemed somewhat barbaric. I thought there might...
  40. Split Twip | 3000 X 2000 | Old OCX | Resizing Woes

    I'm trying to deal with some older OCX controls that are unable to handle resizing on high res monitors. On my test machine pixels = 7.5 twips. I'm wondering if anyone has found an...
Results 1 to 40 of 100
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width