Recent content by mikenyby

  1. M

    Converting Sheet Excel to a SQL Server equation

    My apologies, I tried to make it as obvious as possible that this advice should not be followed, but I will be more conscientious in the future.
  2. M

    Solved Trouble creating a filter on a form displaying records built in a query

    My pleasure. When setting a filter in VBA, what you're writing out in the module is parsed as a string. You only need to enclose the parts of the string that don't change in quotes. You must connect any variables with an ampersand. Additionally, using me.[ObjectName] instead of writing out the...
  3. M

    Solved Case Statement to get value in Access Query

    Joins in Access are obnoxious to begin with. The only place you'll ever see so many RIGHT JOINs in the wild.
  4. M

    Solved Trouble creating a filter on a form displaying records built in a query

    What is the name of the field that D_Num is bound to? Ensure that the field is in the form's source query. Assuming the name of the form that you are working on is F_ActiveFilesSearch, try Me.Filter = "[Name of field D_Num is bound to] =" & Me.F_Num
  5. M

    Solved Case Statement to get value in Access Query

    I agree with the normalization method listed above, but if you don't want to go through that trouble you can also make current stage a calculated field in the table. You can nest a few IIF statements together to get the desired result. If your data is stored in back end tables on SQL Server or...
  6. M

    Converting Sheet Excel to a SQL Server equation

    Okay so here's what you're going to do. First create a view using this code: [REDACTED] You're good to go! IMPORTANT NOTE: If this is not a school project and you are not asking us to do your homework for you, then absolutely DO NOT do what I described above. If otherwise, go nuts buddy...
  7. M

    Solved Password Validation sub

    @cheekybuddha Frankly, not that great! This is after countless debriefings about how they're prioritizing storing all their data locally....
  8. M

    Solved Password Validation sub

    Thanks for this. I just got out of a meeting with management and now they are saying they want the whole thing on the cloud and a web CRUD app.... >:(
  9. M

    Solved Password Validation sub

    I adjusted this a bit to make it work, but it still may be vulnerable. Here is the new function: Public Function PasswordValid(IntId As Long, strPassword As String) As Integer Dim SP As String SP = "validate_pw " & IntId & ", '" & strPassword & "'" Dim ret As Integer With...
  10. M

    Solved Password Validation sub

    Still the same problem. .Parameters("p1") highlighted with "item not found in this collection".
  11. M

    Solved Password Validation sub

    Is that possible in a pass-through query?
  12. M

    Solved Password Validation sub

    @cheekybuddha your SP works perfectly in SQL Server, thank you! But there are some issues calling it in Access. I'm having a little trouble implementing the Parameters. I've copied the code you have provided, adjusting the data types and variable names used to match my own, but I can't avoid a...
  13. M

    Solved Password Validation sub

    Thanks @cheekybuddha I'll work on it and look forward to your examples.
  14. M

    Solved Password Validation sub

    I do understand how it works, it alters the query that the password validation routine is based off of, here forcing a return of '1'. What I slapped together is a simple stop gap. I frankly don't know what variations would also work. SQL injection is something I've only read about but don't have...
  15. M

    Solved Password Validation sub

    I put this in and it protects against that specific attack, but it won't protect against any other syntax that might work: If strPassword = "'),('1" Then MsgBox "No.", vbOKOnly, "No." Me.txtPassword = "" Me.txtPassword.SetFocus Exit Sub End If
Back
Top Bottom