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 SkipVought 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: Fahy
  • Order by date
  1. Fahy

    Page to select data from a list of tables

    I eventually got there myself This procedure worked for me. CREATE PROCEDURE archivesuser.sp_Settables @tablename nvarchar(255) AS DECLARE @showfield1 nvarchar(255), @showfield2 nvarchar(255),@a nvarchar(255) SELECT @ShowField1= ShowField1, @ShowField2 = Showfield2 FROM fieldspecifics WHERE...
  2. Fahy

    Page to select data from a list of tables

    I have a list of 300 tables saved in a table called fieldspecifics I have an aspx page on which I have a listbox where the user can select a table When a table is selected I want the page to display the data from fieldnames which are specified in the fieldspecifics table The fieldspecifics...
  3. Fahy

    Date Validation Problem

    Use Now() -1
  4. Fahy

    Combo box to Update Even when Limittolist=Yes

    Thanks. That worked
  5. Fahy

    Combo box to Update Even when Limittolist=Yes

    I have 2 combo boxes the first updates the value selected in the second combo box; if a checkbox is ticked. e.g. Supplier Company is selected in cboFirst. The checkbox is ticked if we also sell to them and if they have never before been identified as a company we sell to I want to...
  6. Fahy

    Store filenames in array

    Thanks that way worked as well
  7. Fahy

    Updating Values in Combo Boxes

    As far as I remember this works I've called the table Categories and combo box cboCategory. Private Sub cboCategory_NotInList(NewData As String, Response As Integer) Dim strMsg As String, rst As Recordset, db As Database strMsg = "'" & NewData & "' is not in the category list...
  8. Fahy

    Store filenames in array

    It is an Access 97 database. I had to set a reference to the ADO library (Microsoft ActiveX Data Objects x.x Library - msado15.dll). before it recognised your code. Thanks after that it worked.:-D Does this mean I have to set a reference from within the Modules window Tools,References to this...
  9. Fahy

    Store filenames in array

    I have a procedure which checks for receipt files. The following procedure works in that it amalgamates all the files into one file; but the file names are retrieved in no particular order, which means receipts are not ordered. Open MyFileOut For Output As #2 MyName = Dir(MyCriteria) '...
  10. Fahy

    No read permission error message

    I also had this problem. Create a new database. Open the database you are unable to compact while holding the shift key down to disable any autoexec macros from running etc On the File Menu bar select Tools, Options and then on the view tab select show System Objects. In the new database goto...
  11. Fahy

    Schedule task to run every 15 mins in NT

    I have tried it and it worked. I didn't realise I could schedule a task to run at intervals throughout the day. I've put down exactly what I did, as its not completely obvious how to run a batch program at time intervals Double click on My computer, double click on Scheduled tasks double click...
  12. Fahy

    Schedule task to run every 15 mins in NT

    I want to start a scheduled job to run a DOS batch file every 15 minutes. How do I do this?
  13. Fahy

    I'm missing all my active x controls

    ODBC connection failing from a report in access97 on a win2000 pc. Fails on entering code for detail_format event Works fine on an NT pc Went into the design of a module and selected tools, references from the main menu. Missing: Microsoft Calendar Control 8.0 I did a search for mscal.ocx on the...
  14. Fahy

    Problem: MEMO field contains #Error

    I have also got this annoying problem occuring. Any time it occurs I run a make table query to select all the fields in the table except for the memo field, for the records affected. I then delete the records affected in the original table and run an append query to append the data from the...

Part and Inventory Search

Back
Top