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 Chris Miller 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. mathprof

    Is There A Normal.dot?

    I find myself always changing the way MS Publisher opens a document ... Is there a normal.dot like in Word? I'd like to have a default zoom of 75% but it always opens to 43%
  2. mathprof

    remove 'format publication'

    MS Word has a normal.dot Does MS Publisher have something similar? I don't want 'format publication' to appear each time I open a file. It's annoying to X it out all the time.
  3. mathprof

    Dividing Publisher Document into 4 equal parts

    What cant you delete all objects on the page. Then, insert 4 equal sized textboxes. Then write to the 1st and copy and paste to the other 3 Mathprof
  4. mathprof

    Add Title to tag that shows when I hover over file in directory

    When I hover over a MS Publisher file listed in a directory I see Type, Date and Size. How can I include a small description. I tried File, Properties but it doesn't seem to work.
  5. mathprof

    Repeat First 2 columns in Multipage Printouts

    My first column is Name and my Second column is ID number. When I have say 50 columns, how can I get these 2 columns to appear on each successive page in the printout?
  6. mathprof

    System is idle but taskmgr.exe show 15%

    Windows XP SP1 2.2 Ghz 512Ram I boot my Dell Inspiron 8200 and all is fine for about 5 minutes. System Idle process CPU is 99%, taskmgr.exe is 0%. I open a VB project and it runs fast ! I close it and open it again several times. Same super speed. I close the VB project (no applications are...
  7. mathprof

    VB6 and Access Support Files

    I'm writing a VB6 application which references an Access 2000 db. My students have all the OS's from W98 to XP. When I distribute my exe can I distribute the same db support files for all OS's or do I need to include a correct set for each possible OS? For example will Jet 4 do it for all ...
  8. mathprof

    ERROR when I change from std exe to activex control

    Thank you LazyMe. You got me thinking. I check the properties of the control that was not being recognized and changed Public from false to true.
  9. mathprof

    Call a control from a Macro in Word

    I created an ActiveX control with VB6. My graph has 4 text boxes and 1 command button and a picture box. After I enter numbers in the textboxes I then click on the command button and a graph is drawn in the picturebox. #1 I go to the control toolbox in Word 2002. I click on the control and it...
  10. mathprof

    object required error

    I thank you both, StrongM and The Vampire. I bought a book that explains control creation. Although I've been creating exes for many years, activeXs are new to me and a little different. Anyhow, from what I understand now, the form is used ONLY to test the control. After the test is over, the...
  11. mathprof

    ERROR when I change from std exe to activex control

    I downloaded a VB6 Project from Planet Source Code. The author says that the code can be used in any which way. I need some help but the author’s email link is not working. The project has a form and user control. The Project Property Type is Standard exe. I compiled the project and the exe...
  12. mathprof

    object required error

    StrongM: It still gives an 'object required' error '===================================================== TheVampire: The Property Code is in the UserControl I want the picture in the control, not in a box in the control. Just like line 2 of the Set Pricture Property. Public Property Set...
  13. mathprof

    object required error

    I'm looking at the Set Picture sub, which was created by the wizard. How can I call this sub from form1? When I code set picture = v$ the picture appears on form1. When I code set usercontrol1.picture = v$ I get that 'object required' error. Public Property Set Picture(ByVal New_Picture As...
  14. mathprof

    object required error

    I added the ActiveX control wizard and 'exposed' the usercontrol picture property. What I need to know now is how do I code to get the picture in usercontrol1.picture?
  15. mathprof

    object required error

    I need your help here ! This is my first attempt with a usercontrol. Please clue me in on just how I should expose the picture property. Step by step if you can.
  16. mathprof

    object required error

    StrongM, No luck with your code. Same 'object required' error in the same place. Usually, when I get the obj req error it's because of a missing 'path' to the object. Is there something special about referencing a usercontrol object from without?
  17. mathprof

    object required error

    I modified the code. Form1 has 2 pictureboxes: graph and picture1 I also have UserControl1 This code copies what's in graph and puts it into picture1 If gives an 'object required' error on the statement. Set UserControl1.Picture = LoadPicture(v$) Is there a special way of calling a...
  18. mathprof

    object required error

    Same object required error in same statement (Set UserControl1.Picture = bmp) Private Sub Command1_Click() Dim bmp As Object xMin = xMin.Text xMax = xMax.Text Ymin = Ymin.Text Ymax = Ymax.Text Graph.Scale (xMin, Ymax)-(xMax, Ymin) Graph.Line (xMin, 0)-(xMax, 0) Graph.Line (0, Ymax)-(0, Ymin)...
  19. mathprof

    object required error

    code in form1 appears below error: object required in set statement project has: form1, module1 and usercontrol1 bmp$ = Graph.Picture SavePicture Graph.Image, bmp$ Set UserControl1.Picture = bmp$ I omit word 'set' and get same error. What gives? Thanks Mathprof
  20. mathprof

    Using a user control with MS Word

    I created an OCX using VB6. I put a picturebox (called graph) 4 textboxes and 1 command button (command1) on a form. I type numbers in the textboxes and then click on the command button. The result is a graph grid in the picturebox. See code below. '===================== Private Sub...

Part and Inventory Search

Back
Top