[Solved] Parental control or web filter with c# [closed]

I’d say you’d probably be looking at setting up a proxy on your local network, pointing the machines you want parental control on to that proxy, and filtering the “allowed” traffic by either: Checking website address against a predefined blocklist, and/or Reading through the HTML looking for naughty words or phrases. How to create a … Read more

[Solved] What is app control panel [closed]

usually when somebody wants to make a mobile application, he creates a control panel using any back-end (php, java, node.js …etc) so he can control the API (if your app uses API call), he may also want to disable the application, so in each run in the application side, an API call will be invoked … Read more

[Solved] How can i disable moving between Tab Control tabs by mouse in c# [closed]

This doesn’t really make a lot of sense. Short of disabling the mouse cursor entirely, I don’t know how you would possibly achieve this. Even if there were a way of “ignoring” mouse clicks on the tab control tabs, that would be incredibly bad UI. As far as the user would be concerned, your application … Read more

[Solved] Accessing controls from different forms

Looking at the original code, there are two potential reasons for the NullReferenceException you are getting. First, tb is not defined in the code you provide so I am not sure what that is. Secondly, TextBox textbox = form.Controls[“textboxMain”] as TextBox can return null if the control is not found or is not a TextBox. … Read more

[Solved] C# WPF ComboBox Auto switch number [closed]

You can add separate properties in your ViewModel and separate ComboBoxes in the view, then manipulate the values when a value changes in the ViewModel, but this is cumbersome, and involves a lot of work when you add a new ComboBox (value). A better approach is to create a custom collection that handles the changes: … Read more