Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: sal21
  • Order by date
  1. sal21

    Based the link above how to simulate click event

    wow... found this code: Sub TEST_CLICK() Dim HTMLDoc As HTMLDocument Dim oBrowser As InternetExplorer Dim oHTML_Element As IHTMLElement Dim sURL As String On Error GoTo Err_Clear sURL = "https://www.oklotto.it/ambi-frequenti.php" Set oBrowser = New...
  2. sal21

    Based the link above how to simulate click event

    ok strongm, can you create a code to use IE. Tks as usual. But before to click on "aggiorna" i need to set one item from dropdown "year", actually is 2025, but i need to set more...
  3. sal21

    Based the link above how to simulate click event

    https://www.oklotto.it/ambi-frequenti.php Possibile to simulate the click event on Aggiorna but set bifore the year 2024? Please without IE object. Naturally in VB 6.0
  4. sal21

    NOT FOR ME, get value from table web

    do not consider tyhe first question... Thi is the new problem. Get value from table cell My test cdoe Sub Getvalue() Dim htm As HTMLDocument Set htm = New HTMLDocument Dim CLS As Object Dim lRow As Long With CreateObject("msxml2.xmlhttp") .Open "GET"...
  5. sal21

    NOT FOR ME, get value from table web

    https://www.lottologia.com/lotto/previsioni-gruppi-omogenei/ Based this lin, how to get numeric value from each table, for: Bari Bari Milano Firenze Torino Note: the number of table is dinamic my test code: Option Explicit Private Sub Command1_Click() Dim objHtml As MSHTML.HTMLDocument...
  6. sal21

    please suggest me internet scurity antivirus

    please suggest me internet scurity antivirus, similare AVG inetrnet security. Tks Narturally free and with no expiration date
  7. sal21

    get value from html page

    tks bro work great. only a tips... I have goggoling to find a func for MSXML2.XMLHTTP, similar when i use IE object to be sure the page is really charged Do While .Busy: DoEvents: Loop Do While .readystate <> 4: DoEvents: Loop i have tested one with: Set html = New HTMLDocument With...
  8. sal21

    get value from html page

    sorry strongm yes in particular position
  9. sal21

    get value from html page

    strongm the value in web page is dinamic. When i post the vale is 7075 to day is 7076 Sorry
  10. sal21

    get value from html page

    i just using : ... Set HTML = New HTMLDocument With CreateObject("MSXML2.XMLHTTP") .Open "GET", "https://massimilianobenvenuti.it/i-numeri-piu-frequenti-nelle-10-ruote-del-lotto/", False .send HTML.body.innerHTML = .responseText End With ... i need to get the...
  11. sal21

    scraping table dont work

    cell.Rows(1).Cells(2).innerText Yes but have error . I think Cell. Not Is the correct object
  12. sal21

    scraping table dont work

    POSSIBLE to use the sintyax: cell.Rows(1).Cells(2).innerText to get each value from cells?
  13. sal21

    scraping table dont work

    Private Sub FILL_TABELLA_ANNI() Dim ODOM As HTMLDocument Set ODOM = CreateObject("htmlFile") Dim X As Long Dim ANNO As String, POPZ As String, PERC As String With CreateObject("MSXML2.XMLHTTP") .Open "GET", "https://massimilianobenvenuti.it/archivio-storico-estrazioni-del-lotto-new"...
  14. sal21

    CREATE msflexgrid as in xlsx file

    FOR strongm. im sorry but new city named NAZIONALE in Sub Example arySource = Split("BARI,CAGLIARI,FIRENZE,GENOVA,MILANO,NAPOLI,PALERMO,ROMA,TORINO,VENZIA,NAZIONALE", ",")
  15. sal21

    WHY the sort dont work in msflexgrid

    my code, CN = Me.LNR.Caption is refred from a label in red is the number of filled rows. On second clik on GIORNO have a blank rows! Note: i have a hide column 10 where numeric value, filled with: .TextMatrix(R, 10) = Format(STRDBROW(1, K), "yyyymmddhhnnss") is the formatted dta GIORNO...
  16. sal21

    SORT DATE in msflexgrid not correct

    Instead to set .col=nn I have set .colsel=nn Thats Is all.
  17. sal21

    SORT DATE in msflexgrid not correct

    RESOLVED MY SELF! Tks
  18. sal21

    SORT DATE in msflexgrid not correct

    Private Sub MSFlexGrid1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) 'https://www.tek-tips.com/viewthread.cfm?qid=1819041&action=updated '1-flexSortGenericAscending '2-flexSortGenericDescending '3-flexSortNumericAscending '4-flexSortNumericDescending...
  19. sal21

    CREATE msflexgrid as in xlsx file

    TK strongm, as usual!
  20. sal21

    CREATE msflexgrid as in xlsx file

    for strongm. my test code: Private Sub UNIONE_CELLE() 'flexAlignLeftTop 0 The column content is aligned left, top. 'flexAlignLeftCenter 1 Default for strings. The column content is aligned left, center. 'flexAlignLeftBottom 2 The column content is aligned left, bottom. 'flexAlignCenterTop 3...

Part and Inventory Search

Back
Top