Search results for query: *

  1. J

    outdated .net version

    .NET 6 is no longer supported by Microsoft, as of November 12 last year. You should upgrade to at least .NET 8, which will be supported until November 10 next year. Although .NET 9 is newer than .NET 8, it will end support sooner, on May 12 next year. That's because even-numbered versions always...
  2. J

    Open the device manager dialogue using csharp or xaml

    I'm curious as to why you would be using CreateNoWindow = true when your aim is to open a GUI window.
  3. J

    Controller methods share common data

    You should probably be using session variables. Session variables are persisted across requests and they are also per user, so they allow different users to have their own persistent values.
  4. J

    cant see sub class properties with base class List

    I have no idea what you're talking about and I'm not interested in trying to work it out any further. If you had provided a demonstration of what you were doing and an explanation of what happened, we could do the same and see whether we experienced the same behaviour. If we had then we'd...
  5. J

    Resolved static field in abstract class not intializing

    The preview versions aren't lacking anything that earlier versions have, other than deprecated features that have been removed from all future versions. They are basically a beta of the next version, so they may still contain bugs and incomplete new features. Unless you specifically want to live...
  6. J

    Resolved static field in abstract class not intializing

    There's way too much code in post #9. Post #2 said: It just makes it harder for us for no good reason if we have to wade through irrelevant code to find what actually matters. You seem to always make the minimum of effort and then expect us to make up the slack. If you'd like us to help you...
  7. J

    cant see sub class properties with base class List

    Does that one sentence really qualify as "FULL and CLEAR"? We want to help but if you're not going to try to help us do so, we can't. Your second screenshot shows a variable named temp but your picture of your code shows no such variable. If it's too much trouble for you to provide all the...
  8. J

    cant see sub class properties with base class List

    Are you saying, without actually saying, that you created a List<_temp1> object and you're expecting to see properties of a _temp object? If not, what are you saying? How about you provide a FULL and CLEAR explanation of the problem and provide that actually demonstrates it?
  9. J

    Question Cross-thread operation not valid from a Form running under a separate Thread

    That statement doesn't actually make any sense. There's no such thing as "running a form". Show us the actual code so we can see what you're actually doing. I suspect what you mean is that you're calling a method in that form on a different thread. ALWAYS show us the RELEVANT code.
  10. J

    Publishing Website Errors

    For future reference, please don't quote a previous post without good reason. If you're just generally replying to the previous post, you probably don't need to quote anything. You can always mention someone if you want to draw their attention to your post, which you do by typing an @ symbol and...
  11. J

    Expandable folders like in the taskbar

    WinForms menus have items and submenus and have done for over two decades, so I don't really know what you're asking for that shouldn't already be obvious. Please provide a FULL and CLEAR explanation of the actual problem.
  12. J

    grammar questions

    If you can't be bothered to provide a FULL and CLEAR explanation of the problem, you'll find many people unwilling to waste their time trying to work out what it is. A few comments in some code snippets don't cut it.
  13. J

    Resolved one reference type not updating

    We don't need a video. We need the simplest code that we can run to see the aberrant behaviour. You may need to create a new test project to cut out all the irrelevant stuff but you should probably have done that already, as part of your own debugging. Creating test projects to isolate problem...
  14. J

    Resolved one reference type not updating

    Please provide code that we can run to actually demonstrate your issue. The code you've posted is pretty useless on its own.
  15. J

    Question Is there a forum for Micro-Cap Spice Simulator?

    A C# member might know how to knit a scarf too, but that doesn't mean that asking knitting questions on a C# forum is OK. Please stick to questions on the topic of the forum you post in and nothing else.
  16. J

    Question Is there a forum for Micro-Cap Spice Simulator?

    So, you asked a question in a dedicated C# forum that has nothing to do with C#? Let's not do that. If this question belongs anywhere on this site, it's Programmer Chat, if that. Thread moved.
  17. J

    Question Is there a forum for Micro-Cap Spice Simulator?

    There are no forums on this site dedicated to specific third-party tools, so no. There is almost certainly at least one more general forum on which you could post questions about this tool, but I can't tell you which one as I don't know what that tool is and I won't be looking it up for myself.
  18. J

    Answered How to Add a Prefix Title to an Existing Thread?

    Also note that you don't have to explicitly change the prefix to 'Resolved' when you issue is resolved. There's a dedicated button at the top of the thread on the right to do that.
  19. J

    Answered How to Add a Prefix Title to an Existing Thread?

    For the record, you can use the 'Report' button under your post to send a message to the mods. That's usually done to notify us of a problematic post from someone else but it can also be used to ask us to modify your own post if you can't edit it.
  20. J

    How to return an object of the inherited class ?

    It's still not really clear why you would want to do this. Maybe there's a valid reason but quite possibly not and you're just misunderstanding some principle(s)
Back
Top Bottom