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

    Interchangeable cascading combo boxes

    I have a customer address book form, with over 500 customers in it right now. There's a combo box with a list of all the customer names, and the user can select the customer they want to view the contact info. I'm trying to make it easier for people to find the customer they want. I have 2...
  2. gauntletxg

    Copy value from one subform to another

    Hi everyone. Hopefully someone can help me out here, I'm stumped. I have a main form that contains basic client information. There are then three subforms that contain specific contact information (i.e one subform is for a business contact, another is for a technical contact, etc. etc.) I want...
  3. gauntletxg

    Save as dialog box initial directory

    That doesn't work, apparently this is a known bug in Excel. I was able to modify my code to get it to work though: myFullName = Application.GetSaveAsFilename("C:\My Text Files\", Title:="Chose desired location", FileFilter:="Text (Tab delimited) (*.txt),*.txt") ChDir "C:\" If...
  4. gauntletxg

    Save as dialog box initial directory

    I'm trying to write a macro that will open a Save As dialog box in a specific directory with a specific file type. This is what I have so far: Sub SaveAsTab() Cells.Select Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False...
  5. gauntletxg

    Comparing 2 text boxes in a form and subform

    Sorry for the super-late reply. Thanks for your idea, that approach had never dawned on me. I didn't implement exactly as you outlined though. On the main form, below the box where the user inputs the transaction total, I added another box which subtracts the sum of transactions from the...
  6. gauntletxg

    Comparing 2 text boxes in a form and subform

    Here's what's going on. I have one table which contains information regarding bank deposits (customer, check number, date, etc. etc.), nothing out of the ordinary. My parent form links to this table. I have a second table which contains detailed information regarding these deposits, such as what...
  7. gauntletxg

    Dynamic field population in web forms revisited

    that worked great, i'm learning that the simplest solution is often the best solution...occam's razor at work again. i was getting really confused with putting in conditions for the checkbox, but your button idea is perfect. thanks!
  8. gauntletxg

    Dynamic field population in web forms revisited

    Hello all, this is my first post and I am in need of some assistance. I am relatively new to javascript and am struggling to figure out how to populate fields dynamically. I currently have a basic form in HTML which is used to gather contact information from customers. There are six fields on...

Part and Inventory Search

Back
Top