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 SkipVought 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. FrustratedPgmr

    Adding 2 Commandbarcombboxes - not working

    I finally figured it out. Function NewToolBar() ' Note that a form's recordset ' is a DAO recordset, in an MDB. Dim db As DAO.Database Dim rst As DAO.Recordset 'Had to add a second recordset with an sql statement Dim rst2 As DAO.Recordset Dim cbr As CommandBar...
  2. FrustratedPgmr

    Adding 2 Commandbarcombboxes - not working

    I am trying to add 2 combo boxes to a toolbar. I get the combo boxes created but the second combo box just "dings" when I click on it. The comboboxes are 1(PatName) (Findrowinactivecontrol3 function finds the current record based on the name) and 2(PatSSN) (findrowinactivecontrol4...
  3. FrustratedPgmr

    Tab Control Help Please

    If you mean by "jumps" it appears to blink when you change data or records then look into the application.echo false if you are working with access 2000+ or the me.painting function for 97??. I use tab controls and was able to stop the annoying blinking when updating or changing the...
  4. FrustratedPgmr

    Convert Numbers to string holding decimal places and point

    Thanks for your quick response. It worked perfectly!!
  5. FrustratedPgmr

    Convert Numbers to string holding decimal places and point

    I need to convert the number field with 2 decimal places to a string in a new field in another table. I must keep the decimal point even if it is ".00". i.e. 10000.00 will still be 10000.00 when it becomes a string. Currently it is converting as 10000. Has anyone else dealt with this...
  6. FrustratedPgmr

    Problem with releasing access from memory

    I had the same problem and I found that using the following on my Exit button worked. Application.quit Application = nothing
  7. FrustratedPgmr

    locked out of database - pls help!

    I have this happens when I have to do a hard reset. I have found that I have to shutdown and restart to break the lock on the ldb. Once the restart completes I can delete the ldb.
  8. FrustratedPgmr

    Help in Access XP with accessing Forms from other Forms

    Don't close your form frmpolicyinfo - just make it invisible. "me.visible = false" after the docmd.openform that has the txtpolicynumber field on it. I am assuming that you are opening your txtpolicynumber form from the frmpolicyinfo form with a button click??
  9. FrustratedPgmr

    upsizing problem (Access 2000 ->MSDE 2000)

    Check out stored procedures(MSDE) vs queries or sql(Access).
  10. FrustratedPgmr

    Err Msg, To many characters?

    I am getting the same error 2113 and also -2147352567 - with message not a valid value for this field. I have been going through all my books and it is making me nuts. the field is an 8 digit text field. I checked for null values - lenght. as soon as I hit a key to insert a character - I get...
  11. FrustratedPgmr

    Making Access Application Stand alone.

    Yes, The Developer version contains the access runtime engine. When you package the access application for distribution the runtime engine is incorporated. without it users will have to have access installed on their machines. [gorgeous]
  12. FrustratedPgmr

    Bring up record if value entered in primary key is already entered

    If you are using Access2002 and attaching you tables via the form property - try the following first create an unbound text box name it "SearchBox" place the following code in the after update event of the "SearchBox" This works by comparing the value you enter in the...
  13. FrustratedPgmr

    Please explain MDE to me!

    When you create the MDE version you will not lose your design version - you will have two copies - one that is an MDE (secured code) and one that is your original design with no changes. You can make changes to your original design and create as many MDE's as you want for testing. Just keep in...
  14. FrustratedPgmr

    Connect an Access project to a Microsoft SQL Server database

    Is your server engine started? I have seen this message if my server was stopped. I am using the MSDE Engine that comes with the XP Developer Package. [Gorgeous]
  15. FrustratedPgmr

    Append Qry Using Field from Form - proper syntax for form module

    I finally got the syntax correct and it works fine. WHERE (Table.Field ='"&[Forms]![Formname]![Fieldname]&"') This worked running a "docmd.runsql strSql " statement in the forms module for appending records from 2 joined tables into another table. [Reading]
  16. FrustratedPgmr

    Append Qry Using Field from Form - proper syntax for form module

    I am trying to run an sql statement from the forms module that will append records into another table based on the current record in the form - not a combo box or list box. I did this in my regular access pgm - upsized it to ADP and have experienced problems with all my internal parms of this...
  17. FrustratedPgmr

    hey guys I created a tool bar and I

    Did you go to the startup screen and check "Allow User ToolBars" ?

Part and Inventory Search

Back
Top