Posts by LeandroSJRP • 175 points
9 posts
-
1
votes1
answer133
viewsQ: C# How to get the duration of an MP3 that is in an HTTP address
I need to get the MP3 duration information that is on an HTTP server using the C language#. I tried Taglib# and Naudio, without success.
-
1
votes1
answer235
viewsQ: Regex to capture text block
I need to extract blocks of text that are inside #Regions: #region VARIAVEIS GLOBAIS string aux1 = "teste"; string aux2 = "teste2"; ... #endregion The return would be: string aux1 = "teste"; string…
-
1
votes1
answer212
viewsQ: Change order of running Javascript files
I am developing a project that by clicking the button next to the ASP.NET Webforms application runs a dynamic code (this script is built on each page loading, Dynamic.JS - it is translated from…
-
4
votes1
answer288
viewsQ: C# to Javascript Converter: ((object)Sender). attribute
I’m developing a C# to Javascript converter and I’m in a jam when the code has a line of code like this: ((CONTROLE)sender).Atributo Exemplo:((ImageButton)sender).ImageUrl What is the corresponding…
-
0
votes2
answers316
viewsQ: What is the strategy to identify a right answer, without exact comparison of String?
I have a program in C# that is like a QUESTIONNAIRE, but instead of alternatives there are times when the user should type a response. The answer to the question is stored in a database and at that…
-
2
votes1
answer119
viewsQ: C# Threads How to optimize a SELECT with BLOB
I have an application in C# (.Net 4.5) that when loading a screen among other operations it looks for a background image and sounds in the database. It happens that for some screens loaded this…
-
0
votes1
answer49
viewsA: ASP.NET WEB FORMS Remove a <p> and its contents from a DIV
I’ve already figured out. (OBJETO).Text = Regex.Replace((OBJETO).Text, "<p> </p>", "", RegexOptions.Singleline) ;)
-
0
votes1
answer49
viewsQ: ASP.NET WEB FORMS Remove a <p> and its contents from a DIV
I have several DIVS that contain a < p >  ;< /p >. How do I remove this paragraph with space in Codebehind? (Without using JS or Jquery)
-
7
votes1
answer1161
viewsQ: C# Winforms - Autocomplete (filter) combobox when typing
I have a Combobox (cmbBairro) with the names of the neighborhoods of my city, which carries the values of a List (_Listneighborhoods). When the user tries to search a neighborhood by typing, he…