Search results

  1. F

    Hi! Need to count long words in LIX

    Hi! Im doing LIX now. And need to count words longer than 6 letters. Can anyone help me? Is there something with instr i dont understand? Hi! Im doing LIX now. And need to count words longer than 6 letters. Can anyone help me? Is there something with instr i dont understand? Im sorry...
  2. F

    Help with indent vba code :)

    Hi again:) Ive been strugling to make this through but i miss out the indents.... Can someone plz help me out correcting ? Thanks Option Compare Database Option Explicit Private lengde As Integer Private Sub comBeregn_Click() Dim strsql As String Dim stdset As DAO.Recordset Dim...
  3. F

    Need help with INSERT INTO

    Hi again! I need to insert planks from planks table into planksOK table. They are only allowed to be 200cm, so if they are over they need to be cut.(300 cm = 200 + 100 and so on). Remaining length will be placed in own columns in planksOK. I have managed to insert 200cm and below. So if...
  4. F

    Need help with converting!

    Hi! I need help regards to converting some measurements. From centimeter to meter and so on. I tried a bit myself, but i havent been able to break the code!:confused: Option Compare Database Option Explicit Private Sub comCalculate_Click() Dim stdset As dao.Recordset Dim strsql As...
  5. F

    Code layout?

    Hi! Can someone tell me if the layout of this code is ok? Option Compare Database Option Explicit Private M As Double Dim i As Double Dim v1 As Double, v2 As Double, v As Double Dim op As String Private Sub Com0_Click() txtDisplay = txtDisplay & "0" End Sub Private Sub...
  6. F

    Adding a new field?

    Hi! How do i add a second field in my table? See my picture. Access 2016.
  7. F

    Extract text from <example>TEXT</example>

    Hi! I need help with some code. Im making a medical record and need to extract what`s between <example>TEXT</example> and put it in text boxes. Option Compare Database Option Explicit Private Sub txtJournal_AfterUpdate() Dim i As String Dim txtJournal As String For i = 1 To Len(txtJournal)...
Back
Top Bottom