Search results

  1. I

    Command Button

    Hi I have a option group with 6 command buttons. The trouble is when you select a button, the button stays selected, so if you want to select it again you have to select another butoon then go back to it (hope this makes sence!). Is ther a way to re-set the button so it returns to un-selected...
  2. I

    Sql

    Hi I am running a sql statement which looks at dblProdID as a value, am I missing something as sql is not working! "WHERE tblProduct.ProductIDNumber = & dblProdID & "
  3. I

    Sql

    Hi I am using the code below to supply the record source to a form. Unfortuantly the sql is not working! Can anyone help! Dim strNewRecord As String Dim strSupplier As String If IsNull(Me.cboSupplier.Value) Then strSupplier = " Like '*' " Else...
  4. I

    Update data in query field

    Hi I have code which opens a query and exports the data to a file. How can I get the code to update a field in the query to a specified value, for each line of data which has been exported. This value would be used to filter future data. Thanks in advance..........
  5. I

    Listbox

    I have a list box on a form. What I want to do is get the value of one field in the first line of data in the list box. Can anyone advise! Thanks in advance..............
  6. I

    Report Focus

    I us a form with combo box to filter the data for a report, when I run this the report appears behind the form. Can this be fixed so the report appears in front of the form! Thanks in advance.........
  7. I

    Form open!

    Hi Is there code which identifies if a particular form is open. Thanks in advance............
  8. I

    Forms

    Hi Two questions! 1. Can you open a form on a specified part of the screen! I have up to four forms that can open at the same time . 2. Can you make a form stay in front of another form, I want a specified form to stay in the backgound and others to be promonent. Hope this makes sense...
  9. I

    Data Manipulation

    Hi I have data in a table: 1234 6987 664 663 65 89 Does anyone no how I can update the numbers so they are 5 figures using a 0. ie: 01234 00664 00065 Thanks in advance!
  10. I

    Report Footer

    Hi I have a report which has a sub report attached in the Report Footer section of the report, is it possible to prevent the sub report from being activated! Can the Report Footer section of the form be de-activated! Basicly I want to be able to produce a report with or with out the sub...
  11. I

    list box

    Code to select items in list box Have found some code, for anyone interested: Dim lngSelection As Long For lngSelection = 0 To Me!lstData.ListCount - 1 Me!lstData.Selected(lngSelection) = True Next lngSelection
  12. I

    list box

    Hi Is it possible to automatic select all the data shown in a list box instead of clicking on all of the data!
  13. I

    Access 2003 Developer Extensions

    Instead of purchasing versions of Access for about six machines in the office I work in I have been looking at the company purchasing Visual Tools for Microsoft Office so I can us the Developer Extensions. From what I can make out this is a add on to Visual Studio.net, am I correct! Has anyone...
  14. I

    SQL Table Update

    I am currently using a sql update statement to append data form other tables and text box's on a form to a central table. I am finding using this option a bit restrictive. Has anyone any ideas on how I could do this another way! Thanks in advance..............
  15. I

    SQL String Value

    I have a sql statement to update a table, the sql string is called strSQl as below: strSQL = "INSERT INTO tblQuote etc etc" Is it possibel to identify if there is a value returned, as if there isn't I would like to record the fact in the table!
  16. I

    Unbound form

    I have a unbound form with a list box and text box's. I select a item from the list box and input data in the text box's then run some code to update a table using the selected items. I us a combo box on the form to filter down the items in the list box. The problem, when I run through the...
  17. I

    Data field

    I have a field which contains data like: DRAKES GRAPEFRUIT NAT JUIC How can I remove the DRAKES from the data so I am left with: GRAPEFRUIT NAT JUIC Thanks in advance.........
  18. I

    Data in String

    Hi I have a field which contains a data string like: SO - 119 - 3532 - £67.00 Amended New (oc:Mrs Sarah Haines) or SO - 125 - - £32.00 (oc:Mrs Lynn Carter) What I need to do is identify the £67.00/£32.00 part of the strings. Can anyone help.
  19. I

    Data Manipulation

    Thanks "raskew" this has been a great help!
  20. I

    List box value

    I have a list box on a form, I want to us the value in the list box, but to get this to work I have to select the value, there is only ever one value showing (I have used a list box as its rowsource is referenced to a query) , how can I make it that I don't have to do this!
Back
Top Bottom