Search results

  1. cheekybuddha

    Solved Need help with number as text

    Is your form not already bound to table Planning?
  2. cheekybuddha

    Solved Need help with number as text

    Try: dubbel = "Bestelbon = '" & Replace(Me.txtBestelbonNew.Value, "'", "''") & "'"
  3. cheekybuddha

    Solved (.Value) doesn't show textbox Value on Change() event

    I think you just mark the whole thread as Solved (Is there a button at the top of the thread?) I know you have said you are going to use UserForms, but I am attaching the Access version so you can see how simple it is in Access too. (y)
  4. cheekybuddha

    Solved (.Value) doesn't show textbox Value on Change() event

    Make the following changes in your code: Private Sub passwtxt_Change() With Me If Len(Trim$(.passwtxt.Text & vbNullString)) > 0 Then .passwtxt.BackColor = RGB(255, 255, 204) '&H80000005 Else .passwtxt.BackColor = RGB(255, 255, 255) '&HC0FFFF End If...
  5. cheekybuddha

    Solved (.Value) doesn't show textbox Value on Change() event

    Yes, there is. I guess Arnel was using hidden textboxes to demonstrate how it works. (I didn't look at his example) During the Change event the value in the textbox is 'uncommited' and you must use the .Text property to get the contents. The .Text property is only available when the textbox...
  6. cheekybuddha

    Solved Update broke Conditional Formatting?

    What happens if you try using bang syntax? Val([txtCarbsCalc])>TempVars!CarbLimit
  7. cheekybuddha

    Solved Functionality differences between .accdb and .accde

    Have you been auto-correcupted, Ridders? I guess it should read 'twips' ?
  8. cheekybuddha

    Solved Stub method is giving me issues

    Out of curiosity, what is your purpose in populating a dictionary with table data here?
  9. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    You're going a bit off topic here, but I think Daniel's entitled to his opinion.
  10. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    Interesting. Frank talked a lot about using it for the BE, but perhaps he was looking to implement it. Shame UA is no more, he asked a lot of questions about it there.
  11. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    Is it still using a postgres backend?
  12. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    This UI looks familiar. Is that you, Frank?
  13. cheekybuddha

    Data type mismatch in criteria expression for opening a recordset

    As per pbaldy, if LDOW is really a datetime datatype, then try: Set rs = CurrentDb.OpenRecordset("SELECT TOP 1 LDOW FROM qryWeeklyForecast WHERE LDOW=" & Format(Me.LDOW, "\#yyyy\-mm\-dd\#"), dbOpenSnapshot)
  14. cheekybuddha

    Leveraging ChatGPT for Incremental Development in Microsoft Access with John W Colby

    That title was definitely generated by ChatGPT! :ROFLMAO:
  15. cheekybuddha

    Solved Connection String mysterious Trim

    Try again, with the following adjustment: ' ... strStep = "2. Set Target Database" strNewConnectString = "ODBC;Provider=MSDASQL;Driver={SQL Server};Server=IPAddress;DATABASE=dBName;UID=dBSa;PWD=dBPassword;APP=Microsoft Office;" ' Example for Access database" '...
  16. cheekybuddha

    Solved Connection String mysterious Trim

    When you query the connection string (eg Debug.Print tdf.Connect) VBA will not reveal the user and password to you, but it will have cached the values and apply them when you use the connection. This is for security, so it is more difficult for users to discover the connection credentials...
  17. cheekybuddha

    Clear out data

    Welcome to AWF
  18. cheekybuddha

    Conditional Formatting

    @xavier.batlle 's suggestion in Post #3 will not work either (both "#1" and "#2" will be returned since they satisfy the other half of the expression)- @XPS35 has the solution in Post #6. @DHookom provides the cleanest solution in Post #4 Your options are: ([NewLineDesc] = "#1" Or...
  19. cheekybuddha

    Import Text Files without .txt extension, Update Access Text Registry

    .bat != .dat All the .dat files I ever came across used to be some form of binary encoded files, not plain text files
Back
Top Bottom