Posts by SaPires • 125 points
9 posts
-
0
votes0
answers83
views -
4
votes1
answer451
viewsQ: Block fields in Subforms in MS Access
I have the following form with a Subform: And I need to enable Check in "Approve3" and lock the other fields, but I can only get "LOCK" all or none, how can I go around? Maybe by flying in? I…
-
0
votes2
answers80
viewsQ: Where to create a database without privileges
I created, at work, a "program" in Access because I need a database, and have a graphical environment, everything was running on until the company "remembered" to delete Access from the available…
-
2
votes1
answer50
viewsQ: Error retrieving SQL data
I have this code: SELECT Colaborador.IdColaborador, Colaborador.Numero, Colaborador.Nome, Colaborador.[Centro de Custo], Colaborador.Usuario, Colaborador.Responsavel, Colaborador_1.Nome FROM…
-
2
votes0
answers877
viewsQ: Create login page for Hotel to access the WIFI
The hotels usually share WIFI, but it is necessary to enter an authentication page, I needed to do the same but I have a question, that page is allocated in the Router? Thank you
-
1
votes1
answer33
viewsQ: Update Annotations
I need to update the map’s Annotations after inserting values into Coredata. i have the first view with the map, and a second where I add the new values for new Annotations, but only when I first…
-
1
votes1
answer36
viewsA: Get values from fields of a Nsarray with Coredata content
I’ve got it figured out for whoever needs it here: if results.count > 0 { for result in results { if let r = result as? Radar{ //now you can access the properties of Radar in r println(r.descr) }…
-
0
votes1
answer36
views -
1
votes0
answers157
viewsQ: How to get and send to a php file a combobox selection
I need to know how to reach the selected value on combobox when you press the commit button and how to call that value in the new file .php: I know there are similar examples already here, but note…