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: *

  • Users: revz
  • Order by date
  1. revz

    Modify Word Field from VB.NET

    Hi, I am trying to update fields in Microsoft Word XP. At the moment I am going through them sequentially: w.ActiveDocument.Fields.Item(1).Select() w.Selection.TypeText(Text:="New value here") I would like to be able to reference each one by the name I have given them in Microsoft Word XP...
  2. revz

    Combobox - Add Object (Rather than string)

    I used it on form load Thomas Griffiths tom@vscan.org
  3. revz

    Combobox - Add Object (Rather than string)

    Hi Michael, Our solution was to remove the tostring() override and to add a readonly property "Value" to the keyvalueitem. Then for each combobox that I was adding keyvalueitems to, set the combobox property DisplayMember = "Value". Thanks for all your time, Michael Thomas Griffiths...
  4. revz

    Combobox - Add Object (Rather than string)

    Hi Fritts, Thanks for your reply :) I tried referencing by index rather than name but the problem still occured. What my friend discovered was that when we restarted visual studio, and ran the project straight away, the problem did not occur, i.e. the combobox was being populated as...
  5. revz

    Combobox - Add Object (Rather than string)

    Attemping to insert an object (KeyValueItem) into a combobox rather than a string. This is for when I add items to the combobox at run time from a db, I can identify which corresponding row (i.e. no data binding) in the database has been selected in the combobox. Here is the KeyValueItem...
  6. revz

    Spread 3 <li>'s out evenly on the horizontal

    With the below, I am trying to achieve a horizontal navigation bar which spreads the 3 list items out evenly. The desired layout works in IE 6 but not in any of the Moz/Netscapes. <html> <style> .itemlist { width: 100%; background: #ccc; text-align: center; } .itemlist li {...
  7. revz

    Finding the sum of an entire column from a sub form

    Heya, I have a form, with a table as a sub form on it. I am wanting to add up a column of fields, but need to know how to go about it. I know that it would include using a while loop to figure out if the loop is at EOF. If the it is, to stop, otherwise move to the next record and the field...
  8. revz

    Text box on a form to a variable in a module

    Heya, I have a look through the Q&As of previous posts and since I am only a beginner with VBA, not much of it made much sense. The problem I have is that I want a module to look at a text box on a form (to see what the value is) and depending on the value of the number inside the text box, do...
  9. revz

    Public variables

    Sorry ladies and gentlemen, I filled in the wrong box :( *Goes back to bed* Tom Griffiths
  10. revz

    Public variables

    Heya, I have a look through the Q&As of previous posts and since I am only a beginner with VBA, not much of it made much sense. The problem I have is that I want a module to look at a text box on a form (to see what the value is) and depending on the value of the number inside the text box, do...

Part and Inventory Search

Back
Top