Search results for query: *

  1. S

    Resolved Textbox format backspace

    It work like this If Not (Char.IsDigit(e.KeyChar) Or e.KeyChar = "-") And Not Char.IsControl(e.KeyChar) Then e.Handled = True End If If Char.IsControl(e.KeyChar) Then Else If Txt_number.TextLength = 2 Then Txt_number.Text =...
  2. S

    Resolved Textbox format backspace

    Hi How can I make this work in KeyPress when I use backspace I can not remove minus sign and fyrst 2 number = 01- If Not (Char.IsDigit(e.KeyChar) Or e.KeyChar = "-") And Not Char.IsControl(e.KeyChar) Then e.Handled = True End If If Txt_number.TextLength = 2...
  3. S

    Resolved SQLITE Database and calculate

    Finish to find it out = /100 Dim Result As Double = Convert.ToDouble(Price_show) * Convert.ToDouble(Percentage_show /100)
  4. S

    Resolved SQLITE Database and calculate

    Hi I have little problem with this I am try to get 8.960 Percentage = NUMERIC / 4,48 Price = NUMERIC / 200.000 out = 8.960 I get 896 if I change Price to 200000 I get 896.000 if I change price to 2000 I get 8.960 Dim Price_keep As Double Dim Price_read As Double =...
  5. S

    Format number

    Hi Is anyone here who can help me with this thanks How can I format this number in vb.net from Database = 1482000 Need format like this = 148.200.000 from Database = 28400,0 Need format like this = 28.400.000 from Database = 34500 Need format like this = 34.500.000 from Database =...
  6. S

    Sqlite query

    Date format in sqlite is 2021-04-15
  7. S

    Sqlite query

    Hi I am try to change from Microsoft access mdb to sqlite This is my query to day with mdb database anyone here who can help me so I can use this with sqlite Dim queryString As String = "TRANSFORM Sum(databasere.total) AS SumOftotal SELECT databasere.Textkey, Sum(databasere.total) AS...
  8. S

    google QR code missing rest of the URL

    Hi I am try to use Google QR code with Autocad when I send URL to Google I don't get it all back when I send = http://www.vbdotnetforums.com/newthread.php?do=newthread&f=18 I get back in QR Code Image = http://www.vbdotnetforums.com/newthread can someone help me with this Please...
  9. S

    Need help to Count from Mysql Please

    Hi hope someone can help me with this Please I have Mysql Database and need to get Report Field Company town Contractor I am count from the Mysql Database to day like this Dim rs As New ADODB.Recordset() rs = New ADODB.Recordset() Dim dtStart As String =...
  10. S

    checkbox into Subitem in Listview,Just want to share this

    Hi Just want to share this I fount this on my search on Google how to put checkbox into Subitem in Listview Putting Checkboxes in any cell in listview - Visual Basic .NET insights Regards Sigster
  11. S

    problem Format Date in Textbox from Mysql database

    Hi It works fine if I use DateTimePiCker but not if I am try to use textbox
  12. S

    problem Format Date in Textbox from Mysql database

    Hi hope someone can help me with this Please I am using VB.NET and MySql What I have been try is write Date and read Date to and from the database I having problem formatting Date to the Textbox This is how I read from the database and I can not format the date nothing happend I get =...
Back
Top