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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. neecie

    Populate multiple columns in a Comob Box using ADO

    The method used to add items depends on what combobox you are using. MSOffice, forms, Access all have different comboboxes and require different variables. It would help to know what library references you are using.
  2. neecie

    "Update" SQL help

    If you are trying to update the SHIP table, shouldn't it be WHERE SHIP.AP_NUM = T.AP_NUM (or formfield) You can try either of the below options UPDATE SHIP SET SHIP.DETACHED_HOUSE = 0, SHIP.ATTACHED_HOUSE = 0, SHIP.PUD = 0, SHIP.CO_OP = 0, SHIP.CONDO = 1 WHERE EXISTS (SELECT...
  3. neecie

    Access Project & SQL (Quick Newbie Question)

    If you search for "upgrade" in Access help it will bring up a list that includes "Use the Upsizing Wizard". From there you can read aboout converting your .mdb to a frontend/backend Access/SQL program.
  4. neecie

    Remove MsgBox "...opened read-only..." at startup?

    Steve101, My references were from the MSDN Library. Specifically from Microsoft Office 2000/Visual Basic Programmers Guide Chapter 16 - Multiuser Database Solutions
  5. neecie

    Import Excel Into Access Project

    If you have the permissions, select File, then Import Data and be sure that "All Files" or Excel files are listed in the file type of the dialog box
  6. neecie

    Remove MsgBox "...opened read-only..." at startup?

    You may have found a workaround to receiving the unwanted message, but depending on the work environment your application runs in, it may not be the best solution. The following warnings are from MS regarding the use of the /runtime parameter: "The /runtime option does not secure your...
  7. neecie

    Report with Stored Procedure as source

    I had the same problem. I use a sub procedure to input the variables into textboxes on a hidden form, then reference the form fields for the parameters.
  8. neecie

    Help with SQL concatenation Query

    I'm getting confused following ISNULL NULLIF ISNULL! Doesn't the following do the same? dbo.MgrTB_tbl_Missed_Punch.EmpLastName + ', ' + dbo.MgrTB_tbl_Missed_Punch.EmpLglFirstName + ' ' + ISNULL(dbo.MgrTB_tbl_Missed_Punch.EmpMidName,'') AS NAME As Case statement would better deal with the...
  9. neecie

    Remove MsgBox "...opened read-only..." at startup?

    I am afraid I have bad news... Microsoft says this behavior is by design (see MSKB article 322762). [sadeyes]
  10. neecie

    Subform with .ADP ???

    Bob, I am glad to know that I am not the only one who feels I would be better off without involving Access! I have been trying to convince my boss, without success, to dump Access and use VB for a long time. It is good to know that I am not the only one who feels this way!
  11. neecie

    Repair and Compact

    Hi chezealot9, The answer to your question depends on how often you modify your code, how often it is accessed, etc. I have a timeclock program that runs continuously (and hadn't been modified for over a year). I had to make a change recently and the db compacted from 8M to 212kb! I compact...
  12. neecie

    Form Problem in Footer Section

    Try: = Sum([Quantity]* [UnitPrice]) Or = Sum([LineTotal])
  13. neecie

    Adp Connection issues with SQL Server

    Glad your problem is solved!
  14. neecie

    Adp Connection issues with SQL Server

    I am not positive about SQL 2000, but in SQL7, if the Startup Service Account (find it in the server properties dialogue on the security tab) is the default "system account" then you can not access the server over a network. You need to change it to "This Account" and...
  15. neecie

    Unbound form field as parameter in StoredProcedure

    Personally, I use a function for processing stored procedures [code] Public Function Exec_Select2(spName As String, ParamArray IDs()) As ADODB.Recordset Dim i As Integer Dim com1 As ADODB.Command Dim parame As ADODB.Parameter Set com1 = New ADODB.Command...
  16. neecie

    Working with recordset

    Yaya, Are you referring to the MS Flex/HierarchicalFlex Grids? Do you mean the form's Record Source property? Is the form bound to the recordset? Is MyAdoRS based on multiple tables and is there a unique table value for the form? Sorry....so many questions with no answers!
  17. neecie

    Forms Event Procedure

    This may be a little too obvious, but have you checked the value of the "Has Module" property of your forms/reports?
  18. neecie

    Unique Table

    I created a form from a view made with 5 tables and had the same problem. To fix it, I opened the view, copied the sql text and pasted it into the forms recordsource (replacing the name of the view). As soon as I did, the 5 tables were available to select in the unique table property. Good...
  19. neecie

    Unique Table

    Did you try setting the Unique table before calling the ResyncCommand?
  20. neecie

    Stored Procedures and ADP

    Birgit, If you base a form on a view, you still need to define a unique table for the form. This would not allow both of the tables to be updated. I prefer to use only unbound forms and write code for any changes to the data. For me, it is the best way to control who puts what data into the...

Part and Inventory Search

Back
Top