Posts by Wladi Veras • 379 points
22 posts
-
0
votes0
answers13
viewsQ: Turn paged div into PDF
I have a DIV where inside it, there are several other div mounting a Card (HTML), and these cards are paginated through Jquery twbsPagination. The idea is, how would I use jsPDF and turn each page…
-
0
votes1
answer31
viewsQ: Jquery Setinterval with incorrect speed when clicking
Well, I basically created a class to filter and read an atlas style spritesheet, it works, but when clicking to change the orientation of the Sprite or even reload the same Prite, the system…
-
-2
votes2
answers601
viewsA: PHP Jquery dynamic autocomplete
exactly as in the answer above, it is as if js would perform this search for the database where you would save the categories predefined by you in the database or some similar system.
-
0
votes1
answer226
viewsQ: Foreach array and create a name for array with same ID
Good idea and create groups of arrays with example names, $arrays = array( array( 'teamID' => '1151', 'username' => 'iLilithZ'), array( 'teamID' => '1111', 'username' => 'iLilithZ'),…
-
0
votes1
answer87
viewsQ: enable full transparency of the png background in the form
Well I have a form c# however I use a render png, which contains some shadows and smoke effects, the only way I found to give transparency was the key, but it does not get totally transparent,…
-
1
votes1
answer28
viewsQ: make an equal ID group
Well, I have a table that returns 5 users, and among these 5 may be equal teamID, example: usuario1 = teamid: 51 usuario2 = teamid: 51 usuario3 = teamid: 55 usuario4 = teamid: 55 usuario5 = teamid:…
-
1
votes1
answer949
viewsQ: pagination with ajax in the Laravel
How could I make an adaptation of my code to make the paging work without updating the page with ajax? My functional paging code is like this: defined route Route::get('/home',…
-
1
votes2
answers1667
viewsQ: get who gave like on video youtube PHP API
Is there any way to receive information from those who gave like in a certain video? example, joão deu like in the video "Playing here", or better yet, there is some way to know how many videos John…
-
1
votes1
answer245
viewsQ: problem reading external NODEJS Json
I have a problem to read an External Json but I can not identify, I have checked the json and it appears correct. that would be Json…
-
1
votes1
answer294
viewsQ: select unique name in mysql table
Well, I have a constant doubt when selecting something in mysql, I have a mysql table that contains a column called Name in it contains the following values |name |Aline |Alice |Aline |Valdemord…
-
0
votes2
answers1081
viewsQ: multiples Timezone php
Well, I have a system where I need to use a timestamp in UTC format, and I use a system to show when the profile was visited on the site, and I update it with a timestamp, but I have a problem, on…
-
0
votes3
answers950
viewsQ: How to use the Discod EMBED bot correctly
How is it possible to format the message the bot sends like this? I can even do it, but I can’t put divisions on the same line, and if possible there’s a way to put background in the division?…
node.jsasked Wladi Veras 379 -
2
votes1
answer17
viewsQ: Make remote json into string
As it is possible to return the value of a remote json and read as string, example when I get the json it prints the whole result as in the image below. code below: var https = require('https'); var…
-
0
votes0
answers74
viewsQ: how to make a php file transparent image
good people and I have the following code <?php $text = "meu texto para add"; $my_img = imagecreate( 200, 80 ); //width & height $background = imagecolorallocate( $my_img, 0, 0, 255 );…
phpasked Wladi Veras 379 -
4
votes1
answer2136
viewsQ: nodejs, get value from a SELECT mysql
Well, I wanted to know, how can I take this result, and turn into variable and be able to use within functions in the script, example take this Name Warrior and use as if it were a variable, like:…
-
2
votes1
answer113
viewsQ: Block scrolling by screens
as that blocks the scrolling of the page by the keys with jquery, up key(38) and down key(40), leaving the scrolling only by the mouse?
-
9
votes1
answer1350
viewsQ: Move the character in the canvas and change image
Well, I would like to know how I could implement a Sprite on my canvas, I am very lay with canvas, the idea is, when pressing arrow -> he runs Sprite 1.png, when pressing arrow <- he runs…
-
1
votes2
answers841
viewsQ: Moving character and map with canvas+js
Well I have a question, I would like to know how I could use the image in normal size, but that I can navigate it with the left and right directional, example, I have a canvas of size 968 wide and…
-
1
votes1
answer477
viewsQ: How to hide process by clicking button
I wonder if it is possible I get the id of a program like in the example and hide it (since it is already open), taking it from the navigation bar (http://i.imgur.com/fiAQ3fJ.png), that is, when…
vb.netasked Wladi Veras 379 -
0
votes1
answer1317
viewsQ: Open external application within form Vb.net
i have a doubt, I wanted to load an external exe(example: c: dark.exe) inside a picture box the size of the same, I tried the code below but it doesn’t work( Obs the form needs to work in the target…
vb.netasked Wladi Veras 379 -
0
votes1
answer324
viewsA: How to place an exe in the Vb.net form
<DllImport("user32.dll")> Public Shared Function SetParent(ByVal hwndChild As IntPtr, ByVal hwndNewParent As IntPtr) As Integer End Function Const WM_NCLBUTTONDOWN As Integer = &HA1 Const…
-
-2
votes1
answer324
viewsQ: How to place an exe in the Vb.net form
Well, I have the code Dim proc As Process proc = Process.Start("notepad.exe") proc.WaitForInputIdle() ' Set the panel control as the application's parent SetParent(proc.MainWindowHandle,…