- 0
[C#] Dynamic Event Handling
Asked by
zackiv31,
-
Recently Browsing 0 members
- No registered users viewing this page.
-
Posts
-
By David Uzondu · Posted
You can now hide your Reddit posts and comments from your profile by David Uzondu Reddit recently announced it is rolling out updates to profile settings in its mobile app, giving users more control over which of their posts and comments are visible on their public Reddit profiles. If you have ever wanted to participate in various communities without every single interaction being displayed for all to see on your profile page, these new options should be welcome news. The core of this change is a new setting called "Content and activity". Through this, redditors can fine-tune what appears on their profile on a subreddit-by-subreddit basis. You will have a few choices: keep all posts and comments visible, which is how things currently work by default; opt to hide all public posts and comments, including those made directly on your profile; or selectively display posts and comments from specific communities you choose while keeping contributions to other subreddits hidden. It is worth noting that this control is at the community level, not for individual posts or comments. Reddit says it's making changes to help moderators manage communities more effectively. In certain situations, moderators will still be able to view a user's full public post and comment history for up to 28 days, even if the user has restricted their profile visibility. This access applies when someone interacts with a community by posting, commenting, sending modmail, or requesting to join a restricted space. The company also notes that if someone replies to a post on your profile, you will temporarily be able to see their full post and comment history as well. All profile settings have been consolidated under a new "Curate your profile" section, which includes the "Content and activities" setting, an NSFW toggle for content and communities on your profile, and a toggle to show or hide your follower count. Additionally, the personal activity summary has been refreshed to provide a clearer overview of karma, total contributions, account age, and active communities, reflecting your "Content and activity" choices. This feature for managing profile visibility arrives just a few months after the company introduced Reddit Answers, its AI-powered conversational search tool designed to surface information from across the platform. -
By Nick H. · Posted
Firefox. I've got Chrome and Brave installed for testing purposes, but Firefox is my default browser on my computers and phone. -
By David Uzondu · Posted
Chrome. Because it just works Chrome. Because it just works -
By kiddingguy · Posted
I'm curious as to how Apple will marketing it's (lacking) AI-thingy compared to other players in the market. I'm not pro-AI on OS'es, but having practically nothing looks kinda 'sad' to me also. -
By zikalify · Posted
Anthropic cuts off Windsurf's Claude 3.x access: What it means for users by Paul Hill The popular AI-native coding tool, Windsurf, has announced that Anthropic has cut off first-party capacity to its Claude 3 series of models, including Claude 3.5 Sonnet, 3.7 Sonnet, and 3.7 Sonnet Thinking. Until Windsurf can find some capacity to support the demand for these models, it has had to make some short-term changes. One action Windsurf is taking to ease capacity issues is offering a promo rate for Gemini 2.5 Pro of 0.75x credits instead of the usual 1x. Gemini 2.5 Pro is a strong alternative to Claude models for coding, so it could help ease the capacity burden. Additionally, Windsurf has totally removed direct access to the affected Claude models for Free tier users and those trialing the Pro plan. However, you can add your own Claude API key to continue using the model in Windsurf. Claude Sonnet 4 is also available via your own key. Who it affects, and how As a result of the change, users who rely on the Claude 3 series models within Windsurf may experience slower response times or temporary unavailability. As an alternative, users could use the free SWE-1 models or the heavily discounted promo of GPT-4.1. There are other models available for paying customers, too. Users on the Free plan or enjoying a trial of Pro are the most affected by this change is it completely removes first-party capacity, forcing them to create a key and add it manually in Windsurf. This is a big barrier to entry, but some people might be willing to do this as Claude is widely seen as one of the best AI models for coding. The move could be considered a fairly big blow to Windsurf, which was recently in acquisition talks with OpenAI. Given Claude’s reputation as a strong AI for coding, developers could be less likely to use Windsurf now that it doesn’t come with Claude's set and is ready to go on the Free plan. Why it's happening The change came with less than a week’s notice for Windsurf to adapt to the change. While the press release doesn’t disclose the reasons for Anthropic's decision, there is a strong likelihood that it has something to do with OpenAI’s potential acquisition of the IDE. Anthropic and OpenAI were the original leaders competing in the AI race, and Anthropic won’t want to give OpenAI any help if it can help it. The chagrined Windsurf said that it was concerned about Anthropic’s decision and said the move would harm the entire industry, not just Windsurf. It’s unclear what it means by this, as it didn’t elucidate on this thought. Reactions As mentioned earlier, if you have been using Claude models and now feel abandoned by Anthropic and Windsurf, following the latter’s recommendation to use Gemini Pro 2.5 could be a sensible idea. While first-party capacity has been removed, Windsurf is still actively working with other inference providers to restore capacity and full access to the models. Windsurf, while disappointed with Anthropic's move, said the magic of its IDE doesn’t come from the models themselves. Instead, it’s all about the software’s deep contextual understanding, intentional user experience, and unique features like Previews, Deploys, and Reviews. Despite this setback, it will keep trying to deliver “magic.” Given everything, users will now need to decide whether Gemini 2.5 Pro meets their needs or if they need to hunt for a Claude 3 series API key to restore Claude functionality in Windsurf. If you use Windsurf, do not overlook its own model, SWE-1, as it’s also very capable and free to use. This decision by Anthropic highlights the main issue with relying on third parties to provide AI tools that we increasingly rely upon. For businesses like Windsurf, it means they will diversify the models they offer or, as Windsurf has already done, create their own LLMs that they control. For end users, being able to download a language model and run it offline is increasingly becoming easier and ensures users don’t lose access to their favorite models. Windsurf is not the only AI IDE on the scene, and this move could cause problems for it if other players continue to offer Claude models, at least in the short term, while it searches for more capacity. It will also reduce trust between model creators like Anthropic and the companies that rely on the models.
-
-
Recent Achievements
-
mywakehealth earned a badge
Week One Done
-
jbatch earned a badge
Dedicated
-
Leonard grant earned a badge
Week One Done
-
portacnb1 earned a badge
One Month Later
-
portacnb1 earned a badge
Week One Done
-
-
Popular Contributors
-
Tell a friend
Question
zackiv31
I have an arbitrary list of elements that I'm adding to a tableLayoutPanel (it was the first layout I came across that I could add elements to and it would be scrollable). For each element, I add the name of the element, with a TrackBar and a TextBox. (so three controls per row).
I want to link the TrackBar with the TextBox in a way where when I move the TrackBar, it changes the numeric value in the textBox to the value of the TrackBar (and ViceVersa).
I know how to add the Events for the two (+= new EventHandler(Scrolled)). The problem is all my elements are being added with the same EventName, so no matter which control I manipulate, i want the corresponding controls to change as well... I think this is OK, because I don't know how many of these elements I will have until runtime.
My question is this... inside the Scrolled method, how can I make elementScrollBar1 change elementTextBox1, and 2 -> 2, 3 -> 3, etc? The only things passed in are object sender, EventArgs events. Is what I'm trying to do possible? If so please help.
Link to comment
https://www.neowin.net/forum/topic/610910-c-dynamic-event-handling/Share on other sites
21 answers to this question
Recommended Posts