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 bkrike 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 Rizar

  1. Rizar

    Access forms problem - way too far

    Thanks you very much, that's the same think that happen to my customer bottom/right. Well I found nothing about this issue... ty again.
  2. Rizar

    Marking several checkboxes = true simultaneously

    Dim TheForm As Form Dim ObjChk As Control Set TheForm = Screen.ActiveForm For Each ObjChk In TheForm.Controls '106 for checkbox If ObjChk.ControlType = 106 Then ObjChk.Value = 1 End If Next ObjChk I hope that will...
  3. Rizar

    Access forms problem - way too far

    Well to be true I never saw this problem, it's a customer... He said that he cannot move it up, that's not working... He was using this application since... hmmm few month and that problem never appear. So can I say that's an MS Access problem? I'm a bit lost, because, like I said, this...
  4. Rizar

    Access forms problem - way too far

    Hi, I have a strange problem. When I open my Access project, then main forms appear very very far down. I have a Vertical Scroll bar and I have to scroll a lot to see my form. And when I click a button to open an other form, the form open normally at the begin so I have to scroll up to see this...
  5. Rizar

    possible to "page setup"... (access)

    I want to print a repport with a "page setup"... that easy of course, but I want to print the page 1 with a "page setup" and others with a different "page setup"... I just wander if that even possible... Rizar
  6. Rizar

    how to copy a control

    oh, yeah, I forgot that, it's for access 2000 (vb6) I have a ActiveX Control in my Form 01, and I want to copy it in form 02 to 20. I wasn't Able to find the code the Create my ActiveX control, so if I least I can copy it, i'll be more then happy
  7. Rizar

    how to copy a control

    I want to copy a label from Form1 to form2 how can I do it? I know how to open a form, I just want to know how to cop/paste a control (by coding)
  8. Rizar

    placing a ActiveX control

    I need to know how to place an ActiveX Control (access) in a form with code... createconrol("form", "acCustomControl", "acDetail") this command only set a blank ActiveX control, I need to set mine... desesperatly, John
  9. Rizar

    How to setup a activex control

    I created my control dim NewCtrl as Control Set NewCtrl = CreateControl(TheForm.Name, acCustomControl, acDetail, , , 1, 1) How I can fix the class and OLE of the ActiveX control... I want to place my control and not the default control... i'm a bit lost with creating ActiveX control from...
  10. Rizar

    how to convert response from... allforms

    How to convert response from application.currentproject.allforms.item(x) to dim Form1 as Form the type of application.currentproject.allforms is not compatible with a dim form...
  11. Rizar

    Need to find a activeX control

    I'm looking to find a activex control in a form to delete it... the control in invisible... Dim ActXCtrl as Control Dim FormX as AccessObject for each ActXCtrl in FormX.Properties if ActXCtrl.name = '' ActXBtn '' Then DeleteControl FormX.Name, ActXCtrl.Name end if next...

Part and Inventory Search

Back
Top