Posts by SCOFIELD • 464 points
16 posts
-
-1
votes2
answers307
viewsA: Localstorage doesn’t keep names with accents?
It seems to be the encoding of your file. In the <head> of your index.html add this line: <meta charset="utf-8"/>
-
0
votes1
answer83
viewsQ: Problem when updating Scope
Guys, I’m having trouble with the $Cope. It happens as follows; I have a var in Scope and when updating it by inserting more lines, the view continues at the same height, thus not allowing scrolling…
-
1
votes1
answer327
viewsQ: Pick up angular-file-upload return
I’m using the angular file upload, it works very well, but I need the return that the server makes available to me. I am using the following code: $scope.uploader = new FileUploader({ url:…
-
3
votes0
answers147
viewsQ: Ionic ng-repeat problem with vertical scroll
I’m making a list of cards with ng-repeat on Ionic, the problem is that it clicks the scroll vertical after a certain point (hangs as if there is no more content). This only happens on Android,…
-
1
votes1
answer384
viewsQ: Phpmyadmin Import file size
I’m having trouble importing a 600mb . sql file. My PHP is already authorized to receive files of this size: memory_limit =1000M post_max_size = 1000M upload_max_filesize = 1000M max_execution_time…
-
0
votes1
answer376
viewsQ: Problem when building the project on Android
I’m trying to build on a project made in Ionic for android, but it turns me the following error: cordova build android Running command: "C:\Program Files\nodejs\node.exe"…
-
2
votes2
answers255
viewsQ: Materializecss is not responsive
A few days ago I made a template in materializecss; today I stopped the phone and realized that it is not getting responsive. I’ll leave some prints to clarify: Responsive (only when browser…
-
2
votes3
answers742
viewsA: How to check if a value is present within an array?
As friends said, it is not necessary all this. But if still you want to check in string, you can use the strpos $pos = strpos($checkString, $idofdb); if($pos == false) { echo 'Não tem cadastrado';…
-
11
votes1
answer147
viewsQ: Make unhook after hookado
To make a hook I know, I do it as follows (Fictitious variables): MSGBOX:=GetProcAddress(GetModuleHandle('kernel32.dll'),'MessageBox');…
-
2
votes3
answers2790
viewsA: Convert Pointer to string
After searching a little more, I discovered that I must first transform it into Integer ( Integer(Pointer) and then convert it into string ( Inttostr( Int ) ) Code would look like this:…
-
0
votes3
answers2790
viewsQ: Convert Pointer to string
Hello, I would like to know how to convert from Pointer to string, because when I try to use Pointer in a Messageboxa for example, it makes me the following error: I’m trying to get the message out…
-
1
votes3
answers8198
views -
1
votes0
answers187
viewsQ: Getprocaddress in external processes
I wonder if there is any alternative to GetProcAddress to be used in external processes? Something like: GetProcAddress(handle,GetModuleHandle('user32.dll'),PChar('MessageBox')); Does anyone know?…
-
1
votes2
answers52
viewsA: Problem adding photo to database, what to do?
Note that in the Query mysqlImg is like a string, not the variable itself. I think that’s it.
-
8
votes3
answers122074
viewsA: Place text next to image
See if that’s what you want: <table> <tr> <td><img width="300" height="150" src='http://i.stack.imgur.com/dioLI.png'/></td> <td> Lorem ipsum dolor sit amet,…
-
0
votes3
answers1771
viewsA: How to confirm that the page has left?
The best solution for this is to check the last connection of the user, for this you would have to store the date when he did something on the site and so check if he is x seconds/minutes/hours…