Search results

  1. T

    Squeek squeek. Mouse Problem

    I have a Text Box that has simple code on the Mouse Move event. The code makes other items on the form visible, what i am trying to do is get the mouse to move to a certain point when the other items appear.
  2. T

    Please Help Me

    I have a form that has the time on it updated with simple code on the ontimer event. What i want is for some code to return a certain value depending on what the time is. So for example if the time is between 12:00 noon and 1pm id like to value to come back as "lunch".
  3. T

    Calander Control 10.0

    Im trying to use a Calander Control to return the value as a date. But i cant get it to work. I have tried a simple peice of code on the LostFocas property but this does not work unless you click onto another item and i dont want to have to do this. On the AfterUpdated property i cant get the...
  4. T

    Refreshing Forms

    I have already tried the repaint command. Thanx Any other surgestions.
  5. T

    Refreshing Forms

    I want a label on a full screen form to move to random possitions on the form on a timed basis. I have tried to do it on click to start off with and have got the label top and left values to change but the label moves to the top left corner of the screen and does not move even though the values...
  6. T

    Refresh

    This is the code i have got already but it doesnt work Private Sub Detail_Click() DoCmd.Maximize Dim MyValue Randomize ' Initialize random-number generator. MyValue = Int((6 * Rnd) + 1) ' Generate random value between 1 and 6. Text5 = MyValue STC_LABEL.top = MyValue STC_LABEL.Left =...
  7. T

    Refresh

    Hi I have a form that maximizes on opeon the form i have a graphic and a label. On click of the detail i want the label to move to another part of the screen. I have tried using the random command and get the label to change the top and the left value but on the first click the label goes to...
  8. T

    Form resizing.

    I have a form with a command button and a subform on it. When the form is opened the subform is not visible and due to the size of the subform i have an area of blank form. When the command button is clicked i want the form to resize, the subform to be visible. I can get the sub form to...
Back
Top Bottom