Recent content by gotlength

  1. G

    Form design help for event meeting schedule

    Here's what I ended up doing in case anyone needs ideas.
  2. G

    Form design help for event meeting schedule

    Hi, I need some help on designing a form for a event meeting schedule. It needs to display the days of the meeting and what lectures are taking place that day. Like: Meeting information form | | | Days subform Day 1 | |Lecture subform Intro to access Mastering access .. Day 2...
  3. G

    make the first letter uppercase

    If you want it to do it real time as they type make a function: Public Function properCase(keyNumber As Integer, str As String) If Len(str) = 0 Or Right(str, 1) = " " Then properCase = Asc(UCase(Chr(keyNumber))) Else properCase = keyNumber End If End...
  4. G

    Question Record locking with Access front end and SQL Server backend

    I'll have to give it a shot. I'll let you know. Thanks
  5. G

    Question Record locking with Access front end and SQL Server backend

    We run meetings, so one example of where I will need record locking is if employee #1 is doing a follow up for a meeting and they are changing say how many hours a customer attended at one of their past meetings. Then the customer calls in starts talking to employee #2. (employee #1 was not...
  6. G

    Question Record locking with Access front end and SQL Server backend

    If I were to use adodb and SQL Server OLEDB, doesn't that bypass ODCB? I've tried using the following code, but it still doesn't not lock an edited record. Private Sub Form_Open(Cancel As Integer) Dim cn As ADODB.Connection Dim rs As ADODB.Recordset 'Create a new ADO...
  7. G

    Question Record locking with Access front end and SQL Server backend

    Thanks for the help. Would it help at all if I used ADO or DAO instead of ODBC? This is my first time using Access and SQL, so I not sure what would be better. Thanks!
  8. G

    Question Record locking with Access front end and SQL Server backend

    Did you figure out a solution? I have the same problem. I do not want a person wasting tons of time entering data only to find out they cannot save it because it's been edited by someone else since they started.
  9. G

    Access 2010 FE, SQL Server 2008 backend - Record locking

    Did you figure out how to do this? I need to know how to lock the record also.
  10. G

    Access 2013 and opening objects

    This is going to be a really stupid question. But how do you open a table, form, or report when the navigation pane is hidden? I'm not talking about in vb. When you go to file - open, it only lets you open a database. Thanks!
  11. G

    Filetables in SQL 2012 and Access 2013

    Thanks for the link. I'm trying to store attachments in the database from access. I could use filestream, (which I don't know how to do yet), but I figure that filetables would be a better option.
  12. G

    Filetables in SQL 2012 and Access 2013

    Hi everyone! I'm new to the forum and I have found it very helpful thank you very much. I am also a newbie to access and sql. How do you use a SQL 2012 filetable in Access 2013? I can link the table in Access, but I get the error: "ODBC--cal failed". It then pulls up the table and I can see...
Back
Top Bottom