Search:

Type: Posts; User: clarkgriswald

Page 1 of 13 1 2 3 4

Search: Search took 0.15 seconds.

  1. Replies
    1
    Views
    8,125

    React and DIV Transition

    I have a react app that contains something like this :



    <div id='button'>
    <div id='menu'>
    <div id='menu-item'>Item 1</div>
    <div id='menu-item'>Item 2</div>
    ...
  2. Replies
    15
    Views
    1,456

    Re: Accessibility

    This seems like it would require A LOT of rework for our legacy app. Looking for something a bit less intrusive if that makes sense. This looks promising, but not quite sure how to use with VB6:...
  3. Replies
    11
    Views
    1,120

    Re: FocusRect Bug/Workaround

    Just downloaded their latest version and I can still reproduce the focus issue. Setting the focus programmatically does not draw the focus rect for me.
  4. Replies
    11
    Views
    1,120

    Re: FocusRect Bug/Workaround

    I will give that a try as well. Noticed another problem if the first item in the group is a control type and then there is one more group with a link item. Doesn't seem to focus the control natively...
  5. Replies
    11
    Views
    1,120

    Re: FocusRect Bug/Workaround

    Good to know that I wasn't going crazy and that they at least addressed it (although we won't be updating for the legacy product).



    I have been playing with Got?LostFocus as well, so trying to...
  6. Replies
    11
    Views
    1,120

    Re: FocusRect Bug/Workaround

    Ok, just created a small example and replicated the issue.

    I had a form with 2 buttons and a TaskPanel (v12). The only code was the following:



    Private Sub Form_Load()
    ...
  7. Replies
    11
    Views
    1,120

    Re: FocusRect Bug/Workaround

    That may be the issue, since this is a legacy product, we are using version 12.0 - perhaps there was a fix implemented after v12? As for the sample project, let me try a small sample to ensure I see...
  8. Replies
    11
    Views
    1,120

    FocusRect Bug/Workaround

    I am pretty sure this is a bug. I am using a CodeJock TaskPanel and have the DrawFocusRect property set to true. When I tab into the control and set the focused item, the focus rectangle is not...
  9. Replies
    8
    Views
    916

    Re: Inheritance Confusion

    Ok, so maybe I feel a bit better since this is not so simple. I am trying to figure the best way to do this without a bunch of redundancy and while maintaining elegance.
  10. Replies
    8
    Views
    916

    Re: Inheritance Confusion

    I will explain what I am trying to do using my crude classes above. I have a class (Animal) that has a bunch of properties and methods. I have another class (DomesticAnimal) that needs all of the...
  11. Replies
    8
    Views
    916

    Re: Inheritance Confusion

    Sorry, I copied the code after I was tinkering; it’s supposed to be Overloads. Will update the original post, but note the issue is still the same.
  12. Replies
    8
    Views
    916

    Inheritance Confusion

    I am confusing myself with a concept I feel is pretty basic, but I must be doing something wrong. Here are a couple of crude classes to demonstrate the issue.



    Public Class Animal

    ...
  13. Replies
    15
    Views
    1,456

    Re: Accessibility

    Sorry, meant screen reader accessibility. There are several controls that do not play well with screen readers and was hoping someone already went down this path.
  14. Replies
    15
    Views
    1,456

    Accessibility

    I know this is going to be a huge ask, but has anyone found a solution for adding accessibility to VB6? We have a large legacy (obviously) vb6 application that is in need of accessibility support....
  15. Replies
    7
    Views
    779

    Re: Windows Service and My.Settings

    WIN10 - nothing there or syswow64
  16. Replies
    7
    Views
    779

    Re: Windows Service and My.Settings

    I had tried that one as well, but the base config folder is empty.
  17. Replies
    7
    Views
    779

    Re: Windows Service and My.Settings

    Good thought, but nothing in there either. The settings are User scope and the service runs under LocalSystem.
  18. Replies
    7
    Views
    779

    Windows Service and My.Settings

    I wrote a small windows service application for my own machine and am using My.Settings to save data. Where on earth are the updated settings stored?? I checked the directory of the installed service...
  19. Replies
    5
    Views
    749

    Re: Background Worker Progress

    Thanks for all the input guys. To clarify why I had wanted the user to "see" the messages...the operations are part of a check for updates process (I have consolidated some steps):
    Step 1: checking...
  20. Replies
    4
    Views
    933

    Re: My.Settings Upgrades

    I changed the way this worked and ensured that the application was installed into the same folder.
  21. Replies
    5
    Views
    749

    Background Worker Progress

    I have background worker that performs several operations. In the DoWork event, I call the ReportProgress method before each operation, to update a status modal that is displayed to the user (in the...
  22. Replies
    4
    Views
    933

    Re: My.Settings Upgrades

    Which would be perfect, but it doesn't seem to be doing that. For example, I have a string setting LastUser. After running v1.0.0.0 the setting is updated appropriately, say 'foo' and it is in the...
  23. Replies
    4
    Views
    933

    [RESOLVED] My.Settings Upgrades

    I have a small internal tool that I have created for a few employees at my office. I didn't bother creating an install for the application since it is so small, I just post the app folder on the...
  24. Replies
    1
    Views
    553

    Start Nginx From App

    Forgive me if this is a ridiculous question, but I am writing a utility app that performs some actions, one of which is starting up nginx. When I double click the exe, the process starts as expected...
  25. Replies
    0
    Views
    606

    ListView OwnerDraw

    I am having some bizarre issues with trying to use the OwnerDraw property of the ListView. Here are my events:


    Private Sub ListContent_DrawSubItem(sender As Object, e As...
  26. Replies
    1
    Views
    604

    Text Measuring / Wrapping

    We are currently using a PDF Tool from Debenu that has a bug in one of their methods. The method is used to return the wrapped text (if applicable) given a string and a max width. In other words, if...
  27. Replies
    1
    Views
    1,531

    Re: Horizontal Menu Bar Help

    I think I got it..

    box-shadow: inset 0px 0px 0px 1px #ccc;
    box-sizing: border-box;
  28. Replies
    1
    Views
    1,531

    [RESOLVED] Horizontal Menu Bar Help

    I am trying to make a horizontal toggle bar with rounded edges. I am not sure if there is a specific name for the component or not, but it's basically a bar that contains 2 or more items and is...
  29. Replies
    5
    Views
    1,090

    Re: SIMPLE RegEx ***?!

    You are correct, in this case it doesn't matter and perhaps that is why it was failing?
  30. Replies
    5
    Views
    1,090

    Re: SIMPLE RegEx ***?!

    You are correct...that makes NO sense! But thank you! Hmm, but I need to ignore case, guess that's the next thing to figure out.
  31. Replies
    5
    Views
    1,090

    SIMPLE RegEx ***?!

    Const KeyWordPattern = "\[.+?]"

    Dim matches = New Regex(KeyWordPattern).Matches(value, RegexOptions.IgnoreCase)


    In this case, value="[MULT]" and matches = 0. What am I missing here??

    What...
  32. Replies
    6
    Views
    1,368

    Re: DataGridViewCell Cursor and Border

    This fixed the issue. Now the cell clipping issue is the only one left.



    Protected Overrides Sub WndProc(ByRef m As Message)

    Const WM_SETCURSOR = &H20

    If m.Msg =...
  33. Replies
    6
    Views
    1,368

    Re: DataGridViewCell Cursor and Border

    I can't seem to get the above link's suggestion to work either. This has to be possible to do...
  34. Replies
    6
    Views
    1,368

    Re: DataGridViewCell Cursor and Border

    Tried that as well; I think I need to intercept the messages for cursors:

    https://stackoverflow.com/questions/36752347/setting-combobox-cursor-doesnt-work-for-default-arrow-cursors
  35. Replies
    6
    Views
    1,368

    Re: DataGridViewCell Cursor and Border

    That’s actually what I tried at first as well, but did not work at all actually.
  36. Replies
    6
    Views
    1,368

    DataGridViewCell Cursor and Border

    I have a custom DataGridViewCell that inherits a ComboBox. The custom cell supports selecting multiple items and thus the ComboBox DropDownStyle is DropDown. I prevent the user from being able to...
  37. Replies
    5
    Views
    1,835

    Re: Deep Clone Help

    Yup, we are thinking alike here...I find it strange that .NET doesn't have this support natively, obviously it's not trivial. Did you happen to take a look at that MemberwiseClone article? Thoughts...
  38. Replies
    5
    Views
    1,835

    Re: Deep Clone Help

    Yup, that was the exact issue I was running into. I saw a solution that uses MemberwiseClone and reflection, but it kind of looked like a bit of magic in some areas.
    Not that this is ideal, but...
  39. Replies
    5
    Views
    1,835

    Deep Clone Help

    I am jumping into a project that already has its object model built and in use. I am trying to make a DeepClone method on the object, but I am running into trouble due to the fact that the class...
  40. Replies
    0
    Views
    700

    ComClass and NotInheritable

    Is there a way to reference a .NET class in COM without having to instantiate it?

    Here is my .NET interop class signature:

    <ComClass(InputMask.ClassId, InputMask.InterfaceId,...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width