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. Bennie

    Check Box on Access Form, Why is it Greyed Out but can be checked?

    if you have not entered any data in the database for that field - it is null and that is a grayed checkbox - if you want white set the chk.value = 0 which is false hope it helps
  2. Bennie

    Access does not hold ODBC conection details

    I had the same problem when i switch to 2000 - I made the following function: -----------start function--------- Function LogonToOracle() As Boolean ' Comments : ' Parameters : - ' Returns : Integer - ' Created : 2/1/99 ' Modified : ' '...
  3. Bennie

    Access (2002) XP - Corruption Issues?

    I have had the same problem and I have created a blank DB and imported from the corrupt DB to the New DB. This has corrected the corruption. hope this helps
  4. Bennie

    Remove Access 2000 VB Password (X-Post 1)

    The only way you can remove the password is to create a new access database then import all the modules, screens etc to the new database. you then can delete the old DB and rename the newly created DB to the old name Ben
  5. Bennie

    Create a desktop shortcut for my packaged mde

    you must write a custom routine to add short cuts. the set up package come with the source for Developer. I had the same problem and bought wise installer Hope this helps
  6. Bennie

    Always connect to Oracle ODBC

    This is the code that I use 'Put in at the module level Private Type GlobalDataBase wrkSpace As Workspace gdbsDb As Database ProductionRun As Integer Location As String End Type Public DBGlobals As GlobalDataBase 'this is the function to logon Function LogonToOracle() As Boolean...
  7. Bennie

    compile errors!!

    when coping to another computer you have to reset the references or write code to set the references
  8. Bennie

    Challenge...

    Make sure your auto correct property is set to no
  9. Bennie

    Reference Control using variable

    I do not remember where I found this code so I can not give credit for it. this routine will load the current tab SetTags Me, m_TabName Sub SetTags(strFrmName As Form, strTabName As String) ' Comments : This will set the tags on the current form with the data that is loaded '...
  10. Bennie

    Stop Switchboard Form From Maximizing

    I have had this problem to solve it you must set the forms property. 1. set Auto resize to Yes 2. set border style to sizable 3. set auto center to Yes 4. Now resize your screen to the size you want and save it This has worked for me Hope this helps

Part and Inventory Search

Back
Top