Posts by Leonardo Joksan • 363 points
15 posts
-
-2
votes1
answer51
viewsQ: Continue searching in Mysql after given ID
Good night, I would like to know how to continue a search in Mysql, through PHP ($mysqli->query()), example I performed a search and found a user ID 1584, and I want to search another, but…
-
2
votes2
answers155
viewsA: How to get only one information from this table? VB.NET
Maybe it’s something like: Dim TDUM As String Dim TDDOIS As String Dim TDTRES As String Dim TDQUATRO As String Dim count As Integer = 0 Dim substrings() As String = Regex.Split(codigo.text,…
-
2
votes1
answer504
viewsA: using Mysqli within CLASS
Failed to declare variable $connect global within the function, thus: function test(){ global $connect; $search = $connect->_query("SELECT value FROM tab2 WHERE type='".$type."'"); $search =…
-
0
votes1
answer504
viewsQ: using Mysqli within CLASS
Hello, I’m in trouble, I have some queries to do, I wanted to leave within class, I’m making the following code: <?php class MySQL { private $user; private $password; private $database; private…
-
0
votes1
answer23
viewsQ: manage Multiple windowsForm Splitcontainer
I have multiple windowsforms inside a Splitcontainer, one of them, owned a Listbox. That is, outside the Splitcontainer, in Form1, has button, when you click on it, I want to add a text in the…
-
2
votes1
answer388
viewsQ: Windows Form within Windows Form
Besides using Splitcontainer, is there any other way to put a Form inside another form, using HTML’s iframe style? Because Splitcontainer I am not able to change the Form data inside it.
-
0
votes1
answer109
viewsQ: Listbox form splitcontainer how to add items?
How can I add items to a Listbox within a form, and the form within a Splitcontainer. Button(Load Listbox) [home.Vb (Windowsform)]: Dim naveg As New frmListBox naveg.TopLevel = False…
vb.netasked Leonardo Joksan 363 -
2
votes2
answers235
viewsA: Jquery does not direct to another page
In this case jQuery is not necessary. The solution is simple javascript. Here are two options: Option 1: window.location.href = "http://answall.com"; // ou uma variante com o mesmo efeito…
jqueryanswered Leonardo Joksan 363 -
7
votes2
answers1125
viewsA: How to round to the nearest ten in PHP?
Would you like to leave numbers from 0 always at tens? If yes, see if it helps this example: $num = 11; $num = ceil($num / 10) * 10;
phpanswered Leonardo Joksan 363 -
1
votes4
answers1698
viewsA: Retrieve checkbox values in an array
You must put Checkbox name with [] Example: <input type='checkbox' name='op[]'> and to get the data, already created the array, you just give implode(',', $_POST['op']); If you want to know…
-
3
votes1
answer1361
viewsQ: Program memory cleaning in use
My application is accumulating memory, only thing it does, that’s the bottom. After 10-15 minutes, it comes to consume more than 1.5GB of memory, and continues consumption non-stop. Run a Timer…
-
1
votes1
answer731
viewsQ: How do you turn off a key in a full form?
How can I disable key TAB or ALT program? Example: clicking TAB does not make any changes. It is possible in the KeyDown?
-
0
votes0
answers158
viewsQ: Is it possible to select input file[file] Webbrowser VB.NET?
I am making an application where it will be necessary to select an image. so it will be automatic, and then it will publish. it is possible somehow to select this image, or even to upload, apply in…
-
1
votes1
answer238
viewsQ: Is it possible to change CSS in Webbrowser VB.NET?
Hello, all good folks? my next question... I want to disable all background-image so... wanted to take the html of the whole page and put nothing in the tag "background-image" always leave empty. in…
-
5
votes1
answer543
viewsQ: Facebook login php Auth returning dialog/oauth? client_id in url
I’m making my application to login on Facebook, but it returns with GET on the url ?code=etc... Before it was working normally, I use via class from Facebook. See: $facebook = new Facebook(array(…