Posts by Michael Martins • 53 points
7 posts
-
0
votes1
answer24
viewsQ: Error sending pdf by Codeigniter 3
I’m getting the bug A problem was encountered while attempting to move the uploaded file to the final Destination when trying to send a pdf through the form. Follows the function that sends the…
-
3
votes1
answer10458
viewsQ: How to use Inner Join in Laravel 5?
I have the following loop in a view table @foreach ($filme as $f) <tr> <td>{{ $f->fil_id }}</td> <td>{{ $f->fil_filme }}</td> <td>{{ $f->fil_sinopse…
-
0
votes0
answers33
viewsQ: How to use Updateprogress with Enablepartialrendering=false?
I have a page where you need to fill two dropdownlists, but do not load Updateprogress if Enablepartialrendering is false. If true, Updateprogress is loaded, but the second DDL is not.
-
0
votes2
answers1568
viewsQ: How to display a modal using the c# and bootstrap button?
If you use the <button type="button" data-toggle="modal" data-target="#ConvenioOk">Teste </button> modal opens. But I have to use the C# button due to the event. The button calling the…
-
0
votes1
answer239
viewsQ: Interleaved matrix
Hello, I’m doing this exercise, but I’m having a hard time. Follow the statement: 22) Write a program to generate one matrix (N x M) (<=20) and another (N x P) (<=20). Generate a third matrix…
-
0
votes1
answer652
viewsQ: Fraction sequence with Fibonacci and primes
h. Ask the user for the amount of terms he wants and print the sequence below and the sum of terms. 1 + 1 + 2 + 3 + 5 + 8 +… 2 3 5 7 11 13 * above Fibonacci sequence and below Primes sequence. I…
-
0
votes1
answer284
viewsQ: Initial end term of the Fibonacci sequence (closed interval)
I have to make a list of exercises in C and Java, but I could not understand the logic in this exercise. Could someone help? Ask the user for the initial and final Fibonacci sequence term (closed…