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!

Search results for query: *

  • Users: Rizar
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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)
  4. 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
  5. 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...
  6. 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...
  7. 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