Questions tagged as 'assincronismo'

2
answers

jQuery / AJAX: a single form that can be submitted to different urls (POST or PUT)

I have the following scenario: I have a form that is used to register or change a teacher; To register I have a button at the top that calls the modal to do the POST; To change I have a button on each row of the teachers table that calls...
asked by 16.08.2017 / 02:53
1
answer

Overwrite asynchronous variable

I need to have control of the number of concurrent asynchronous calls from ajax, but I can not overwrite the control variable that holds the number of calls. Every time an asynchronous call is launched it uses the value of the first call ( a cop...
asked by 03.03.2016 / 18:36
0
answers

Asynchronous video upload

I have a page with several videos that come from Youtube, this page takes a considerable time to load and on older computers, the page is locked until everything is loaded. Is there a way to load the videos asynchronously without the videos h...
asked by 08.11.2018 / 16:11
1
answer

Parallel Execution

I have a process that is running in my application for control. This process runs within a timer. private void timer1_Tick(object sender, EventArgs e) { // bloco de instruções 1 // bloco de instruções 2 } What happens is that proce...
asked by 10.10.2018 / 20:41
0
answers

Asynchronous processing c # [duplicate]

When you need to process a lot of information and to prevent the application from crashing in the future, asynchronous processing is used. My question is if in the current .NET version BackgroundWorker is the best option, compared to Async, or...
asked by 22.08.2018 / 18:14
0
answers

Help in implementing an Asynchronous Progress Bar WPF C #

Good afternoon, I have an application where I run a long and slow process and would like to implement a progress bar that shows the percentage of the process that has already been executed, however if I implement the progress bar on the same scr...
asked by 07.06.2018 / 18:03
1
answer

Return database data in the label with Javascript

I need to return the database data inside the inputs when I select the "Edit" button without the page being reloaded, however, by clicking "Edit", I see that the button action changes, according to the javascript code, but the inputs are not fil...
asked by 12.12.2017 / 01:34
1
answer

Kendo ui chart with several graphs - Asynchronous

I have a screen that can have 1 or more graphics, so I'm using Kendo Ui chart, however today this screen is synchronous, however I'd like to switch to Asynchronous to get faster. I created the Graphics Id in HTML, creating a unique id for each g...
asked by 30.07.2018 / 15:04
1
answer

Wait for an event to be triggered to continue the C #

In the RealizarPesquisa method, when running the _WebBrowser.Navigate() line, the DocumentCompleted() event is triggered, but this event takes a while to execute, so the RealizarPesquisa method continues its process a...
asked by 14.07.2017 / 16:48
2
answers

Asynchronous call to a RestFull WebService

I need to make a call to the WebService on Android, and with another class call it. At the end show in design the response obtained by ws. I've already done the WebService but that part of the "asynchronous" is not giving. This is my WebSer...
asked by 05.07.2016 / 13:35