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 Rhinorhino 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
  • Content: Threads
  • Order by date
  1. sal21

    msflexgrid with rectangle on entire row

    strongm, a few time ago, you post a code to create on click event on listview a regtangle with a thin border.... possible with a msflex grid on click event for entire row from > to? Tks
  2. sal21

    THIS is new for me

    during this code retrive an alert message , see image: Private Sub TEST_OK() Dim I As Long, TEXT As String, REQ As Object, DOC As Object, TABL As Object, TR As Object, LINK As Object, URL As String Dim N As Integer Set REQ = CreateObject("Msxml2.XMLHTTP") Set DOC =...
  3. sal21

    printing picturebox to the default printer

    i can have a series of picturebox on a form. how to print to the default printer, maintain the actually position. naturally only a picturebox witht the name named pic1,pic2,picxx MY TEST CODE: Private Sub PRINT_PICTUREBOX() Dim myitem As Control For Each myitem In Me.Controls...
  4. sal21

    delete ll picturebox in a form

    how to delete all picturrebox in a form with the name PIC1, PIC2, PIC3, PICnn note: the pictureboxes are over an image controll
  5. sal21

    copy and paste picture box

    ho to copy and paste picture1 from one postion into new postion but rename it in pictutre2
  6. 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
  7. 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...
  8. 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
  9. 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...
  10. 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"...
  11. 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...
  12. 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...
  13. sal21

    CREATE msflexgrid as in xlsx file

    Normally i use to create a msflexgrid: Me.MSFlexGrid1.FormatString = "<STRADA|^PR|<COMUNE-LOCALITA'|^CAP|^LAT|^LNG|<STRADA" now i need to create a msflexgrid with a union of 5 columns from the second col... Possible? note: the merged cell have lenght 1000 and the 5 coluimn have lenght 200...
  14. sal21

    DOWNLOAD story of extraction of LOTTO

    Based this link: https://www.lottologia.com/lotto/archivio-estrazioni/ i need to download all story of extraction LOTTO. From 1871 to 2025 I see possible to have each year based the butto .TXT
  15. sal21

    for strongm site down?

    dubt.... https://batch.openaddresses.io/ is thi site down? I dont find anithing based it/.... (it/countrywide) Tks
  16. sal21

    via vb 6.0, please split access table

    In table STRADE, have a field named REG. With: CAMP CAMP CAMP PIEM TOSC TOSC .... VENE VENE VENE VENE Now i need to devide the table STRADE in a single table based REG with all data refered REG Note: Maintain original table i just have a blank table named TEMPLATE with only structure of...
  17. sal21

    set nothing form1

    In a form1 have a treeview, with big numbers of child, children and node. When i exit to the from1, (i'm on test) i use: Private Sub Command1_Click() Set Form1 = Nothing Unload Me End Sub to exit and return to the ide, and have free access to the ide, the opertion , take a vry, very...
  18. sal21

    I can't find the routine to download the image file anymore

    Based this link: https://batch.openaddresses.io/data#map=-0.44/28.2/68.6 i need to download the json file as in iomage
  19. sal21

    READ csv fsrt way...

    I use this code: Option Explicit Public Function QuickRead(FName As String) As Variant Dim I As Long Dim RES As String Dim L As Long Dim V As Variant I = FreeFile L = FileLen(FName) RES = Space(L) Open FName For Binary Access Read As #I Get #I, , RES...
  20. sal21

    loopimg link and downlosd zip file

    based this link: https://www.anncsu.gov.it/it/consultazione-dellarchivio/open-data/Accedi-ai-servizi-di-dowload-massivo-in-Open-data/ how to loop all link, and download the related zip file based indirizzario regione name of regione save the zip file Abruzzo.zip, in c:\mydir\ for example...

Part and Inventory Search

Back
Top