Search results

  1. A

    undo / redo and cursor

    Hello. I'm trying to implement the ability to undo / redo in memo text box. This is the code: Private Sub Form_Load() Me.Text0.SetFocus Me.Text0.SelStart = 0 ReDim arrText(0) arrText(0) = Me.Text0 Pointer = 0 End Sub Private Sub Text0_Change() If Undoing Then Exit Sub Pointer = Pointer...
  2. A

    Scrollbar

    Up - Up - :(
  3. A

    Scrollbar

    Thank you... But I also have written: "Scrollbar from MS Forms 2.0 or any another" . Do you know any other Scrollbars? From other firms? (free is better). It is possible to change colour with API, but API change colour for all 3D instead of a separate Scrollbar.
  4. A

    Scrollbar

    Hi, Chris! Thank you very much for the answer. The problem is following. There is a field (TextBox) in which the text is displayed. I would like to remove a standard Scrollbar and to use the Scrollbar from MS Forms 2.0 or any another. It is impossible to paint a standard Scrollbar, but I...
  5. A

    Scrollbar

    Hi! How to use the Scrollbar from MS Forms2.0 with Access TextBox? Thanks a lot...
  6. A

    How to create MDB-bank without Access ?

    For example: It is possible to Create MDB Database in DAO. With DAO it is possible to work outside of ACCESS... But I'd like not to use DAO.. What else can be used? Thank you very much!
  7. A

    How to create MDB-bank without Access ?

    Is it possible to create MDB-bank without Access ? Thank you very much! Aleksandra :)
  8. A

    Scrollbar

    Hello RV, Thank You very much for your answer... Yes, I do understand, that way to change all system colors is bad... But how about API Function InitializeFlatSB and FlatSB_SetScrollProp ? With this it is possible to change standard ScrollBar in one form... Aleksandra
  9. A

    Scrollbar

    :) Dear RV, I understand a little bit VBA code.... With API I have alreeady tried this: Option Explicit Private Declare Function SetSysColors Lib "user32" (ByVal nChanges _ As Long, lpSysColor As Long, lpColorValues As Long) As Long Private Declare Function GetSysColor Lib...
  10. A

    Scrollbar

    Thanks a lot for the answer! I saw this example earlier. It seems to me, it is too complicated and I would like to find more simple decision - for example with API... Aleksandra :confused:
  11. A

    Scrollbar

    Thank You very much for your answer... Yes, I mean to change a scrollbar colors... But if to use API function? I have found InitializeFlatSB and FlatSB_SetScrollProp functions, but I do not know how to use it... I work with Access only two months...:confused:
  12. A

    Scrollbar

    Hi! Is there any opportunity to paint a standard ScrollBar? Thanks a lot! Aleksandra :)
Back
Top Bottom