Posts by SaPires • 175 points
15 posts
-
9
votes2
answers307
viewsQ: Change color of the scenery with button
I am creating a scenario with Parallax and wanted to simulate color change in the mountains, for that, the color will be chosen by the user. I have 3 buttons for the effect. My problem is I don’t…
-
1
votes1
answer330
viewsA: Connection to localhost does not work webview Android
I was able to figure out the solution, when using webview for localhost you have to use the port, even if in the browser you DO NOT need the webview always need, that is to say the address is like…
-
1
votes1
answer330
viewsQ: Connection to localhost does not work webview Android
If I try to access the server’s localhost directly through Chrome I can log in but through an application the page is empty, follow the code: public class WebActivity extends Activity { private…
-
2
votes2
answers615
viewsQ: Split in VBA does not work
I have the following code snippet: CorpID = rsSQL.Fields("Name") Tmp14 = Split(CorpID, , 1) Tmp15 = Join(Tmp14) Me.nomeUsuario.Caption = Tmp15 Where I want to find only the first name of the person,…
-
2
votes1
answer85
viewsA: Visual error in Visual Studio / VS2010 Projects in 2013
Thanks for all the answers, but I’ve already solved it, if anyone has the same problem here it goes: Install Windows 7 or 8 (8.1 does not have this option), in the display settings go to DPI and…
-
1
votes1
answer85
viewsQ: Visual error in Visual Studio / VS2010 Projects in 2013
I have windows installed on a mac with boot camp and appears to me the visual studio 2010 like this: I’ve tried changing screen reset, font size, board updates,... Nothing solved. I already…
-
2
votes1
answer702
viewsA: VBA DELETE command does not work
I figured out how to do, Set dbs = CurrentDb dbs.Execute "DELETE * FROM TMP WHERE diaMes = " & _ Format(tmp7, "\#mm\/dd\/yyyy\#")
-
1
votes1
answer702
viewsQ: VBA DELETE command does not work
I have a project that adds and eliminates dates, to add I have the following code: Set dbs = CurrentDb dbs.Execute " INSERT INTO TMP " _ & "(diaMes) VALUES( " _ & "'" & tmp7 & "') "…
-
1
votes1
answer767
viewsA: Grab image from gallery and save to a certain folder
Use the file manager, find the folder where the photos are stored in Tlm and then just cut (or copy) and paste to the destination, if you want it permanently enters the camera settings and has an…
-
0
votes4
answers1387
viewsA: How do I know if it’s a tablet or a smartphone?
Hello, I think Voce should even choose to "filter" by screen size and not by being a tablet or smartphone, IE, if the screen is large even if it is not a tablet will be fine... Look here, it should…
-
0
votes1
answer421
viewsQ: Context error in Fragment
have a problem, I found a tutorial to create a Listview but is implemented with extends Activity and I’m with extend Fragment and so I have an error in the place marked with an arrow: package…
-
0
votes1
answer421
viewsQ: ERROR findViewById Listview Fragment
Hello, I have a problem that I can not solve, I created a list view but when "calling" in Java (has an arrow below) results in error when testing the application, this is the error: 08-04…
-
0
votes1
answer184
viewsQ: Call Button does not work
Hello, after trying all the tutorials and some more I decided I can’t even solve the problem, I want to create a button that redirects to a call to a certain number happens is that the button does…
-
0
votes1
answer819
viewsQ: Add bookmark on map ANDROID
Good night, I have an application with a map in a Swipe tab, but I want the map to mark a point on the map and start at that point. thanks in advance. Together send the JAVA: public class Mapa…
-
1
votes1
answer228
viewsQ: Swipe to the right after left gives ANDROID error
I am creating an application on Android in Eclipse with 3 screen with Swipe horizontal, in the last tab I have a Map Fragment. But it turns out that when doing Swipe to the right the first time…