Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Events

Events

Scheduled Pinned Locked Moved C#
question
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    nunom_c
    wrote on last edited by
    #1

    Hello. How can I fire up a button event without pressing the button? Thank you

    A V 2 Replies Last reply
    0
    • N nunom_c

      Hello. How can I fire up a button event without pressing the button? Thank you

      A Offline
      A Offline
      albCode
      wrote on last edited by
      #2

      private void button1_Click(object sender, System.EventArgs e) { //Do some code } private void timer1_Tick(object sender, System.EventArgs e) { this.button1_Click(this,e); } ur code which is written in click event of button should execute in everey seconds,minutes,hours,... by timer whithout clicking button but first set property to true of timer in design view or in form1_load example : timer1.enabled=true; hope helps

      1 Reply Last reply
      0
      • N nunom_c

        Hello. How can I fire up a button event without pressing the button? Thank you

        V Offline
        V Offline
        VPMahank
        wrote on last edited by
        #3

        You can event try calling button1.PerformClick() method. Thanks, VPMahank.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups