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 TouchToneTommy 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 knulisch

  1. knulisch

    Listbox problem

    I figured it out and wanted to answer in case it ever happens to anyone else. I had the Allow Edits property on the form set to No - changed it to Yes and it would allow me to highlight records in the listbox.
  2. knulisch

    Listbox problem

    I put a listbox on my form and pointed it to a table (using the wizard). However, when I run the form the data shows up but I cannot highlight anything - it stays on the first record and just outlines it. What am I missing? Thanks
  3. knulisch

    Docmd.selectobject acquery close

    I have a button that opens up the query area from my app using the following code: DoCmd.SelectObject acQuery, , True when I click the X on the query window to close it down it closes down the entire app instead of just the query window. How do I prevent this? Thanks
  4. knulisch

    Missing Min/Max/Close Buttons on Form

    Thanks VicM - that worked great!
  5. knulisch

    Missing Min/Max/Close Buttons on Form

    My form is not displaying the Min/Max or Close button at the top. I have the Close Button property set to Yes and the Min Max set to Both Enabled. Is there some other property I could have set to override these? There is no code written to turn them off. Thanks
  6. knulisch

    Multi-user database problem

    Thanks for your help - I will probably try to get away from the DSN's. Is there a standard connection string that I should use for multi-user access?
  7. knulisch

    Multi-user database problem

    It is shared.
  8. knulisch

    Multi-user database problem

    I can run the app by itself on both PC's (actually more).
  9. knulisch

    Multi-user database problem

    The database is located on a server. The ODBC System DSN points to that mdb on the server.
  10. knulisch

    Database / Multi-user problem

    I am having a multi-user database problem with an access my VB6/Access 97. Via ODBC, I am using a System DSN with a Microsoft Access Driver called "judge". In my ADODC control on the form, I have the Connection String pointing to the ODBC judge. I have the CursorType set to...
  11. knulisch

    Multi-user database problem

    I am having a multi-user database problem with an access my VB6/Access 97. Via ODBC, I am using a System DSN with a Microsoft Access Driver called "judge". In my ADODC control on the form, I have the Connection String pointing to the ODBC judge. I have the CursorType set to...
  12. knulisch

    Query count question

    I have two tables linked by an id field. I would like to create a query that updates a field in the first table when the count of items in the second table (for that id) is > 25. Can someone help me out with this syntax? There is a one to many relationship between the first table and second...
  13. knulisch

    SSTAB

    I have a form with an SStab control that contains two tabs. If the user clicks on Tab2 while they are entering data on Tab1 I ask them if they really want to go to Tab2 (cancelling updates) or stay on Tab1 and continue updating. My problem is I cannot make the program stay on Tab1. Is there...
  14. knulisch

    ADO addnew cancelupdate problem

    I am having a problem with cancelling an update on my form. My form consists of two tabs - a list tab and an edit tab. The data for each tab is driven by the same recordset - the difference being that the list tab is just a datagrid of all records in the recordset and the edit tab shows them...
  15. knulisch

    Null value problem

    I have the following formula in my report in order to concatenate two fields (the wine type field will always have a value, the other designation field may not). Sometimes the field will not print any value even though there is a value in the wine type field. Am I missing something? Thanks...

Part and Inventory Search

Back
Top