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 strongm 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. tebathe3

    dynamically set reference to global template?

    you can set a reference to a project though in the code window which is why i used the term reference.
  2. tebathe3

    dynamically set reference to global template?

    We unfortunatley have performance issues when we tried putting the templates out on the network. I had read that the only way to pass parameters to a method located in a separate file is to add a reference to it. I got the info from this article. It's based on Project but the concepts...
  3. tebathe3

    dynamically set reference to global template?

    I need to call a method that accepts parameters which is located in a global template in Word (located in the user's startup directory for Word). I've learned that basically the only way to do this is for me to set a reference to the global file. All of our users *should* have this global file...
  4. tebathe3

    registry question

    I know this isn't quite the forum for this question but I've had programming related registry questions answered here before so I thought I'd give it a try. We have this plug-in to one of our programs here that gets information from the registry in order to construct a file name. Long story...
  5. tebathe3

    enter text into a form field and preserve the field

    Actually, I have just discovered the code I am using works in 2003, but not XP: If ActiveDocument.Bookmarks.Exists("bmkDocketNo") Then ActiveDocument.Bookmarks("bmkDocketNo").Range.Fields(1).Result.Text = txtDocket.Text End If Any ideas?
  6. tebathe3

    enter text into a form field and preserve the field

    Nevermind, I found the appropriate property, thanks.
  7. tebathe3

    enter text into a form field and preserve the field

    odd question I know, but I actually need code to insert text into a form field and preserve the field. so in other words, i do not want to select the field and have the text replace it; it would look like you had just set the default text for a form field. is this possible?
  8. tebathe3

    versions of VS 2005

    I just read an article in MSDN about the Visual Team System and the unit testing you can do. Right now I have enterprise architect installed and I understand unit tests are not available in that version. However, in MSDN downloads, I don't see any other versions available for download. Does...
  9. tebathe3

    Blank form fields

    rmikesmith, that one finally worked, thank you!!
  10. tebathe3

    Blank form fields

    Sure, here it is. I've tried all kinds of variations in getting the text out of the bookmarked field, but it always comes back with the "boxes" when there is no text in it. [code] If ActiveDocument.Bookmarks.Exists("bmkTitle") Then Dim strTitle As String strTitle =...
  11. tebathe3

    Blank form fields

    My users are requesting that I create a feature for a form at our work that allows them to click a button and import the information they entered for the previous form they did. I'm saving the small amt of data out to the registry and that's no problem. The problem arises when one of the...
  12. tebathe3

    Word - Check All/None

    Wow I was way off, I didn't know about the inlineshapes property thank you so much this works great.
  13. tebathe3

    Word - Check All/None

    I have a bunch of checkbox fields (from the control box, not the forms toolbar) in a table in Word. I need to create a check all and check none feature. I'm looking for the correct syntax for a line of code that is like: for each control in me.controls. I have tried just that and I get...
  14. tebathe3

    ImageIcon

    Newbie here. I have an ImageIcon that I have added to a JFrame. It's avatar size so it's fairly small. However, even though it is relatively small, it seems to be interfering with the other controls I have on the JFrame. Now the strange thing is, if I mouse over where the controls should be...
  15. tebathe3

    Can triggers make use of parameters?

    I figured it was some sort of alias but I was confused since it didn't say "As O". I didn't know you could do it without the As. Thanks!!
  16. tebathe3

    Can triggers make use of parameters?

    this works wonderfully. i just have one question though. in the trigger script, what is the "O"? where it says update "O".
  17. tebathe3

    pass a control?

    I'm new to Java (I know VB.Net) and I'm wondering if Java will accept a swing control as a parameter in a method. I have a method in a separate class that does some calculations and I'd like to pass a textarea control to it in order to populate it. I tried doing the following but it didn't...
  18. tebathe3

    Can triggers make use of parameters?

    That would be great. I did check the faqs first and was hoping something was there. Thank you!
  19. tebathe3

    Can triggers make use of parameters?

    so if someone does update the quan field in the posubcat table, which pseudocode table do i use? it doesn't seem like deleted or inserted would be the right one?
  20. tebathe3

    Can triggers make use of parameters?

    the posubcat table is a junction table, so I have poid and subcatid as the primary key for that table. another table, pos05 has the primary key poid. basically, the subcat05 table holds all of the budget items. pos05 holds po numbers (order date, notes etc), and the posubcat table links...

Part and Inventory Search

Back
Top