Search results

  1. N

    analysing bugs/run time problems

    hello all, two things, firstly, i would like to start my program and go through it step by step using the debugger. from that i can hopefully see what is going wrong and what my variables contain at each point throughout my program. my problem is this: under General of main form i have a...
  2. N

    odd failure for compare query

    hello, trying to compare two tables from diff db's, i have linked the table from one db into the other db. query is as follows: SELECT [Clients1].[ID], [Clients1].[name], [Clients1].[surname], [Clients1].[address], [Clients1].[hobbies], [Clients1].[age] FROM Clients1 LEFT JOIN Clients ON...
  3. N

    compare tables from diff db's

    hello, i have checked out the forum for pevious Q's to this problem and found the below. http://www.access-programmers.co.uk/forums/showthread.php?t=80692&highlight=compare+tables only problem is thats its writen at a bit too technicle a level from where i am. i've done some investigation...
  4. N

    Opening/minimising/hiding

    hello, i have 7 forms, each of which is opened by a main form. on the main form is 7 buttons which should each open a different form. on opening this form the main form should hide/minimise and the opened form should come to the front and be visible. on closing the form the main form should...
  5. N

    Form record navigation transferring to next form

    on main form i have 6 buttons to take me to different forms. these other forms display different details relating to the same record im looking at on main form. SO, i hit the record navigation button and it flicks to show record 2's details, then i hit my button and it takes me to my new form...
  6. N

    Select queries and Union queries

    i have a table named "products" with fields "MDateID", "MaintDate", "PSSID", "LogEntry", "UpdatesPerformed", "configurationChange", "comment" i have two combo box's which user selects an entry from the PSSID, then the next comboBox allows them to select the MaintDate for that PSSID choice...
  7. N

    Combo/list Box populating

    hello, program is ment to take details from a combo box, then from the selection made in the combo box, show details that come from a table in a list box on same form. then from that list box the user picks which record he wants displayed and it populates 4 text fields with relevant record's...
Back
Top Bottom