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 Mike Lewis 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. BigC666

    Automatic Insert....Works, but have to cancel to change fields.

    That didn't do it either. Even putting the acCmdSave in there you still get the same error. I have tried it in several different places with the same or worse errors. Any more thoughts? Grin. I am still digging.
  2. BigC666

    Automatic Insert....Works, but have to cancel to change fields.

    Now it gives me an error message. Says I must save the field before I requery. Thoughts?
  3. BigC666

    Automatic Insert....Works, but have to cancel to change fields.

    Allright this may sound like a stupid question....But where do I put it? Grin. I am a novice at this, pretty much feeling my way blindly along. Thanks for the tip though.
  4. BigC666

    Automatic Insert....Works, but have to cancel to change fields.

    This is the code I am using for the form. Private Sub Thumb_Click() 'Automatic insert On Error GoTo Err_Thumb_Click RunCommand acCmdInsertObject Exit_Thumb_Click: Exit Sub Err_Thumb_Click: Const conErrDoCmdCancelled = 2501 If (Err = conErrDoCmdCancelled)...
  5. BigC666

    Novice: Please help

    Take a look at the sample northwind database. Their order forms and related queries should help you with this situation. I had to do something similar and it helped me.
  6. BigC666

    Invalid Use of Null (IF..THEN)

    Private Sub Authorize_Click() On Error GoTo Err_Authorize_Click Field = Me!AuthorizationNumber Field1 = Me!TicketID If IsNull(Field) = True And IsNull(Field1) = False Then Randomize Me!AuthorizationNumber = Int(RND * 1000000000) Else...
  7. BigC666

    Invalid Use of Null (IF..THEN)

    Here is my code... Private Sub Authorize_Click() On Error GoTo Err_Authorize_Click Dim Field As String Dim Check As Boolean Field = Me!AuthorizationNumber Check = IsNull(Field) If (Check = True) Then Randomize Me!AuthorizationNumber = Int(RND *...
  8. BigC666

    HELP!! ProcessGPOS

    hey folks i'm getting the error ProcessGPOS:Extension Microsoft Disk Quota ProcessGroupPolicy failed status 0x80070002 i've disabled all disk quotas on the workstations that i'm running, all are running w2kpro. i've gone in to the regestry on the server and chandes the default flag to 0x1...
  9. BigC666

    turn off dbwindow in startup

    hey guys i've checked and unchecked the show db window in the startup settings screen...no workie. looked at faq181-1172 looks neet however when i try to inplemant it i get the error after i stop the db that access can't find c:\Documents.mdb, i've looked all through the code and can't find any...
  10. BigC666

    RRAS

    i'm using an internal dial-up modem. thanks winn
  11. BigC666

    RRAS

    matt, thanks for the reply. the internal mic is set at 10.10.1.1,255.0.0.0 and dns is 127.0.0.1. the second nic is auto. when i set up rras i made a dialup interface and pointed it at the 10.10.1.1 nic. on the win2kpro box i can ping names ping ips. the server when i establish a connection...
  12. BigC666

    RRAS

    i'm sure ya'll are gettin tired of me but, i have configured rras with the wiz on a win2k server have 2 nic boards using demand-dial with an internal modem. i can use and work with the internet on the server when i try to use ie on a win2kpro box with auto detect checked it can't find the...
  13. BigC666

    REMOVE RRAS

    it shows the red arrow, however when i try to add and use this computer it puts the same config back after i've deleted it, i can't seem to find the reference to rras in regedit any pointers thanks winn
  14. BigC666

    REMOVE RRAS

    can somebody tell me how to manually remove rras, i'm trying to reconfigure from scratch and i go to the rras and disable the server but it won't let me reconfigure it. thanks winn
  15. BigC666

    2 NICS, WHICH ONE

    i'm trying to use either ICS or RRAS don't care which one on a small net. have two NICS one has dhcp enabled one does not which one should i use to be local and which one to go to the internet. lost in the winzone winn
  16. BigC666

    ICS

    hi, i've win2k server ad loaded on one box, have three other boxes with win2k pro. one box with win2kpro has 2 nic cards. have installed the server with dynamic addresses also the win2kpro boxes auto. the win2kpro box set up ics on the second nic card. can ping all boxes that have auto adresses...
  17. BigC666

    sharing a dial-up connection

    matt their using auto ip's comming from the win2k server with ad like 10.0.0.6 and 10.0.0.5
  18. BigC666

    sharing a dial-up connection

    thanks matt, however i've done all this. i can use /release /renew and see the card config on the ics machine. when i'm on the net i can see the dial-up adaptor listed using /all. i can't ping from any other machine on my lan and i use the ie setup for lan ijust get can't open site. i know the...
  19. BigC666

    sharing a dial-up connection

    10.10.1.1 subnet 255.0.0.0 dns 127.0.0.1 do i need to setup ics on the pdc, the nic cards are setup on a winpro workstation.
  20. BigC666

    sharing a dial-up connection

    i've got to be the dumbist cat walking cause i can't get this %$&*! connection to work. i've got win2k server running one one box and win2k pro on another, the win2kpro box has 2 nic cards. i set up a dial-up on the pro box, which i'm using now, when i tell the dial-up to share it sets up my 2nd...

Part and Inventory Search

Back
Top