Posts by FábioArsénio • 264 points
21 posts
-
0
votes2
answers530
viewsA: Installation problems for Visual Studio 2015 Community
You have a way of force uninstallation of Visual Studio 2015, I’ll show you how I proceeded a while ago when I had exactly the same problem: C:\vs_ultimate.exe /uninstall /force Run that command on…
visual-studio-2015answered FábioArsénio 264 -
6
votes1
answer113
viewsQ: Problem showing received SMS
Fala galera! I’m trying to show a SMS received in a text box in a Form that I have, but instead of showing me the message that I get in my SIM, it shows something like +CMTI: "ME",33. I’ll leave the…
-
0
votes1
answer571
viewsA: Use java to find an image on the screen
Actually there is a solution well viable for it. You can implement the libraries Sikuli into your app Javato detect and interact with image elements on the screen. This library is designed to…
-
0
votes2
answers99
viewsA: Problems with php Mailer
Try to add this line: $mail->SMTPAuth = true
phpanswered FábioArsénio 264 -
-1
votes2
answers771
viewsA: Securityexception android
Try add android:exported="true" in his manifest file in Activity that you’re trying to run
-
0
votes2
answers1565
viewsA: Login to Postgresql and PHP
I got a little code that does well what you want to do: The best way is undoubtedly to opt for the use of classes to connect to the database, authentication, etc. Everything you want to do. You can…
-
3
votes2
answers4495
viewsA: How to disable a button and to activate it, click on another button?
You have two solutions: 1 - Using the Try / catch , where if an error occurs your program will fall into the catch and then you show a message or something like. 2 - As @Jeterson said in Load of…
-
3
votes1
answer58
viewsA: how to create an Android app that you have to press on the app icon and it calls a single number
First you create the button: ((Button)findViewById(R.id.button1)).setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { String phno="10digits"; Intent i=new…
androidanswered FábioArsénio 264 -
0
votes1
answer113
viewsA: Node.js Conflicts: /sbin/Node vs /usr/bin/Node
To package node-js legacy contains a symlink for the Node-js code, which requires the path for the torque is usr/bin/Node and not usr/bin/nodejs as it is in the Debian. To nay installation of legacy…
-
2
votes1
answer40
viewsA: Database Encoding - German Characters
The stored data is encoded in UTF-8 (ü for an "O" is typical for UTF-8), but is not displayed as UTF-8, but as ISO-8859-1 or similar. Make sure you use the same encoding everywhere: Use mysql_query…
-
0
votes1
answer75
viewsA: Problem replacing accented characters
You can use the incov to do so: preg_replace('/[^a-z]/i', '', iconv("UTF-8", "US-ASCII//TRANSLIT", $string)) If I understand your problem correctly, this must be the resolution.…
-
1
votes2
answers519
viewsA: What is the best place to store the connection string?
You can store your Connection strings in his app config. , taking into account that this involves security risks, I advise to read the following article, which helps us to have a good practice:…
-
2
votes1
answer1208
viewsA: Validate PHP login
Try that one form: $login = mysql_query("SELECT Nome, Password FROM tb_utilizador WHERE Nome ='$Nome' AND Password = '$Password'"); $res = mysql_fetch_row($login); if($res) {…
-
1
votes1
answer1526
viewsA: Data does not appear in phpMyAdmin
First problem I detected: The parameters of your mysql_connect are not correct. You have: $conn = mysql_connect($servidor,$user,$pass,$banco); Though you already find deprecated the function…
-
0
votes1
answer393
viewsA: PHP webservice connection occurring Curl ERROR: 35
You can try changing the Settings of Curl SSL for version 3: curl_setopt($ch, CURLOPT_SSLVERSION,3);
-
0
votes1
answer41
viewsA: Saving data when selecting option
Theoretically, this could be an option viable , but think of it this way: And if the user clicks on the wrong Radiobutton? It will always store in the database the option that was clicked, being the…
-
3
votes1
answer40
viewsA: I have a file (not txt) and want to open this file without the need of the user to click
If you want to open the link in a new tab, although you are a beginner, you can choose to Javascript , follows a practical example: function OpenInNewTab(url) { var win = window.open(url, '_blank');…
javascriptanswered FábioArsénio 264 -
-1
votes1
answer84
viewsA: create intro page on multilingual website
I think this video may be a possible helping for your problem: http://www.shape5.com/documentation/Joomla/Getting-Started/How-To-Setup-Multilanguage-Support-In-Joomla…
-
0
votes1
answer27
viewsA: update blank column with mysql php
The best way to update a blank column is to allow null values (NULL VALUES). Another way may also be to update with a Empty string Update TableName Set ColumnName='' where [Condtion]…
-
1
votes1
answer182
viewsA: How to copy multiple excel files in an access 2010 database using vba
That one maybe is a possible solution, using ACE.OLEDB: Sub Test() accessFilePath = "C:\someDB.accdb" Call ExecuteSQLCmd("INSERT INTO `" & accessFilePath & "`.`Table` (col1,col2,col3) SELECT…
-
0
votes2
answers157
viewsA: How do I get reply json in php?
$data = file_get_contents('www.meusite.com'); $data = json_decode($date); Try it like this :P