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 Wanet Telecoms Ltd 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: DanScott
  • Content: Threads
  • Order by date
  1. DanScott

    Populate Combo box with Field names from Table selected in another Com

    I found thread 702-796789 that was exactly my problem, but I could not get the solution to work. Here is my problem in detail I have a form that has (for now) two combo boxes, one that I have been able to list my current tables less msys tables. Now I want to list the fields for the table...
  2. DanScott

    Focus and Change if field is empty in continuous form

    I have a Continous form that shows several fields from a query. What I want to do is: 1. When the user leaves the field, check that the field is not emtpy (I cannot set the allowzerolength to no as I have some records that have no info in the table, these are filtered out). If it is, I want...
  3. DanScott

    Change Field Decimal Place from Auto using VB

    I have a piece of code I am using to create a table: dim db as database dim tdf as TableDef dim strnewtable as string db = currentdb() Set db = OpenDatabase("h:\customer\master.mdb") Set tdf = db.CreateTableDef(strNewTable) With tdf .Fields.Append...
  4. DanScott

    Identify and Rename as text files

    I receive 22 files everyweek. They are automatically generated by a mainframe and output in a text file format, the file names are something to the effect of: 0123shares_1_003.0903. All the numbers before the word "share" change weekly and all the numbers after the 1_ change weekly...
  5. DanScott

    Change Table Attribute to hidden after table created

    I currently have a procedure in place that will delete a table if it exists and use the docmd.transferdatabase to import all new data on a weekly basis. This all seems to work fine, the only thing I would like to do is, after importing the table, set the attibute to hidden using VBA. I cannot...
  6. DanScott

    Preserving Values from one session to next

    I know this is possible, but I just can't get there. I have a form with a listbox as the control for several other fields, the list box is the "Month" ie JAN, FEB etc. I want to save the last month as the default setting for the next session. I have read about creating an INI or a...
  7. DanScott

    Replace proper Ucase text with lcase when word like "and", "or&q

    I have a Table with a text field that has been properized, but I need to Properize (lowercase) or run a second function that will make these certain words all lowercase. I have created a table that list "oldtext" and "newtext" (example "Or" and "OR") all...

Part and Inventory Search

Back
Top