Questions tagged [user-control]
The user-control tag has no summary.
20 questions
2
votes
3
answers
183
views
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 ...
-2
votes
1
answer
94
views
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.
...
2
votes
1
answer
243
views
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 ...
-1
votes
1
answer
116
views
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....
8
votes
4
answers
10k
views
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 ...
2
votes
1
answer
1k
views
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 ...
11
votes
3
answers
12k
views
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 ...
-2
votes
1
answer
75
views
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 ...
2
votes
2
answers
125
views
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 ...
2
votes
2
answers
166
views
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 ...
0
votes
1
answer
504
views
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 ...
2
votes
3
answers
2k
views
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 ...
0
votes
1
answer
401
views
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 ...
5
votes
3
answers
2k
views
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 ...
-1
votes
2
answers
499
views
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 ...