Search results for query: *

  • Users: aksl
  • Content: Threads
  • Order by date
  1. A

    Question How to skip/ignore or bypass empty Text boxes while calculating ?

    i am developing a simple marks grading system using vb.net in visual studio 2013. my code is this. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click If TextBox1.Text >= 0 And TextBox1.Text = 51 And TextBox1.Text = 0 And TextBox2.Text = 51 And TextBox2.Text...
  2. A

    Question countdown timer problem!

    I wrote a code for a countdown timer. It works fine. When i select a date from datetimepicker1,it starts counting.But after closing & re starting my software, datetimepicker1 comes back to date of today(IT MEANS: It doesn't keep the date i choosed first). it causes to count to wrong date. i...
  3. A

    Question countdown timer problem!

    I found the following countdown timer code from another web site. It works pretty good. 1 Dim startdate As DateTime = DateTime.Parse(Date.Now) 2 Dim enddate As DateTime = DateTime.Parse("20104-02-24 18:00") 3 Dim ts As TimeSpan = enddate.Subtract(startdate) 4 Label1.Text =...
  4. A

    Question realtime english to other language transliterate

    I need a vb.net code help as follows. my form has two text boxes named as Textbox1 & Textbox2. no buttons. when i type charactor "ga" in english in text box 1 should be display sinhala charactor "ග" in text box2 (it means same sound in sinhala,it's my language) when i type charactor "kra" in...
Back
Top