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!

Recent content by 2009luca

  1. 2009luca

    put value in input box web page

    Based the site: https://risultatilotto.com/superenalotto/generatore-numeri/ how to put 6 in input box (combinations) to the default have 5 I just use IE Object My test code dont work! Sub InserisciValoreInPaginaWeb() Dim IE As Object Dim HTMLDoc As Object Dim HTMLInput As...
  2. 2009luca

    put value in web dropdown

    This code select an item in dropdown web page. Possibe to update the value of Z in the button? ... Set DropDown = HTML.getElementById("anno") For Each dropOption In DropDown.getElementsByTagName("option") If dropOption.innerText = Z Then DropDown.Value =...
  3. 2009luca

    possible to use xml2 or Set WHTTP = CreateObject("WinHTTP.WinHTTPrequest.5.1"), instead code in message

    for jaejunks... tks for suggestion and for this: https://www.lottobook.it/lotto/quaterne-frequenti-lotto/
  4. 2009luca

    possible to use xml2 or Set WHTTP = CreateObject("WinHTTP.WinHTTPrequest.5.1"), instead code in message

    my test code, dont work i'm not sure when invoche the class name, which is? Sub TpData() Const URL = "https://www.lottobook.it/lotto/ambi-frequenti-lotto/" Dim http As New XMLHTTP60, html As New HTMLDocument, post As Object, i With http .Open "GET", URL, False...
  5. 2009luca

    possible to use xml2 or Set WHTTP = CreateObject("WinHTTP.WinHTTPrequest.5.1"), instead code in message

    Sub AMBI_lottobook() Dim IE As Object Dim HTML As Object Dim MYTABLE As Object Dim AMBO As String, T As Integer, NUMCELLE As Integer Dim R As Long, L As Integer, RUOTA As String Dim C As Long, S As Integer, NUMTAB As Integer Dim FREQ As String Set IE =...
  6. 2009luca

    Based the link above how to simulate click event

    For strongm. Resolved my self for all in last question.! Remain the part to get all values in table cells. From: https://www.oklotto.it/ambi-frequenti.php
  7. 2009luca

    Dubt on Cloud storage

    If i save my access database in a my Cloud, possible to connect it with ADO and Vb 6.0?
  8. 2009luca

    difficult to crteate a query very complicated

    strongm, work perfect... But the user can see the price by date to date, and the related period example: admit have "25/08/2024" to "07/09/2024" price from 25/08/2024 to 31/08/2024 a price for SINGOLA price from 01/09/2024 to 07/09/2024 a price for SINGOLA possible? note: in this case the...
  9. 2009luca

    difficult to crteate a query very complicated

    for strongm You have understand my question! Yes my database is Access For now use only a STRUTTURA=MARE Yes, possible date from for example: myvarfrom=07/06/2024 myvarto=14/11/2024 ...yea, now i see your face:)
  10. 2009luca

    difficult to crteate a query very complicated

    this table contain a price list of room. DAL and AL is the period (from>to) PREZZO is the price Based myvarfrom="05/06/2024 and myvarto="15/06/2024" and myvaroom="SINGOLA" how to calculate the price of the living room note: Naturally myvarfrom and myvarto and myvaroom is dinamic
  11. 2009luca

    checkbox on msflex grid

    Private Sub MSFlexGrid1_Click() Dim I As Integer With MSFlexGrid1 If .Col = 0 Then If .CellPicture = picChecked Then Set .CellPicture = picUnchecked '.TextMatrix(.Row, 34) = "S" Else Set...
  12. 2009luca

    SET FOCUS on treeview node

    My code: Private Sub CONTA_COMUNI() Dim MYNODE As Node Dim NRTOT As Long VALORE = "004017" NRTOT = 0 For Each MYNODE In Me.TreeView1.nodes If MYNODE.children = 0 Then NRTOT = NRTOT + 1 ISTAT = Split(MYNODE, "-")(0)...
  13. 2009luca

    SET focus on node treeview

    possible when i lick on a node to dont set focus the node? actually when i click on node the node is covered with a blue rectangle, i dont love tath... https://files.engineering.com/getfile.aspx?folder=9cc39e69-fce6-4dde-b28f-d988e8205f12&file=Immagine.gif
  14. 2009luca

    i dont view any icon durin node add

    tKS strongm, resolved with a rem on: .Style = tvwTreelinesPlusMinusText
  15. 2009luca

    i dont view any icon durin node add

    part of code when add the frist node: ... With Me.TreeView1 'LockWindowUpdate .hwnd M = 0 .LineStyle = tvwRootLines Set Me.TreeView1.ImageList = Me.ImageList1 .Style = tvwTreelinesPlusMinusText .nodes.Clear Set NOD =...

Part and Inventory Search

Back
Top