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!

Recent content by BigC666

  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

Part and Inventory Search

Back
Top