Questions tagged [user-control]
The user-control tag has no summary.
20 questions
2votes
3answers
146views
Handling user strategy choice over many strategy patterns
I’m building a framework with many parallel implementations of strategy patterns, and I want to know the best way to handle the user’s choice of the set of strategies. E.g. I want to calculate the ...
-2votes
1answer
86views
What controls should my help desk team have over our user's accounts?
We are building a software, which we have companies registering their products. We (the administrator) will have the help desk team that'll be able to help our users (companies) in case of problems. ...
2votes
1answer
231views
Access control to Django App running on private server
I am a self-learning programmer (with a fair share of python knowledge), and currently a company asked to develop a simple application so that they can track employee expenses (and I thought of using ...
-1votes
1answer
99views
How should I update back-end data (e.g. follows, likes, etc.) which changes at an inconsistent rate?
(This is a conceptual question but as reference, I'm using Android Studio (Java) and Firebase Firestore...) My app currently has a structure where the user can follow authors and favorite their works....
8votes
4answers
10kviews
User registration flow in microservices
Let's say I have multiple microservices like authorization service (OAuth2 with JWT), VideoService and MyApplicationService. The VideoService provides videos for MyApplicationService. Both services ...
2votes
1answer
1kviews
User identity and microservices
I have created a User service that controls user login using OAuth2 protocol and stores the user in the local database. So this service is aware of the user session and user identity. Now I have ...
11votes
3answers
12kviews
Is it good practice to use user controls to structure WPF forms even if these user controls are only used once?
I develop a WPF application using MVVM and I am learning how to do things best. I have a WPF form with selectors, two list with search fields, and some other elements. Currently all is in one form ...
-2votes
1answer
60views
Link users from different web apps
We have a PHP based web application with a lot of project data. All of our customers have a dedicated instance of this application. Now we want to allow a very limited access to some third party ...
2votes
2answers
99views
How can I provide a user edit-level control over currently hardcoded formulas?
Current Situation I maintain a website that has a simple form that users fill out with simple engineering data. They press Submit, and the PHP code takes over and does various basic arithmetic on ...
2votes
2answers
149views
Multi application handling from single GUI [closed]
I'm searching for an approach to a very generic problem. In my recent private project, I want to control different Applications from a single GUI. To make the idea more clear I'll explain my project ...
0votes
1answer
485views
Replace use of ComboBox with user controls
In currently developing a project where I'm going to use a lot of combobox, in order to avoid repeating a lot of code I'm planning on building a user control containing a ComboBox that retrieve the ...
2votes
3answers
2kviews
Refactoring web pages with user controls
Is it good design to use many user controls to help refactor a web application? In my case, it's a VB.NET Webforms ASP.NET website. All our pages are organized into sections that, while related and ...
0votes
1answer
388views
When to build User Controls in ASP.NET
I am inheriting a legacy code. The legacy code has lot of web forms and each web form does not have much of functionality other than hosting a user control. My question is - Should we create a user ...
5votes
3answers
2kviews
A design pattern for data binding an object (with subclasses) to asp.net user control
I have an abstract class called Address and I am deriving three classes ; HomeAddress, Work Address, NextOfKin address. My idea is to bind this to a usercontrol and based on the type of Address it ...
-1votes
2answers
485views
Access functions from user control without events?
On some generic functions, it seems that accessing a function on mainform directly from the usercontrol is easier than raising an event. For example: A function on main form that displays one desired ...