Posts by Daniel Vasconcelos • 49 points
6 posts
-
1
votes0
answers38
viewsQ: C language - cannot acess memory 0x42be0000
I cannot access the memory and bring the Value. The caroname variable also gives the same message. #include <stdio.h> #include <conio.h> #include <time.h> #include <string.h>…
casked Daniel Vasconcelos 49 -
0
votes1
answer74
viewsQ: I click on Ubmit to send email and he plays me on page 404.php
What happens to you: When I click on the "Send" email button, it throws me to 404.php screen, not entering my function send_contact_form, which is inside Function.php. This function is the one that…
-
0
votes1
answer518
viewsQ: $_SERVER['REQUEST_METHOD'] == "POST" Does not work PHP wordpress
I’m trying to detect a post in a form but I can’t, actually it doesn’t work. <?php /* Template Name: Contato */ get_header(); get_template_part( 'components/header/header', 'text' ); $options =…
-
-1
votes1
answer372
viewsQ: Location.href is not transferring me from ASP.NET MVC page
I am making a login screen in ASP.NET MVC. The framework does all the complete processes without errors: goes to the database, queries the login and comes back with an OK (user exists, I can…
-
2
votes1
answer143
viewsQ: Datagridview Filter(Rowfilter) is giving error
My code: private void txtVendaFiltro_TextChanged(object sender, EventArgs e) { (GridVendas.DataSource as DataTable).DefaultView.RowFilter = string.Format("id LIKE '%{0}%'", txtVendaFiltro.Text); }…
c#asked Daniel Vasconcelos 49 -
1
votes2
answers144
viewsA: How a Checkbox can receive a Datagridview Checkboxcell
Try: int index = gridConsultaUsuario.SelectedRows[0].Index; ckAdm.Checked= Convert.ToBoolean(gridConsultaUsuario.Rows[index].Cells[5].Value);