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!

Recent content by angelaw

  1. angelaw

    DSREPAIR-5.0-040: Error writing to log file, log file closed

    Try booting the server with server -ndb then run dsrepair. I had a server last wk that I walked into down, everytime would reboot. Took a couple hrs to get back, just to find out ds was corrupt on the master.
  2. angelaw

    NMAS Biometric Logins

    Trying to test out premiere systems biometric for login via fingerprints. Running NW6 sp4, xp workstations with nw 4.9sp1a, I've verified CA setup correctly, login and security policies, made servers trustees of the security container, told the user what security method to use in console one...
  3. angelaw

    Create new macro based off entries in form?

    Have a form/table that lists information, for each record I need to create 3 macros, one mom, dad and other. Right now manually creating 3 macros for one attorney. Is there a way that if a record is added or modified that it will automatically create (if new) or change existing macros that apply...
  4. angelaw

    Combo Box and vbcrlf

    The message box pops up with the info requested, just not as needed with 3-4 lines for address format. Getting ready to make 3 macros for each attorney at this point. My whole goal was based off of having an attorney list that one attorney could either be for personA personB or personC. Needed...
  5. angelaw

    Combo Box and vbcrlf

    The columns are set for:1.5";2";1.5";1", rows 8, width 4" data row source is: SELECT DISTINCTROW [Def].[Defname], [Def].[Addr1], [Def].[addr2], [Def].[addr3] FROM def ORDER BY [Def].[Defname], [Def].[Addr1], [Def].[addr2], [Def].[addr3]; on click is: Private Sub...
  6. angelaw

    Combo Box and vbcrlf

    fixed variable not defined erro, but still only gives name not rest of address from box and if i put the original rowsource back and test with the onclick code doesn't go to the next line. just wraps it at the end of each line
  7. angelaw

    Combo Box and vbcrlf

    All by using the above code you provided, all the other info from the row source doesn't get displayed. Just the names and nothing else.
  8. angelaw

    Combo Box and vbcrlf

    Tried above with: var = attyinfom.Column(0) & vbTab & attyinfom.Column(1) & vbTab & attyinfom.Column(2) & vbTab & attyinfom.Column(3) get compile error, variable not defined ??
  9. angelaw

    Combo Box and vbcrlf

    either that or have the original 4 fields setup as 4 different combo boxes and have all the information in boxes 2,3,4 fill in automatically depending on what's selected in combo box 1.
  10. angelaw

    Combo Box and vbcrlf

    Need to have it formatted as an address in order for it to merge properly with the word document form.
  11. angelaw

    Combo Box and vbcrlf

    Currently have combo box set up to pull from 4 fields in one table and to dump into into one field on another table. Row source is (from sqlview): SELECT DISTINCTROW [Def].[Defname] & " " & [Def].[Addr1] & " " & [Def].[addr2] & " " & [Def].[addr3] AS expr1 FROM...
  12. angelaw

    Requery method

    Tried that, name leaves the list, but not in the text area where it was placed initially after choosing it from the list. As for the record number, I can hit the delete record on the menu 10-20 times, it acts like you are still deleting records, yet all it's doing is adding another number and...
  13. angelaw

    Requery method

    Here's my scenario. FormA has command buttons on it to go to FormB and FormC. FormA has 2 controls that refer to forms b and c. if it's not in the list of choices in the combo boxes they have to go to the forms b or c to edit, then come back to formA and choose the correct name from the list. I...

Part and Inventory Search

Back
Top