Search:

Type: Posts; User: gungadout; Keyword(s):

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. Replies
    19
    Views
    12,627

    Grid Cell Display Problem

    Hi Eros,

    The 4GL is proprietary to the company I work for.

    It was specifically designed for use with multi-dimensional, "real world" data bases (as opposed to the single-dimensional, Codd-style...
  2. Replies
    19
    Views
    12,627

    Grid Cell Display Problem

    Hi Eros,

    Update:

    The company I work for was looking for ways to convert a system written in a character-based 4GL, into a Windows-style environment.

    I was hoping to help put thinBasic on the...
  3. Replies
    19
    Views
    12,627

    Hi Eros, Sorry for the delay in replying. I...

    Hi Eros,

    Sorry for the delay in replying.

    I wanted to check a few other things that might have been related to the major problem, to eliminate them from the equation if possible. (One was the...
  4. Replies
    19
    Views
    12,627

    Hi Eros, Once again, thanks for your continued...

    Hi Eros,

    Once again, thanks for your continued help.

    The following combination successfully displays the value in cell 1,1, but leaves focus on cell 1,2 until the thinBasic window loses focus...
  5. Replies
    19
    Views
    12,627

    Hi Eros, Aha! If the thinBasic window loses...

    Hi Eros,

    Aha!

    If the thinBasic window loses focus and then regains it, cell 1,1 shows the value it should, and cell 1,2 has the focus.

    I found that out by accident, because I had to...
  6. Replies
    19
    Views
    12,627

    Hi Eros, Oops! I missed the link to...

    Hi Eros,

    Oops!

    I missed the link to MLGrid_SetSelected before.

    I have now tried:

    Function FixFirstGridElement()
  7. Replies
    19
    Views
    12,627

    Hi Eros, Thanks once again for your help....

    Hi Eros,

    Thanks once again for your help. (Both questions.)

    As you will see in the attachment, I execute the special logic after I have filled the grid.

    The grid is filled from a long string...
  8. Replies
    19
    Views
    12,627

    Hi Eros, Maybe my domestic blindness is taking...

    Hi Eros,

    Maybe my domestic blindness is taking over again, but I could find no obvious instruction for moving focus from one cell to another in a grid programmatically, in either the good example...
  9. Replies
    19
    Views
    12,627

    Hi Eros, Thanks for your help. I'll try...

    Hi Eros,

    Thanks for your help.

    I'll try what you have suggested and see how it goes.

    Regards,

    Peter H.
  10. Replies
    19
    Views
    12,627

    Grid Cell Display Problem

    Hi Folks,

    I have an interesting situation.

    The solution is probably very simple.

    Suggestions are welcome and requested.

    The attachment explains all. (A picture is worth ...)
  11. Replies
    2
    Views
    2,932

    Thanks Petr. That looks like the tip I was...

    Thanks Petr.

    That looks like the tip I was after.

    I'll give it a go.

    Regards,

    Peter H.
  12. Replies
    2
    Views
    2,691

    Hi Petr, That confirms my understanding of the...

    Hi Petr,

    That confirms my understanding of the documentation I saw.

    I missed the "yn" option. Thanks for pointing it out.

    Actually, I was hoping to make the rows shallower to match the text...
  13. Replies
    2
    Views
    2,932

    Another Grid Question

    Hi Folks,

    Looking at the grid example provided in the examples, and according to my own testing, setting the WindowBkColor sets the colour of the window to the right of the grid for an indefinite...
  14. Replies
    2
    Views
    2,691

    Two Grid Questions

    Hi Folks,

    Two questions please.

    1. Is it possible to control the height (depth) of the rows in grids?

    2. Is it possible to have multi-line labels in the column headings (as in spreadsheets)?...
  15. Replies
    4
    Views
    427

    Hi Petr, I have an update for the...

    Hi Petr,

    I have an update for the CustomParseSet function you put together for me.


    Function CustomParseSet(sMainString As String, sDelimiter As String, index As Long, sNew As String) As...
  16. Replies
    6
    Views
    3,361

    Thanks, Michael. That is a handy list. I have...

    Thanks, Michael.

    That is a handy list. I have saved it in a text document for easy reference.

    I have discovered what was causing the automatic GetReply etc. re-initialization problem. (But I...
  17. Replies
    6
    Views
    3,361

    Hi Folks, I've found I was using "If CBCTLMSG...

    Hi Folks,

    I've found I was using "If CBCTLMSG = %EN_SETFOCUS" instead of "If CBCTLMSG = %BN_SETFOCUS" when processing button responses.

    I'll see what difference that makes.

    Regards,

    Peter...
  18. Replies
    6
    Views
    3,361

    Hi Folks, I'm sure this must be reproducible,...

    Hi Folks,

    I'm sure this must be reproducible, under the right conditions.

    The setting is as shown before, in a Callback Function.


    Dim GetReply As Long
    Dim GetReplyB ...
  19. Replies
    6
    Views
    3,361

    An Interesting Situation

    Hi Folks,

    I have long held that dogs and computers look upon me with malevolence.



    Dim GetReply As Long ' a global definition
    .
    .
    .
  20. Replies
    2
    Views
    2,789

    Hi Eros, The window is created MODAL. It...

    Hi Eros,

    The window is created MODAL.

    It needs to be MODAL because the menu window that activates it must remain inactive until the invoked dialog window is destroyed.

    So I'll just have to...
  21. Replies
    2
    Views
    2,789

    Questions About Focus

    Hi Folks,

    I have two questions about focus.

    1. %EN_SETFOCUS not triggered.

    When I first display a window, as I would expect, unless I issue a Control Set Focus command, none of the text...
  22. Hi Mark, A semi tongue in cheek look at your...

    Hi Mark,

    A semi tongue in cheek look at your statement,

    Did you plan to include a positive correlation, or a negative one?:wink:

    http://www.compleatmother.com/homebirth/hb_safety.htm
    ...
  23. Re: Problems Using TAB Key And Focussing On Text Boxes

    Hi Petr,

    FYI.

    I have done a lot of experimenting.

    This is the only combination that works.


    Select Case ButtonText
  24. Re: Problems Using TAB Key And Focussing On Text Boxes

    Thanks for the tips, Petr.

    I may have to stop using the %EN_KILLFOCUS response, and keep a record of each control number as it receives focus (by detecting %EN_SETFOCUS). I will then know the...
  25. Re: Problems Using TAB Key And Focussing On Text Boxes

    Hi Petr,

    Thanks for your continued help.

    Sorry for the delay in replying. My attention had to be on other things for a while, and I wanted to do more testing.

    I am using version 1.8.0.0. I...
Results 1 to 25 of 99
Page 1 of 4 1 2 3 4