Posts by Guilherme HS • 326 points
15 posts
-
0
votes0
answers181
viewsQ: Logging in data via URL (GET) or POST method
I wonder if there is any way to pass the login data via URL (GET) type: domain.com/index.php? login_name=teste&login_password=test In the documentation of GLPI I found no information. But if…
glpiasked Guilherme HS 326 -
0
votes0
answers43
viewsQ: jQuery giving "Unexpected token ;" problem in variable assignment
I use this code below to load in the display of a Datatable values according to what the user selects, it is not possible to use the Datatable standard and it needs to be so so that I can request…
-
0
votes1
answer927
viewsQ: Javascript function always returns Undefined
I know there are several similar questions, but none of the solutions presented worked :( I have this function which receives data per parameter: function funcao(valor) { var a; $.getJSON(/* aqui…
-
2
votes1
answer581
viewsQ: How to use HTML files from the Assets folder in a Webview
I know there are several similar questions, but in all of them I have found no method to help me. As it is in Activity: package com.example.guilherme.webviewteste; import…
-
1
votes1
answer1012
viewsQ: How to know which keys are pressed in C# Consoleapp and set events
How can I "read" which key is pressed and set an event for such a key if pressed. Example: if you press F1 Sum, F2 subtracts and so on I found this example on the C# help site, but I didn’t…
-
1
votes2
answers2820
viewsQ: How to generate an array using Random to assign values, but make it never repeat values?
I’m working on a Bingo in C# for a facul work and need to make a vector of so many values and make it never repeat this values, I am using the following procedure to generate the values of draw ↓…
-
0
votes2
answers2443
viewsA: What do I need to program in C#?
To lower the Microsoft Visual Studio 2015 (no piracy, straight from the Microsoft website) To study the language have these links ↓ All are great, enjoy it!! PAID | Devmedia Basic of C# Design…
-
0
votes1
answer150
viewsQ: Use of External class with error (non-static method)
I created a Class external call Useful to leave some methods that I always use, but is giving error when using them, follows code from Useful: package com.hs.gui.testelayout.util; import…
-
2
votes1
answer13850
viewsQ: Working with Radiobutton and Radiogroup
I’m trying to make a screen where the user would have to choose between the options on <RadioButton and if he chooses the right one counts for the right one and otherwise for the wrong one,…
-
2
votes3
answers10546
viewsQ: Working with Navigation Bar (smartphone native) and Action Bar BACK buttons (added via Java)
I am Asking this question/answer to help those who may have/have/have some doubt regarding the buttons BACK that are extremely useful in our applications. I will use 1 and 2 to differentiate Action…
-
8
votes3
answers10546
viewsA: Working with Navigation Bar (smartphone native) and Action Bar BACK buttons (added via Java)
1. Back - Action Bar Within the method onCreate(){ add the following lines: getSupportActionBar().setDisplayHomeAsUpEnabled(true); //Mostrar o botão getSupportActionBar().setHomeButtonEnabled(true);…
-
3
votes1
answer494
viewsA: What is the purpose of each component of an Android project?
app = The whole context of your application. manifests = Your app’s core guidelines (here you’ll make global settings and the like). res = Folder that contains layout, drawable and much more.…
androidanswered Guilherme HS 326 -
0
votes3
answers3605
viewsQ: Problems with getSupportActionBar() to Home (arrow) button and back arrow
I’m having trouble giving the action to the home button, I’m managing to implement without problems the button according to the code getSupportActionBar().setDisplayHomeAsUpEnabled(true);…
-
0
votes2
answers439
viewsA: Why Delphi/pascal builders cannot be private like in C++
To be honest with you Delphi does have Private methods for a Builder yes, when a language is said to be Oriented it must follow the basis of the pillars of the POO (Encapsulation, Abstraction,…
-
2
votes2
answers190
viewsQ: How could I get an image inside a <Scroolview to stay fixed and all the content "scroll" through the "bottom" of the image?
Hello, I wonder how I could do to keep a picture fixed and the information rolls underneath it, with all this inside a Scrollview, follows layout print and XML Code: <ScrollView…