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 derfloh 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 Biocide

  1. Biocide

    Access database Save/update question

    There is no problem reading the data to my textboxes. The problem is writing the data to the database?
  2. Biocide

    Access database Save/update question

    I have tried this on a button (From a book) Try OleDbDataAdapter1.Update(DsInställningar1) Catch ex As Exception MsgBox(ex.ToString) End Try I dont get any errors it just dont save anything to the database
  3. Biocide

    Access database Save/update question

    Hi I have a database in Access and Forms showing data from the database. Now when someone changes the data in a textbox and hits my update button I want it to save the new data to the DB. I can’t get it to work, can someone please explain to me how to do it. I would really appreciate Commented...
  4. Biocide

    Sort Values of 3 labels

    Yes off course. I didn’t mean to be rude. Thanks both off you. I must say i admire all on this forum that give solutions to all complicated questions, but most of all i admire those that give solutions to all newbie questions like mine in this topic. Keep up the good work!!!
  5. Biocide

    How to stop the app

    Thank you for youre answers it helped
  6. Biocide

    How to stop the app

    I want to stop the application if i have an error Like this: On a button If textbox1 > 1 then X = 1 Else Msgbox ("bla") So if textbox isnt bigger than 1 the Msgbox shows and next part of my code starts. But i want it to stop (not close the form) and start again when the user hits the button...
  7. Biocide

    Sort Values of 3 labels

    Thanks Vladk
  8. Biocide

    Sort Values of 3 labels

    Thanks for all replies Vladk I would realy apreciate if you comented youre exampel, if you have time. And yes its damn cold in sweden, im dreaming of Florida. If Sweden <= Cold Then Go to Florida end if
  9. Biocide

    Sort Values of 3 labels

    Hello everybody! I have 3 labels with 3 different values, Lets say: Labelone.text = 23.1234 Labeltwo.text = 22.1212 Labeltree.text = 24.1234 Now i Want to check that no one is more than +- 0.2000 From another. How? Do i add them all in to a table and sort them? In that case how do i do that...
  10. Biocide

    strange fenomenon

    Can someone explain this? if textbox M0F1 is 1,2 and textbox M1F1 is 2,2 ill get my msgbox that it is max? 2,2 - 1,2 = 1 not bigger than 1!! if i change the numbers to 2,1 - 1,1 its ok and 2,3 - 1,3 is ok!! Private Sub CommandButton1_Click() 'Kontrolera att användaren har matat in värden i...
  11. Biocide

    Change user input text

    I did it like this: M0F1 = Replace(M0F1, ".", ",") M1F1 = Replace(M1F1, ".", ",") M2F1 = Replace(M2F1, ".", ",") But do i have to doit once for every textbox?
  12. Biocide

    Change user input text

    Hi Im making a program that calculates different numbers. These numbers is user inputs so the user can type in both e.x: 1,1 or 1.1 that will be calculated different. How can i tell the program that 1.1 is the same as 1,1? /Biocide

Part and Inventory Search

Back
Top