Difference in days of two calendar dates using Tkinter tkcalendar DateEntry

Поділитися
Вставка
  • Опубліковано 16 жов 2024

КОМЕНТАРІ • 8

  • @sportiano3348
    @sportiano3348 Рік тому

    hi bro thanks for thos video and i hope if you can create video to search data between tow dates
    example:
    i want all records in treeview from date 1-11-2022 to date 1-12-2022
    and thanks again for teach us

    • @plus2net1
      @plus2net1  Рік тому +1

      This question is coming up frequently, Some videos are already there and we discussed wile working in that restaurant management.
      I will create simple one with only date column and one field to keep it simple. The core concept works wtih how to prepare the SQL part.
      Anyway we will add that shortly. If you have any specific requirment then post here. To our student table we will add one date column and work on it.

    • @plus2net1
      @plus2net1  Рік тому

      Preparing one query execution plan using Treeview ( to display ), to show more records we have to add scrollbar , so added this tutorial.
      ua-cam.com/video/GELOhWxx2FU/v-deo.html
      Using this Next we will go for managing data between dates ( SQL )

    • @plus2net1
      @plus2net1  Рік тому

      ua-cam.com/video/WO6fp1RUpa4/v-deo.html

    • @MMMEHTA99
      @MMMEHTA99 7 місяців тому

      i also awaiting for this videor ecords in treeview from date 1-11-2022 to date 1-12-2022 @@plus2net1

  • @gregory_the_real
    @gregory_the_real Рік тому

    Hey bro amazing videos.
    I'm trying to make a small piece of software that does the following:
    - Basically that you go from link to link in the browser with a button (like zapping TV channels with the remote control)
    Situation:
    Link 1 - examplelink. com/link1
    Link 2 - examplelink. com/link2
    Link 3 - examplelink. com/link3
    I just need the software to change the link numbers with infinite numbers (obviously it will have to start on a link of my choice, to start on the right number)
    Any code ideas for this?

    • @plus2net1
      @plus2net1  Рік тому

      Read the link from the URL , take out the last number from the URL, Add 1 and create a link , connect the same to button. I can write this in PHP . Can the URL be like this
      exmaplelink.com/page.php?link_id=5
      exmaplelink.com/page.php?link_id=6
      exmaplelink.com/page.php?link_id=7
      then
      $link_id=$_GET['link_id']+1
      url=examplelink.com/page.php?link_id=$link_id

    • @gregory_the_real
      @gregory_the_real Рік тому

      @@plus2net1 I'm trying in visual studio.. but I don't know how to adapt the code!! Looks like I'll have to explore this more!
      Thank you anyway.