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. droberts200401

    Pasting a screen image into a Word Document

    melburstein, In the past I have always done Ctrl+Alt PrtScr. Hope this helps
  2. droberts200401

    Excel VB updating function

    Hello All, New to VB and require some help please. I'm in process of creating a tracking sheet for a project. I have a Top Sheet which gives you a snap shot of the entire project and if milestones are - On Target (green) Looking unstable (amber) Will miss target (red) The Top Sheet is fed...
  3. droberts200401

    Photo gallery problem

    Have you uploaded the phot's to the server, the page would work in Frontpage cause the photos are held locally, however when the page on the net goes to find the photo's it looks to find them on your machine and not on the server. Let me know if this helps
  4. droberts200401

    Visio 2002 keeps crashing my system

    I had the above problem mentioned and what I found out was that there is a conflict between Frontpage and visio, it doesn't matter what versions. This may help Regards
  5. droberts200401

    Populating a Text Box

    This is all of my code - Private Sub ComboBox1_List() ComboBox1.AddItem "Secret" ComboBox1.AddItem "Classified" ComboBox1.AddItem "Unclassified" End Sub Private Sub ComboBox1_Change() End Sub Private Sub Document_Open() ComboBox1.AddItem "Secret" ComboBox1.AddItem "Classified"...
  6. droberts200401

    Populating a Text Box

    Me Again, Thanks for the help. I can get the result into the Text Box, however If I change the selection I've made in the ComboBox the text box does not update. The code I have to run the update is such - Private Sub TextBox1_Change() TextBox1 = ComboBox1 End Sub Any ideas, I'm pulling my...
  7. droberts200401

    Populating a Text Box

    Hi, Is there any way to populate a text box from a selction that a person has made from a combo box? The text box I would ideally like to store in the header of the Word document. Actions I would like - 1. User makes selection from Combo Box, 2. User fills in the next part of the form, 3...
  8. droberts200401

    Combo Box selection

    Hi, What I would like for my document to do is the following - From my Combo Box a user has made a selection, and I would like to know what code to use so that the selection that the user has made will then be copied into the header of a word document. Do I have to create a Text box for the...
  9. droberts200401

    NEW to VBA

    Skip, Thank you so much for your last reply, with your assistance I have managed to get it working. Regards
  10. droberts200401

    NEW to VBA

    SkipVought Its a Control Toolbox combobox. Have tried to get around the whole VB issue with Form Toolbar, I need to lock the document so users would not change any of the form content, however this also locks the header which the user needs to change and so is not an option for me to use. Regards
  11. droberts200401

    NEW to VBA

    TranMan - Sorry if I'm being completely ignorant, I'm using Word 97 and accessed VB that way and I can't see the 'Row Source Type' in properties. SkipVought - Im just using a ComboBox from the Tools menu in Word 97. Really sorry guys for being a VB newbie and thanks for advice you have...
  12. droberts200401

    NEW to VBA

    SkipVought, thanks for the speedy reply, I have tried the Click event however when I use this event none of the combobox options appear, this is true of other events I have tried and failed with. When the user makes their selection I just want the value to stay in the box so when they print out...
  13. droberts200401

    NEW to VBA

    Help, as the subject says it all! Would like a drop down box that has three options, this is my code - Private Sub ComboBox1_Change() ComboBox1.AddItem "A" ComboBox1.AddItem "B" ComboBox1.AddItem "C" End Sub However when a user selects one of the dropdown options (in a ComboBox) and has...

Part and Inventory Search

Back
Top