Search results

  1. Bodisathva

    Editing data in SQL Server

    couple of different choices, the easiest being link the tables through Access and you would reference them just as you would a local table. The second choice would be using pass through queries to allow the server to do the heavy lifting. search the forum for linked tables or pass through...
  2. Bodisathva

    Movie name game

    Tim Roth -- Pulp Fiction
  3. Bodisathva

    Loop this code!

    ok, found the other with (hint: use the code tags...formatting and indentation are essential to debugging code) before moving to the next record in the recordset, issue the save command for the Workbook...the next iteration redefines the worksheet.
  4. Bodisathva

    Movie name game

    'fraid he wasn't in the RHPS...
  5. Bodisathva

    Movie name game

    Richard O'Brien -- The Rocky Horror Picture Show
  6. Bodisathva

    Loop this code!

    there's an extra End With...FYI, I've always found nested With statements to be somewhat unpredictable. You should also save the sheet before you try to add another.
  7. Bodisathva

    .enabled

    that would be my fault...too early in the morning:o put it in the click event of the check box. chkLocked is what I called the check box in my example. Private Sub reconciled_Click() Me.Inc_Due.Enabled = Not (reconciled) Me.inc_due_less_VAT.Enabled = Not (reconciled) End Sub
  8. Bodisathva

    .enabled

    first off, spaces in object names are a bad idea. second, locked is also an object property, you should change the name of this object. third, on the On_Update event for your checkbox, simply set the two fields to the inverse of the check box: incDue.Enabled = not(chkLocked)...
  9. Bodisathva

    Loop this code!

    establish a recordset containing the tableNames, cycle through it, and replace the static refrences to the table name with the field from the recordset (and don't forget to move to the next record at the end of the loop): Set rec = currentDB.OpenRecordset("SELECT * FROM tableList") While...
  10. Bodisathva

    Movie name game

    Oliver Platt -- Flatliners
  11. Bodisathva

    Movie name game

    Rip Torn -- MIB
  12. Bodisathva

    is it possible to create a help file which opens internet explorer

    It will open with IE if you specify that in a command line argument. (Look here) suggestion: If you open a .doc with IE, you will still have the Word toolbar inside your Explorer window, though. I would recommend changing the help file to a .pdf for a more professional look.
  13. Bodisathva

    Setting dao database

    you must also use the OpenDatabase command: Set db = OpenDatabase(BackEnd)
  14. Bodisathva

    What's your best/worst joke?

    :eek: Now that's funny! I'm guessing: budgerigar: small Australian parakeet usually light green with black and yellow markings in the wild but bred in many colors
  15. Bodisathva

    Happy Birthday Rak!

    gelukkige verjaardag I'll hoist a few in celebration from this side of the pond:D
  16. Bodisathva

    Pass Through Queries and Parameters

    SELECT field1 FROM table1 WHERE field2 = (SELECT x FROM table3 WHERE [Criteria]) OR field3 = (SELECT x FROM table4 WHERE [Criteria]) Alternatively, if you are checking the same field from both of the nested...
  17. Bodisathva

    If Statement in a Pass-Through Query

    remember that when you execute a pass through query, all processing takes place on the server... IIF is an Access function that the server won't be able to interpret. You need to construct an SQL If-Else section or complete work on the recordset after you get the return from the server.
  18. Bodisathva

    Movie name game

    Richard Dreyfuss -- Jaws
  19. Bodisathva

    ODBC Too many indexed

    A few examples of ADO connection strings here better yet, just Google "VBA, Connection Strings" In my example: OraOLEDB.Oracle = the Oracle Driver I want the connection to use UID= The user ID to be used (if there is no username and password required, then this is obviously not needed) pwd=...
  20. Bodisathva

    Pass Through Queries and Parameters

    Because I don't know how large the actual SQL statement is, how many parameters are involved, or how many other programmers are involved. I would thank you for your kind words, but, never mind...I'll just be over here wasting time and memory.:rolleyes:
Back
Top Bottom