Posts by dataol • 1,093 points
4 posts
-
0
votes2
answers3382
viewsA: Receiving error: "Your login SYSDBA is same as one of the SQL role name" while trying to access base with Ibexpert
This application solves the problem easily: http://arquivos.fernandobhz.com.br/SYSDBAOut.zip Source: http://www.fernandobhz.com.br/artigos/sysdba-out.html…
-
5
votes2
answers365
viewsQ: How to view a Youtube video in a Panel in Extjs?
Would you like to display a Youtube video in a Panel on Extjs. Would it be possible? Can someone give me a hint?
-
13
votes2
answers32948
viewsQ: How to send SMS for free using PHP?
I wonder if there is any way to send SMS for free to mobile phones in Brazil. I have seen some PHP systems with this function, and I would like to have this function on my system as well.
-
75
votes8
answers49747
viewsA: How do I remove accents in a string?
You can use this function: public static string RemoveAccents(this string text){ StringBuilder sbReturn = new StringBuilder(); var arrayText = text.Normalize(NormalizationForm.FormD).ToCharArray();…