Search:

Type: Posts; User: matty95srk

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    1,341

    Re: Filtering html to get results

    Hacking? not even close guys. How can you hack a game just by downloading part of its html? Maybe that's possible but over my skills.
    As I specify, it's just a tool to speed up the research of an...
  2. Replies
    5
    Views
    1,341

    Filtering html to get results

    I'm working on .net6+ winForms.
    I'm trying to filter results by some criteria having a big html. I don't know if what I am trying to ask is achievable, but it costs nothing to ask. I'm playing a...
  3. Replies
    3
    Views
    1,443

    Re: How to parse this huge html?

    Unfortunately i really need that website cause is the fastest updating the scores and it doesn't provide any api..
  4. Replies
    3
    Views
    1,443

    How to parse this huge html?

    HI, I'm trying to parse some values from a web page using http webrequest but the html code is really really weird to me..
    I'm trying to help my self with an old question using html agility pack but...
  5. Youtube Data API v3 - issues with credentials

    I am trying for the first time to use the Youtube Data API v3, precisely the Playlists: insert method that operates in the user's private data, to add a certain video to my personal playlist. To work...
  6. How to add a Video to a specific YouTube Playlist?

    I'm using YouTube Data Api v3 in order to retrieve the first searched video id by typing a title into a textbox. I'm doing it with this code:


    Imports System
    Imports System.Collections.Generic...
  7. Replies
    4
    Views
    1,763

    Re: Import songs from Shazam to Youtube

    It would be easier to me to use Notepad++ but now I'm trying to figure it out how to get the output as title - artist by using a regex.


    Edit: I made it, I had to search with .*"(.*)","(.*)".*...
  8. Replies
    4
    Views
    1,763

    Re: Import songs from Shazam to Youtube

    I'm using https://www.convertcsv.com/csv-viewer-editor.htm and I am now using the field separator Colon - , which is cleaning the things a bit more, but I think I don't relly like how Shazam creates...
  9. Replies
    4
    Views
    1,763

    Import songs from Shazam to Youtube

    Lately I felt the need to import songs from Shazam to Youtube. Few years ago, before apple bought Shazam, was possible to auto-sync it, but now there is no option to do it. I thought it would be...
  10. Specified cast not valid using webbrowser control

    I'm using the Telegram.bot package from nuget and getting the last message as a string from the client. I want then to set it as the attribute of a textbox on a webpage with the control WebBrowser....
  11. Get href of a button through web browser control

    I'm trying to get the href of a button using the control Web Browser. The html is:


    <a download=""...
  12. Replies
    8
    Views
    4,817

    Re: How to use Telegram API to send a message

    I stated I used an online converter to convert c# to vb.net. I don't know c#. I didn't know that was c# console, but now I'm working on winforms.

    Buy the way I'm getting the same error...
  13. Replies
    8
    Views
    4,817

    Re: How to use Telegram API to send a message

    I've removed those two and just used a normal string. I'm getting the error Telegram.Bot.Exceptions.ApiRequestException: 'Not Found'
  14. Replies
    8
    Views
    4,817

    Re: How to use Telegram API to send a message

    No they aren't textboxes. I don't know what they are, I supposed the API should get them from the token ID
  15. Replies
    8
    Views
    4,817

    How to use Telegram API to send a message

    Hello, I'm trying to create a simple telegram bot using its API.
    I'm trying to look online but there are only old c# examples wich aren't still good.
    I've found in the official documentation...
  16. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    I believe you didn't even checked the API I'm using now. Do you think you can show me an example with the code of SO for this API? I would be happy to learn something new then. I don't need to...
  17. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    To me, is enough to represent data in the richtextbox, it works easily and smooth, but still I don't understand the reason of your intervention here about the SO answer since that doesn't solve my...
  18. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    David, what it has to do with this question? That's out of topic, I'm not asking how to parse Json in this question. Was that SO answer about sorting numbers in rtb and set cultureinfo? I don't think...
  19. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    exactly you are right for both assumption.

    About the comma, I'm tryint to set Cultureinfo.Invariantculture when I'm getting the data, like:


    Private Sub OutputAsks(asks As String()())
    ...
  20. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    the first was the answer to Niya question to execute
    Debug.WriteLine(My.Application.Culture.NumberFormat.NumberDecimalSeparator)

    The second, was about the json I'm getting during debug.
  21. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    In mine it prints a decimal comma, is this the reason?




    this is the Json i'm getting

    ...
  22. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    it might be that the cultureinfo changes between dot and commas?
    just guessing
  23. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    Your output is correct, mine no. Look at the first numbers in my ascending list.
  24. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    that's completely a weird behavior Niya O.o ....
    FULL CODE:

    Public Class form1


    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    ...
  25. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    Endeed that the exactly code I'm working on too, but maybe I didn't explain correctly what Is the issue ..
    The json where I'm getting the data,is an Api of a crypto exchange.
    So basically, in the...
  26. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    Hey Niya, I just sow a bug. Look this is the numbers I'm working on( without being sorted)


    0.000012 - 204412500
    0.00001206 - 390500
    0.00001219 - 359600
    0.00001231 - 375000
    0.00001243 -...
  27. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    Hey Niya, thanks it works! Sorry but in the output I don't have blanklines, I don't know why it formatted like this in my question .
    The code just works properly!
    Might I just ask you how to...
  28. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    What it has to do with the question.. ?
  29. Re: [vb.net] Sorting decimal in ascending order in richtextbox

    Hey Paul, unfortunately it gives me the same error


    no blanklines
  30. [vb.net] Sorting decimal in ascending order in richtextbox

    I need to sort in ascending numbers the lines of a richtextbox, which got decimals in the follow format:



    I'm trying to sort the lines to obtain an output like:



    Ive tried
  31. Re: How to convert this Python function to Vb.Net?

    That's perfect it works like a charm!!!

    I'm seriously grateful for the help you gave me, patience, professionality you had with me. Without you I would have been completely lost! it was really a...
  32. Re: How to convert this Python function to Vb.Net?

    That code in there is calculating the exactly md5 and is showing the exactly position of strings, or the APi's won't work.. Hope it helps
  33. Re: How to convert this Python function to Vb.Net?

    Hey Niya,

    for how weird it looks, I can tell you I'm working on a super weird platform that require a weird kind of position or I won't be able to make the api working. .. The platform require a...
  34. Re: How to convert this Python function to Vb.Net?

    Thanks,

    I mean that params_str should stai as it is, instead in your code output it is returning

    ...
  35. Re: How to convert this Python function to Vb.Net?

    Hi Niya,

    First of all I have to say Thanks a Lot because you made a super great job! I don't know if you already knew some python, but to me it was quite impossible to understand how python works...
  36. [RESOLVED] How to convert this Python function to Vb.Net?

    I'm Using an API example that transform a string into a dictionary and then calculate its md5. Unfortunately there is just a python example and I never developer in this language. So far I tried my...
  37. Re: How to parse loop an html with same tags

    Solved with:


    Dim arqHtml As String = "C:\Users\Mattia\Desktop\ready.html"
    Dim myHtml As HtmlAgilityPack.HtmlDocument = New HtmlAgilityPack.HtmlDocument()
    myHtml.Load(arqHtml)
    Dim myTable As...
  38. [RESOLVED] How to parse loop an html with same tags

    Hello,
    I'm trying to parse an html with basically the same tags.
    Html code sample ( I am not posting the full one, but it is following the same pattern of the sample one) is

    <div...
  39. VS 2019 Windows.Media.Ocr scan by column and not by row

    I'm using Windows.Media.Ocr to scan some text, but instead to scan by row it scans by column.
    For example, if I try to scan
    183524

    the ocr output is:


    Instead of:
  40. How to loop parsing values in a table cell with the same class name

    Hi, I'm trying to get values in a table cell with the same class name through control WebView2.

    The table html is:

    <tbody data-v-39c7db2a=""><tr data-v-39c7db2a=""><td data-v-39c7db2a=""...
Results 1 to 40 of 108
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width