Search results

  1. P

    Treeview Example

    Hi. I am trying to use the treeview control in Access 2000 on a form. I have created the tree, nodes, bound to image list, etc, all this is fine. I need each node to make a different hidden subform visible when clicked. I can see no-where that I can put the code for this, like the onclick...
  2. P

    Stuck on IIf

    Hi. Here is an expression in my query: incident: IIf([tbl_attendance].[att_st]=-1,"Street",IIf([tbl_attendance].[att_wk]=-1,"work",IIf([tbl_attendance].[att_illness]=-1,"Illness",IIf([tbl_attendance].[att_sport]=-1,"Sport",IIf([tbl_attendance].[att_si]=-1,"Self...
  3. P

    custom 'scroll' object

    Instead of having a default scroll bar on a form (Horizontal), has anybody ever come across if it is possible to have two small command buttons (<) and (>) on the form in order to scroll left and right? If so, how did you do it? Thanks in advance, -NEIL
  4. P

    SQL Function value in text box

    Hi. I have a function that runs a SQL SCRIPT to calculate a value from two other scripts: Public Function sql_risk_rating() Dim sql1 As String sql1 = "SELECT qry_cf_value.device, [cm_value]*[cf_value] AS Risk_value" & _ "FROM qry_cf_value INNER JOIN qry_cm_value ON qry_cf_value.device...
  5. P

    Exporting table to CSV file

    I am having probs in exporting a table as a CSV file. The file will be uploaded to a National Database. I am having problems that the National Database identifies when the user attempts the upload. The problem is that one of the fields in the table is a memo field. When the user who enters the...
Back
Top Bottom