Posts by Philipe Said • 138 points
12 posts
-
1
votes1
answer1583
viewsQ: React Native: How to select the next Textinput after pressing the "next" button on the keyboard?
I use Input component to insert data into the main form, according to the code below. import React from "react"; import { TextInput, View } from "react-native"; const Input = ({ placeholder, value,…
-
0
votes2
answers2621
viewsQ: Redirect to "Home" screen after login validation - React Native + Firebase
I need to implement in the code below the command so that the user is validated is redirected to the screen "Home". The changes I’ve made haven’t solved my problem. I can create the user, save in…
-
0
votes1
answer104
viewsQ: Login React Native + Firebase error using "Switchnavigator"
Error (Undefined is not a Function (near '...(0, _reactNavigation.Switchnavigator)...')) when compiling application. I need that when logging in is directed to the screen "Main". import React from…
-
-3
votes1
answer145
viewsQ: Countdown does not stop at Zero
Countdown timer doesn’t stop when it reaches "0". I need the timer to stop when it reaches "0" and when clicking on the "start" button it starts with the set value, which is "1 min" and decreases to…
-
0
votes1
answer785
viewsQ: Add +1 min to countdown timer - With timer already finished or in progress
Each time I click a button, I want to add +1 min to the timer. <Button onPress={this.somarUmMinuto} title="Somar 1 minuto" color="#007FFF" accessibilityLabel="Somar 1 minuto" /> Code used to…
-
0
votes0
answers28
viewsQ: Add digits to auto increment database field
I need to add in the Mysql database id field, which is auto increment, the value 0 up to 4 digits - will serve as invoice number. In the form I do not handle this item, it has to be directly in the…
mysqlasked Philipe Said 138 -
0
votes1
answer745
viewsA: Set listview cell color for specific words
Code for formatting the subset lsvDados.UseItemStyleForSubItems = false;//para que a formataçao do item nao se propague ao subitem foreach (ListViewItem item in lsvDados.Items) { if…
c#answered Philipe Said 138 -
1
votes1
answer338
viewsQ: Format subitem listview
I have problems defining Subitem background color from listview when returning database query. I need that in the column n° 18, which will return values such as " Expired" and " In Day" when the…
-
0
votes1
answer745
viewsQ: Set listview cell color for specific words
I need that when loading specific data in the listview the cell in question is formatted with defined color. The code below formats the entire and accurate row that format only the defined cell.…
c#asked Philipe Said 138 -
4
votes2
answers2280
viewsA: Change Varchar field to Date Mysql
You need to convert dd/mm/yyyy date to correct yyy/mm/dd ? If it is solved using this script below straight in the bank . UPDATE tbl_data SET data = DATE_FORMAT(STR_TO_DATE(data, '%d/%m/%Y'),…
-
0
votes2
answers906
viewsQ: Calculate difference between dates and change status
I need to create some routine to calculate the difference between two dates directly in the Mysql database and change the status of another field according to this difference. The database fields…
-
3
votes2
answers407
viewsQ: Saving file path in Mysql
I’m having trouble saving file address in the database. When saving the address in the bank it is adding the amount of times I used the OpenFileDialog to save a file. Always save the address like…