Click here to Skip to main content
15,887,135 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Reactive Frameworks. Thoughts? Pin
W Balboos, GHB30-Mar-21 1:08
W Balboos, GHB30-Mar-21 1:08 
AnswerRe: Reactive Frameworks. Thoughts? Pin
Mike Hankey26-Mar-21 7:25
mveMike Hankey26-Mar-21 7:25 
AnswerRe: Reactive Frameworks. Thoughts? Pin
GuyThiebaut26-Mar-21 7:35
professionalGuyThiebaut26-Mar-21 7:35 
GeneralRe: Reactive Frameworks. Thoughts? Pin
Chris Maunder27-Mar-21 7:05
cofounderChris Maunder27-Mar-21 7:05 
GeneralRe: Reactive Frameworks. Thoughts? Pin
rallets29-Mar-21 0:56
rallets29-Mar-21 0:56 
GeneralRe: Reactive Frameworks. Thoughts? Pin
Terry Slack29-Mar-21 5:54
Terry Slack29-Mar-21 5:54 
AnswerRe: Reactive Frameworks. Thoughts? Pin
Gerry Schmitz26-Mar-21 9:07
mveGerry Schmitz26-Mar-21 9:07 
AnswerRe: Reactive Frameworks. Thoughts? Pin
raddevus26-Mar-21 10:48
mvaraddevus26-Mar-21 10:48 
Remember DDX (Dialog Data Exchange) in WinForms (MFC)?
Dialog Data Exchange | Microsoft Docs[^]

It allowed you to bind the control value to your member variable.

C++
void CTestDialog::DoDataExchange(CDataExchange* pDX)
{
   CDialog::DoDataExchange(pDX);
   DDX_Check(pDX, IDC_MY_CHECKBOX, m_bVal);
   DDX_Text(pDX, IDC_MY_TEXTBOX, m_strName);
   DDV_MaxChars(pDX, m_strName, 20);
}


This binding thing been around for a long time, but it didn't have a good name like React. Smile | :)

Once Something Out of the Ordinary Happens
The Angular binding was a lot of fun and quite smooth. Just kind of does everything for you.
The problem with all of these is when something out of the ordinary happens.

Generally once that happens you spend countless hours trying to fix things that happen by magic.
GeneralRe: Reactive Frameworks. Thoughts? Pin
Chris Maunder27-Mar-21 7:06
cofounderChris Maunder27-Mar-21 7:06 
GeneralRe: Reactive Frameworks. Thoughts? Pin
darktrick54429-Mar-21 5:27
darktrick54429-Mar-21 5:27 
AnswerRe: Reactive Frameworks. Thoughts? Pin
Sander Rossel26-Mar-21 10:48
professionalSander Rossel26-Mar-21 10:48 
GeneralRe: Reactive Frameworks. Thoughts? Pin
Chris Maunder27-Mar-21 7:07
cofounderChris Maunder27-Mar-21 7:07 
AnswerRe: Reactive Frameworks. Thoughts? Pin
User 1508085426-Mar-21 15:30
User 1508085426-Mar-21 15:30 
AnswerRe: Reactive Frameworks. Thoughts? Pin
jhaga26-Mar-21 20:23
professionaljhaga26-Mar-21 20:23 
GeneralRe: Reactive Frameworks. Thoughts? Pin
Chris Maunder27-Mar-21 7:08
cofounderChris Maunder27-Mar-21 7:08 
QuestionRe: Reactive Frameworks. Thoughts? Pin
Eddy Vluggen27-Mar-21 8:42
professionalEddy Vluggen27-Mar-21 8:42 
AnswerRe: Reactive Frameworks. Thoughts? Pin
Marc Clifton27-Mar-21 13:01
mvaMarc Clifton27-Mar-21 13:01 
AnswerRe: Reactive Frameworks. Thoughts? Pin
rallets29-Mar-21 0:59
rallets29-Mar-21 0:59 
GeneralRe: Reactive Frameworks. Thoughts? Pin
raddevus29-Mar-21 5:49
mvaraddevus29-Mar-21 5:49 
AnswerRe: Reactive Frameworks. Thoughts? Pin
jkirkerx29-Mar-21 9:45
professionaljkirkerx29-Mar-21 9:45 
AnswerRe: Reactive Frameworks. Thoughts? Pin
Matt McGuire30-Mar-21 6:49
professionalMatt McGuire30-Mar-21 6:49 
GeneralThought of the Day Pin
OriginalGriff26-Mar-21 5:50
mveOriginalGriff26-Mar-21 5:50 
GeneralRe: Thought of the Day Pin
jeron126-Mar-21 6:15
jeron126-Mar-21 6:15 
GeneralRe: Thought of the Day Pin
W Balboos, GHB26-Mar-21 6:21
W Balboos, GHB26-Mar-21 6:21 
GeneralRe: Thought of the Day Pin
Mike Hankey26-Mar-21 7:27
mveMike Hankey26-Mar-21 7:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.