Search results

  1. L

    Store a Word table in Access

    Hi How do you go about storing a Microsoft Word table in access, so that when data from the field is copied and pasted out with VBA into a Word document, it forms table formatting again. Thanks
  2. L

    How is this achieved - stream

    Hi I have just seen a thread in another forum which is exactly the problem for which I am looking to solve. I don't understand some terms written there, can anyone help me? This is the sentence of most interest to me - "....I save the autotext as RTF (Rich Text Format), get the stream and put...
  3. L

    Select listbox on using scroll bar

    It is a shame though that when using the scroll, that it doesn't select at the same time.
  4. L

    Select listbox on using scroll bar

    Hi I have found that the user forgets to highlight/select the value they have chosen in the listbox after scrolling up and down to find a particular number, and then clicks to go to the next form (carrying no values from the list box). I was wanting to keep selected, the current value showing...
  5. L

    Select listbox on using scroll bar

    Hi There is probably a simple solution to this question but I have been going round in circles - with no solution yet. I have a scrolling listbox pre-populated with numbers 1 to 10 - it is single select. How do I highlight it (it is the one with the up and down arrows on the right)...
  6. L

    Timed label visibility

    Or if I could do something like this pseudo code, But I'm not sure how to write this properly, and anyway once the label was visible - would this code return it to invisible again? I'm not sure it would.... Any help would be appreciated. Thanks
  7. L

    Timed label visibility

    Hi I have this simple code Private Sub btnHead_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Me.help_text.Visible = True End Sub which causes a label to appear on a form as the mouse moves over an image. Because it is not a button in the true sense of the...
  8. L

    Trying to move through recordset

    There are 4 records in the table, but I can see the navigation bar at the bottom left of the form moving up to 5!! The text boxes aren't changing with the pressing of the button, but are remaining stuck on the first record. I have removed my vba code to try your method of navigation. Help????
  9. L

    Trying to move through recordset

    I have added an access navigational next record button (without any added VBA code), and the message I am getting is "You can't go to the specified record". In all I have 4 records in the table. The form opens up on the first record. Thanks
  10. L

    Trying to move through recordset

    Actually, it appears its jumping straight to the last record - without going through each record individually.
  11. L

    Trying to move through recordset

    I am a novice at using Access itself - but I have some basic programming experience. I happened to see that in the form recordsource is already assigned to staffDetails, I can't remember putting it there myself, but I'm starting today where I left off a few months back. Anyway - theres nothing...
  12. L

    Trying to move through recordset

    Hi It is bound to staffDetails at the moment. In Properties, Data, RecordSource. Thanks
  13. L

    Trying to move through recordset

    I am trying to move through a recordset - on opening the form my textboxes are already populated with the first record, by clicking this button I want to be able to go through to the last record where a messagebox will tell the user it is the last record - nothing is happening and no error...
  14. L

    problem displaying image in portable form

    Thank You, Thank You, Thank You.... I was so near and yet so far, Great
  15. L

    problem displaying image in portable form

    Hello I have one default image in a folder called "images" in the same folder as my database. The image is called default.jpg. I have a form with Picture Control in which I want this image to display when the form loads. This code, placed in the VBA environment in Sub form_onload isn't...
Back
Top Bottom