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 wOOdy-Soft 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. twilightsilhouette

    Create Function to Open either Form2 or Form3 from Form1

    I have a button on form1 to open another form. Upon clicking the button, depending on information in the form1, it will either open form2 or form3. Open opening either form it filters to match specific form1 fields- if no matches it needs to create a new record with those fields pre-filled in...
  2. twilightsilhouette

    filter OR add new record fr 2 or more fields fr Form1 to Form2

    So far I can filter fine from one form to another. I'm using the following code: Private Sub cmdOpenTraumaFormFrDateForm_Click() Dim stDocName As String Dim stLinkCriteria As String stDocName = "TRAUMA_TOOTH_INFO" stLinkCriteria = "[Date]=" & "#" & Me![Date] & "#" &...
  3. twilightsilhouette

    reverse engineering and user-defined data types

    I reverse engineered an SQL 2000 database into VISIO (need to create some auto-update scripts) and am receiving the following error for 13 different data types (eg: char, int, bit, timestamp, nchar, varchar, etc.): "The user defined type name is a reserved word in the target DBMS&quot...
  4. twilightsilhouette

    Reverse-Engineered Database Model Physical Errors

    I reverse engineered a database and I need to produce some update scripts. My problem is, when I go to produce the update/generate - VISIO does an error check and produces physical errors stating "The user defined type name is a reserved word in the target DBMS" for 13 different data...

Part and Inventory Search

Back
Top